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:
@@ -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 */
|
||||
|
||||
/************************************************************************/
|
||||
/* */
|
||||
|
||||
Reference in New Issue
Block a user