From 94735f0ad7f67c56afa1513381c73e8f62cd44fc Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Mon, 6 May 2013 00:22:27 -0400 Subject: Remove use of vfork(). GCC was giving us warnings, most OS's now just run fork() when you call vfork(), and looking at the standard definition of vfork() we are a long way from using it safely anyway: you're not allowed to even call a function before you exec(). --- makeint.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'makeint.h') diff --git a/makeint.h b/makeint.h index 9dd22ce..14a6c26 100644 --- a/makeint.h +++ b/makeint.h @@ -492,10 +492,6 @@ typedef int (*load_func_t)(const gmk_floc *flocp); int load_file (const gmk_floc *flocp, const char **filename, int noerror, void **dlp); -#ifdef HAVE_VFORK_H -# include -#endif - /* We omit these declarations on non-POSIX systems which define _POSIX_VERSION, because such systems often declare them in header files anyway. */ -- cgit v1.2.3