update for HEAD-2003091401
[reactos.git] / lib / crtdll / string / strerror.c
index 6187e5f..b4cc6a7 100644 (file)
@@ -60,6 +60,12 @@ int __sys_nerr = sizeof(_sys_errlist) / sizeof(_sys_errlist[0]);
 
 int*   _sys_nerr_dll = &__sys_nerr;
 
+/*
+ * @implemented
+ *
+ * this function is now forwarded to MSVCRT.strerror to reduce code duplication
+ */
+#if 0
 char *strerror(int errnum)
 {
   static char ebuf[40];                /* 64-bit number + slop */
@@ -90,8 +96,14 @@ char *strerror(int errnum)
 
   return ebuf;
 }
+#endif
 
-
+/*
+ * @implemented
+ *
+ * this function is now forwarded to MSVCRT._strerror to reduce code duplication
+ */
+#if 0
 char *_strerror(const char *s)
 {
        if ( s == NULL )
@@ -99,3 +111,4 @@ char *_strerror(const char *s)
 
        return strerror(atoi(s));
 }
+#endif