diff options
Diffstat (limited to 'libexec/ld.so/i386/syscall.h')
-rw-r--r-- | libexec/ld.so/i386/syscall.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libexec/ld.so/i386/syscall.h b/libexec/ld.so/i386/syscall.h index c9719118dd1..f853ad4cb6c 100644 --- a/libexec/ld.so/i386/syscall.h +++ b/libexec/ld.so/i386/syscall.h @@ -1,4 +1,4 @@ -/* $OpenBSD: syscall.h,v 1.1 2002/08/23 23:02:48 drahn Exp $ */ +/* $OpenBSD: syscall.h,v 1.2 2002/12/18 19:20:02 drahn Exp $ */ /* * Copyright (c) 2001 Niklas Hallqvist @@ -37,6 +37,7 @@ #include <sys/syscall.h> #include <sys/stat.h> +#include <sys/signal.h> #ifndef _dl_MAX_ERRNO #define _dl_MAX_ERRNO 4096 @@ -57,6 +58,7 @@ int _dl_write(int, const char*, int); int _dl_fstat(int, struct stat *); int _dl_fcntl(int, int, ...); int _dl_getdirentries(int, char*, int, long *); +int _dl_sigprocmask(int, const sigset_t *, sigset_t *); static inline off_t _dl_lseek(int fildes, off_t offset, int whence) |