blob: f041b522f027d842f6922dc231dc2e11c5701d31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
$NetBSD: patch-bj,v 1.1 2006/07/21 16:43:57 minskim Exp $
--- h/strings.h.orig 2001-04-02 10:35:24.000000000 +0000
+++ h/strings.h
@@ -35,7 +35,7 @@
char *index ();
char *mktemp ();
char *rindex ();
-#ifndef SPRINTFTYPE
+#if !defined(SPRINTFTYPE) && !defined(linux)
#ifndef ncr /* NCR compiler complains about re-declaration */
char *sprintf (); /* I guess this is the new standard */
#endif
@@ -47,7 +47,7 @@ SPRINTFTYPE sprintf ();
char *strcat ();
int strcmp ();
char *strcpy ();
-#ifndef hpux
+#if !defined(hpux) && !defined(linux)
int strlen ();
#endif
char *strncat ();
@@ -55,7 +55,7 @@ int strncmp ();
char *strncpy ();
#endif
-#if !defined(SVR4) && !defined(__386BSD__) && !defined(BSD44)
+#if !defined(SVR4) && !defined(__386BSD__) && !defined(BSD44) && !defined(linux)
char *getenv ();
char *calloc (), *malloc (), *realloc ();
#endif /* SVR4 */
|