1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-26 20:02:37 +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

@@ -18,6 +18,9 @@ static char *id = "$Id: initkbd.c,v 1.2 1999/01/03 02:07:09 sybalsky Exp $ Copyr
#include <stdio.h>
#include <sys/types.h>
#if defined(MACOSX) || defined(FREEBSD)
#include <string.h>
#endif
#ifndef DOS
#include <sys/file.h>
#endif /* DOS */