1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-02 06:41:21 +00:00

More linux related fixups for string.h.

Fix some type warnings.

	modified:   ../src/dsk.c
	modified:   ../src/fvar.c
	modified:   ../src/ldsout.c
	modified:   ../src/main.c
	modified:   ../src/timer.c
This commit is contained in:
Nick Briggs
2018-03-27 10:39:23 -07:00
parent 8e99402729
commit 69796e34d7
5 changed files with 15 additions and 4 deletions

View File

@@ -59,11 +59,15 @@ extern int errno;
int Storage_expanded; /* T or NIL */
/* RISCOS, OSF1 and MACOSX don't have valloc, and malloc works OK there. */
#if defined(LINUX)
/* has valloc() */
#else
#if defined(SYSVONLY) || defined(OSF1) || defined(MACOSX)
#define valloc malloc
#else
char *valloc();
#endif /* SYSVONLY || OSF1 || MACOSX */
#endif /* not LINUX */
/************************************************************************/
/* */