mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-27 04:12:51 +00:00
Merge branch 'master' of ssh://192.168.42.74/Users/briggs/Projects/maiko
This commit is contained in:
12
src/ldsout.c
12
src/ldsout.c
@@ -58,16 +58,10 @@ extern int errno;
|
||||
is going to expand or not */
|
||||
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)
|
||||
/* RISCOS and OSF1 don't have valloc, and malloc works OK there. */
|
||||
#if defined(SYSVONLY) || defined(OSF1) || defined(RISCOS)
|
||||
#define valloc malloc
|
||||
#else
|
||||
char *valloc();
|
||||
#endif /* SYSVONLY || OSF1 || MACOSX */
|
||||
#endif /* not LINUX */
|
||||
#endif /* SYSVONLY || OSF1 || RISCOS */
|
||||
|
||||
/************************************************************************/
|
||||
/* */
|
||||
|
||||
Reference in New Issue
Block a user