diff options
author | Paul Smith <psmith@gnu.org> | 2013-05-06 00:22:27 -0400 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2013-05-06 00:22:27 -0400 |
commit | 94735f0ad7f67c56afa1513381c73e8f62cd44fc (patch) | |
tree | fe07174cab4eba5d50ee5ad04684cfee6e454b08 /makeint.h | |
parent | 7c77486d1fbc820e6db97a5a11fabdc34dbdb729 (diff) | |
download | gunmake-94735f0ad7f67c56afa1513381c73e8f62cd44fc.tar.gz |
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().
Diffstat (limited to 'makeint.h')
-rw-r--r-- | makeint.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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 <vfork.h> -#endif - /* We omit these declarations on non-POSIX systems which define _POSIX_VERSION, because such systems often declare them in header files anyway. */ |