]> Git repositories of Nishi - tewi.git/commitdiff
trying to add nextstep support
authorNishi <nishi@nishi.boats>
Mon, 14 Oct 2024 18:24:41 +0000 (18:24 +0000)
committerNishi <nishi@nishi.boats>
Mon, 14 Oct 2024 18:24:41 +0000 (18:24 +0000)
git-svn-id: file:///raid/svn-personal/tewi/trunk@341 8739d7e6-ffea-ec47-b151-bdff447c6205

Server/strptime.c
Server/strptime.h

index b809da9a29b3769cdfbc945fa8ba5e5a00b9c54e..6be355f3f968ac32541b1efc9c3f4f761466c1be 100644 (file)
@@ -35,7 +35,7 @@
 //#include <sys/cdefs.h>
 //__RCSID("$NetBSD: strptime.c,v 1.62 2017/08/24 01:01:09 ginsbach Exp $");
 
-#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
+#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__NeXT__)
 
 #include <stdlib.h>
 #include <ctype.h>
index e33979a34b50a8060cc99d2e503889c1bdd8ab40..d69f07ab1ad8e8aecd9d06916beee35b5fff38f9 100644 (file)
@@ -7,7 +7,7 @@ extern "C" {
 
 #include <time.h>
 
-#if defined(_WIN32) || defined(_PSP) || defined(__ps2sdk__) || defined(__OS2__) || defined(__NETWARE__)
+#if defined(_WIN32) || defined(_PSP) || defined(__ps2sdk__) || defined(__OS2__) || defined(__NETWARE__) || defined(__NeXT__)
 char* strptime(const char *buf, const char *fmt, struct tm *tm);
 #endif