1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-28 20:41:30 +00:00

Fix implicit declarations of library functions due to missing include string.h.

modified:   ../src/gcarray.c
	modified:   ../src/initkbd.c
	modified:   ../src/uraid.c
	modified:   ../src/uutils.c
This commit is contained in:
Nick Briggs
2017-06-30 12:33:41 -07:00
parent 2f0aa254aa
commit 06cc0316a0
4 changed files with 12 additions and 2 deletions

View File

@@ -34,12 +34,15 @@ static char *id = "$Id: uutils.c,v 1.3 1999/05/31 23:35:47 sybalsky Exp $ Copyri
#include <sys/time.h>
#endif
#ifndef SYSVONLY
#if defined(DOS) || defined(MACOSX) || defined(FREEBSD)
#if defined(DOS)
#include <string.h>
#else
#include <strings.h>
#endif /* DOS */
#endif /* SYSVONLY */
#if defined(MACOSX) || defined(FREEBSD) /* we compile these with SYSVONLY but... */
#include <string.h>
#endif
#include <stdio.h>
#include "lispemul.h"