POSIX+ says goodbye and leaves. It used to be fun, now it's just painful
[reactos.git] / posix / lib / psxdll / dlfcn / dlerror.c
diff --git a/posix/lib/psxdll/dlfcn/dlerror.c b/posix/lib/psxdll/dlfcn/dlerror.c
deleted file mode 100644 (file)
index 2106c88..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/* $Id: dlerror.c,v 1.2 2002/02/20 09:17:56 hyperion Exp $
- */
-/*
- * COPYRIGHT:   See COPYING in the top level directory
- * PROJECT:     ReactOS POSIX+ Subsystem
- * FILE:        subsys/psx/lib/psxdll/dlfcn/dlerror.c
- * PURPOSE:     Gain access to an executable object file
- * PROGRAMMER:  KJK::Hyperion <noog@libero.it>
- * UPDATE HISTORY:
- *              19/12/2001: Created
- */
-
-#include <ddk/ntddk.h>
-#include <ntdll/rtl.h>
-#include <ntdll/ldr.h>
-#include <dlfcn.h>
-#include <string.h>
-#include <psx/debug.h>
-#include <psx/dlfcn.h>
-#include <psx/errno.h>
-
-static int __dl_last_error = 0;
-
-void __dl_set_last_error(int err)
-{
- FIXME("dlfcn error handling not thread safe");
- __dl_last_error = err;
-}
-
-char *dlerror(void)
-{
-  return strerror(__dl_last_error);
-}
-
-/* EOF */
-