@@ -45,6 +45,7 @@ Module Name:
4545#include < stdlib.h>
4646#include < stdarg.h>
4747#include < string.h>
48+ #include < strings.h>
4849#include < errno.h>
4950#include < ctype.h>
5051#endif
@@ -6103,7 +6104,6 @@ CoCreateGuid(OUT GUID * pguid);
61036104#define vswprintf PAL_vswprintf
61046105#define fopen PAL_fopen
61056106#define strtok PAL_strtok
6106- #define strtoul PAL_strtoul
61076107#define fprintf PAL_fprintf
61086108#define fwprintf PAL_fwprintf
61096109#define vfprintf PAL_vfprintf
@@ -6137,7 +6137,6 @@ CoCreateGuid(OUT GUID * pguid);
61376137#define mkstemp PAL_mkstemp
61386138#define rename PAL_rename
61396139#define unlink PAL_unlink
6140- #define _strdup PAL__strdup
61416140#define _getcwd PAL__getcwd
61426141#define _open PAL__open
61436142#define _close PAL__close
@@ -6180,7 +6179,6 @@ PALIMPORT void * __cdecl memchr(const void *, int, size_t);
61806179PALIMPORT size_t __cdecl strlen (const char *);
61816180PALIMPORT int __cdecl strcmp (const char *, const char *);
61826181PALIMPORT int __cdecl strncmp (const char *, const char *, size_t );
6183- PALIMPORT int __cdecl _strnicmp (const char *, const char *, size_t );
61846182PALIMPORT char * __cdecl strcat (char *, const char *);
61856183PALIMPORT char * __cdecl strncat (char *, const char *, size_t );
61866184PALIMPORT char * __cdecl strcpy (char *, const char *);
@@ -6198,7 +6196,7 @@ PALIMPORT int __cdecl sscanf(const char *, const char *, ...);
61986196PALIMPORT int __cdecl atoi (const char *);
61996197PALIMPORT LONG __cdecl atol (const char *);
62006198// PALIMPORT long long int __cdecl atoll(const char *) __THROW;
6201- PALIMPORT ULONG __cdecl strtoul (const char *, char **, int );
6199+ PALIMPORT unsigned long __cdecl strtoul (const char *, char **, int );
62026200PALIMPORT double __cdecl atof (const char *);
62036201PALIMPORT double __cdecl strtod (const char *, char **);
62046202PALIMPORT int __cdecl isprint (int );
@@ -6218,7 +6216,7 @@ PALIMPORT errno_t __cdecl memcpy_s(void *, size_t, const void *, size_t);
62186216PALIMPORT errno_t __cdecl memmove_s (void *, size_t , const void *, size_t );
62196217PALIMPORT void * __cdecl memmove_xplat (void *, const void *, size_t );
62206218PALIMPORT char * __cdecl _strlwr (char *);
6221- PALIMPORT int __cdecl _stricmp (const char *, const char *);
6219+ PALIMPORT int __cdecl strcasecmp (const char *, const char *);
62226220PALIMPORT int __cdecl _snprintf (char *, size_t , const char *, ...);
62236221PALIMPORT char * __cdecl _gcvt_s (char *, int , double , int );
62246222PALIMPORT char * __cdecl _ecvt (double , int , int *, int *);
0 commit comments