Fix building on -current: Use string.h even if strings.h exists.

This commit is contained in:
Stefan Eßer 2002-06-04 22:02:05 +00:00
parent 2ebf144a06
commit aca9508f69
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=60623

13
devel/mkmf/files/patch-ac Normal file
View File

@ -0,0 +1,13 @@
--- src/stringx.h~ Tue Jun 4 12:58:03 2002
+++ src/stringx.h Tue Jun 4 12:58:33 2002
@@ -47,9 +47,8 @@
#ifdef _HasIncludeStrings
# include <strings.h>
-#else
-# include <string.h>
#endif
+# include <string.h>
#ifndef _HasStrDcl
int strcmp();