mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-16 00:04:59 +00:00
vfork() is deprecated, use fork() instead.
modified: src/uraid.c
This commit is contained in:
parent
3d828625df
commit
3bf5c3b720
@ -69,9 +69,11 @@ extern int Win_security_p;
|
||||
#ifdef OS5
|
||||
#include <stropts.h>
|
||||
#endif /* OS5 */
|
||||
#if defined(FREEBSD) || defined(MACOSX)
|
||||
#if defined(FREEBSD) || defined(MACOSX) || defined(OS5)
|
||||
/* for memset */
|
||||
#include <string.h>
|
||||
/* vfork is deprecated */
|
||||
#define vfork fork
|
||||
#endif
|
||||
|
||||
#include "lispemul.h"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user