View | Details | Raw Unified | Return to bug 25841 | Differences between
and this patch

Collapse All | Expand All

(-)files/patch-getopt.c (+16 lines)
Added Link Here
1
--- engine/getopt.c.orig	Sat Sep 23 20:22:09 2000
2
+++ engine/getopt.c	Fri Mar 16 01:42:49 2001
3
@@ -177,12 +177,12 @@
4
   REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
5
 } ordering, default_ordering = PERMUTE;
6
 
7
+#include <string.h>
8
 #ifdef	__GNU_LIBRARY__
9
 /* We want to avoid inclusion of string.h with non-GNU libraries
10
    because there are many ways it can cause trouble.
11
    On some systems, it contains special magic macros that don't work
12
    in GCC.  */
13
-#include <string.h>
14
 #define	my_index	strchr
15
 #define	my_bcopy(src, dst, n)	memcpy ((dst), (src), (n))
16
 #else

Return to bug 25841