1
0
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:
Nick Briggs 2020-07-15 15:30:31 -07:00
parent 3d828625df
commit 3bf5c3b720

View File

@ -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"