diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-30 02:00:15 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-30 02:00:15 +0000 |
commit | 668f51ff6aaafce27d2b68fbb9c26c913761887b (patch) | |
tree | 50762509119de1ed8d5ec641609d13f64e1a374f /libc/sysdeps/linux/e1 | |
parent | 1c91f4a8fe798908b55742e7d55b65db7ac055ee (diff) |
use errno.h not sys/errno.h as pointed out by sjhill
Diffstat (limited to 'libc/sysdeps/linux/e1')
-rw-r--r-- | libc/sysdeps/linux/e1/vfork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/e1/vfork.c b/libc/sysdeps/linux/e1/vfork.c index f7dfb10ba..ec9961d62 100644 --- a/libc/sysdeps/linux/e1/vfork.c +++ b/libc/sysdeps/linux/e1/vfork.c @@ -1,5 +1,5 @@ #include <sys/types.h> #include <sys/syscall.h> -#include <sys/errno.h> +#include <errno.h> _syscall0(pid_t, vfork); |