update for HEAD-2003091401
[reactos.git] / lib / ntdll / rtl / error.c
index 475a10f..808c647 100644 (file)
@@ -7,7 +7,6 @@
  * PROGRAMER:         Eric Kohl
  * REVISION HISTORY:
  *                    22/07/99: Added RtlNtStatusToDosError.
- *     1999-11-30: Added RtlNtStatusToPsxErrno.
  *     1999-12-18: STDCALL RtlNtStatusToDosError
  */
 
@@ -824,6 +823,9 @@ RPC_NT_SS_CONTEXT_MISMATCH           ERROR_INVALID_HANDLE
 
 /* FUNCTIONS ***************************************************************/
 
+/*
+ * @implemented
+ */
 VOID
 STDCALL
 RtlAssert(PVOID FailedAssertion,
@@ -914,6 +916,8 @@ RtlNtStatusToDosErrorNoTeb(NTSTATUS Status)
  *
  * REMARK
  *     RtlNtStatusToDosErrorNoTeb() does the real work.
+ *
+ * @implemented
  */
 DWORD STDCALL
 RtlNtStatusToDosError(NTSTATUS Status)
@@ -926,38 +930,4 @@ RtlNtStatusToDosError(NTSTATUS Status)
     }
   return RtlNtStatusToDosErrorNoTeb(Status);
 }
-
-
-/**********************************************************************
- * NAME                                                        EXPORTED
- *     RtlNtStatusToPsxErrno
- *
- * DESCRIPTION
- *     Convert an Executive status ID into a POSIX error number
- *     (errno.h).
- *     
- * NOTE
- *     Not present in the legacy WNT (a ReactOS extension to support
- *     the POSIX+ subsystem).
- *     
- * ARGUMENTS
- *     Status  The Executive status ID to convert.
- *
- * RETURN VALUE
- *     errno as in errno.h
- *     
- * REVISIONS
- *     1999-11-30 ea
- */
-INT STDCALL
-RtlNtStatusToPsxErrno(IN NTSTATUS Status)
-{
-#if 0
-  switch (Status)
-    {
-    }
-#endif
-  return -1; /* generic POSIX error */
-}
-
 /* EOF */