1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-15 07:54:13 +00:00

Solaris (OS5) requires <string.h>

modified:   src/dir.c
This commit is contained in:
Nick Briggs 2020-07-09 10:25:15 -07:00
parent 28f0087dfc
commit b8c041f5ff

View File

@ -34,7 +34,7 @@ static char *id = "$Id: dir.c,v 1.4 2001/12/26 22:17:01 sybalsky Exp $ Copyright
/* #include <string.h> */
#endif /* SYSVONLY */
#if defined(LINUX) || defined(MACOSX) || defined(FREEBSD)
#if defined(LINUX) || defined(MACOSX) || defined(FREEBSD) || defined(OS5)
#include <string.h>
#endif /* LINUX */