summaryrefslogtreecommitdiff
path: root/missing
diff options
context:
space:
mode:
Diffstat (limited to 'missing')
-rw-r--r--missing/strdup.c4
-rw-r--r--missing/strftime.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/missing/strdup.c b/missing/strdup.c
index 2e1fe90bbd..875290c03f 100644
--- a/missing/strdup.c
+++ b/missing/strdup.c
@@ -2,8 +2,8 @@
strdup.c -
- $Author$
- $Date$
+ $Author: matz $
+ $Date: 1994/12/09 09:47:57 $
created at: Wed Dec 7 15:34:01 JST 1994
************************************************/
diff --git a/missing/strftime.c b/missing/strftime.c
index 313b9d00a1..1e668ef2ae 100644
--- a/missing/strftime.c
+++ b/missing/strftime.c
@@ -39,7 +39,11 @@
#include <stdio.h>
#include <ctype.h>
-#include <string.h>
+#if defined (HAVE_STRING_H)
+# include <string.h>
+#else /* !HAVE_STRING_H */
+# include <strings.h>
+#endif /* !HAVE_STRING_H */
#include <time.h>
#include <sys/types.h>
#include <sys/time.h>