From 721a17bc3fc9938a82a7b89e1cc21bc5e756a35c Mon Sep 17 00:00:00 2001 From: Ron Yorston Date: Mon, 31 Oct 2022 13:28:00 +0000 Subject: win32: remove declaration of vfork(2) Since vfork(2) is never used in busybox-w32 there's no need to declare it. Doing so provokes clang to issue a warning. (GitHub issue #239) --- include/mingw.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/mingw.h b/include/mingw.h index 0357e4521..d274b7e1c 100644 --- a/include/mingw.h +++ b/include/mingw.h @@ -485,7 +485,6 @@ long sysconf(int name); IMPL(getpagesize,int,4096,void); NOIMPL(ttyname_r,int fd UNUSED_PARAM, char *buf UNUSED_PARAM, int sz UNUSED_PARAM); int mingw_unlink(const char *pathname); -pid_t vfork(void); int mingw_access(const char *name, int mode); int mingw_rmdir(const char *name); void mingw_sync(void); -- cgit v1.2.3-55-g6feb