Author: coke Date: Fri Mar 16 05:53:00 2007 New Revision: 17520 Added: trunk/config/gen/platform/win32/string.h Modified: trunk/ (props changed) trunk/MANIFEST
Log: RT # 41602 - add file that wasn't missed from ticket. Modified: trunk/MANIFEST ============================================================================== --- trunk/MANIFEST (original) +++ trunk/MANIFEST Fri Mar 16 05:53:00 2007 @@ -282,6 +282,7 @@ config/gen/platform/win32/signal.h [] config/gen/platform/win32/stat.c [] config/gen/platform/win32/stat.h [] +config/gen/platform/win32/string.h [] config/gen/platform/win32/threads.h [] config/gen/platform/win32/time.c [] config/gen/revision.pm [] Added: trunk/config/gen/platform/win32/string.h ============================================================================== --- (empty file) +++ trunk/config/gen/platform/win32/string.h Fri Mar 16 05:53:00 2007 @@ -0,0 +1,19 @@ +#ifndef PLATFORM_WIN32_STRING_H +#define PLATFORM_WIN32_STRING_H + +#include <string.h> + +#ifdef _MSC_VER +# if _MSC_VER >= 1400 +# define strdup _strdup +# endif +#endif + +#endif + +/* + * Local variables: + * c-file-style: "parrot" + * End: + * vim: expandtab shiftwidth=4: + */
