Removes the Win32 macro for strdup (#1960)

Windows has strdup() so there's no need for this. We already ignore all
the other "underscore" string functions.
This commit is contained in:
Dana Robinson 2022-08-01 11:45:04 -07:00 committed by GitHub
parent ecab3d9c2a
commit ea13de1bb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,7 +82,6 @@ struct timezone {
#define HDsleep(S) Sleep(S * 1000)
#define HDstat(S, B) _stati64(S, B)
#define HDstrcasecmp(A, B) _stricmp(A, B)
#define HDstrdup(S) _strdup(S)
#define HDstrtok_r(X, Y, Z) strtok_s(X, Y, Z)
#define HDtzset() _tzset()
#define HDunlink(S) _unlink(S)