Solaris 10 compatability, try two
authorJeremy Harris <jgh146exb@wizmail.org>
Sun, 11 Feb 2018 00:39:46 +0000 (00:39 +0000)
committerJeremy Harris <jgh146exb@wizmail.org>
Sun, 11 Feb 2018 00:39:46 +0000 (00:39 +0000)
src/OS/os.c-SunOS5
src/OS/os.h-SunOS5

index 69305e2cc72459296fabe22bffd924901b55f47f..8ad8c9380c360c4fccf9cff8355e9e0495da8763 100644 (file)
@@ -17,7 +17,7 @@ src/os.c file. */
 A feature-test would be good. */
 
 char *
-strndup(const char * s, size_t n)
+strndup(const char * s, unsigned long n)
 {
 char * dest;
 if (!(dest = malloc(n))) return NULL;
index f51b009eff093f0714ddac1ab0c5b03784beb02d..113adc05f57504b17eb3c114a8b7f40b1c976c4e 100644 (file)
@@ -48,6 +48,6 @@ a buffer */
 # define MAX(a,b) (((a)>(b))?(a):(b))
 #endif
 
-extern char * strndup(const char *, size_t);
+extern char * strndup(const char *, unsigned long);
 
 /* End */