[MSVCRT_WINETEST] Sync with Wine Staging 3.3. CORE-14434
[reactos.git] / modules / rostests / winetests / msvcrt / string.c
index 4fc34eb..b270366 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
-#include "precomp.h"
-
+#include "wine/test.h"
+#include <string.h>
 #include <mbstring.h>
 #include <wchar.h>
+#include <stdlib.h>
+#include <stdio.h>
 #include <mbctype.h>
+#include <locale.h>
+#include <errno.h>
+#include <limits.h>
 #include <math.h>
 
+/* make it use a definition from string.h */
+#undef strncpy
+#include "winbase.h"
+#include "winnls.h"
+
 static char *buf_to_string(const unsigned char *bin, int len, int nr)
 {
     static char buf[2][1024];