[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / lib / sdk / crt / stdio / find.c
diff --git a/reactos/lib/sdk/crt/stdio/find.c b/reactos/lib/sdk/crt/stdio/find.c
deleted file mode 100644 (file)
index d56a34b..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <precomp.h>
-#include <tchar.h>
-#include <io.h>
-
-// Generate _findfirst and _findnext
-#include "findgen.c"
-
-/*
- * @implemented
- */
-int _findclose(intptr_t handle)
-{
-  if (!FindClose((HANDLE)handle)) {
-    _dosmaperr(GetLastError());
-    return -1;
-  }
-
-  return 0;
-}