diff options
| author | bjh21 <bjh21@NetBSD.org> | 2003-07-17 22:39:43 +0000 |
|---|---|---|
| committer | bjh21 <bjh21@NetBSD.org> | 2003-07-17 22:39:43 +0000 |
| commit | e3167f6ca19db358d5871acbc2f9c34f2e6bd810 (patch) | |
| tree | 9a2d5a2e86c8b96d86007b6a64fef3290cc97a16 /include | |
| parent | d5ef0c1f397788ccfec618e0eb4f61c288dcd4c0 (diff) | |
Change !_ANSI_SOURCE to _POSIX_C_SOURCE || _XOPEN_SOURCE || _NETBSD_SOURCE.
Diffstat (limited to 'include')
| -rw-r--r-- | include/signal.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/signal.h b/include/signal.h index e391fddefb8..8511bffd8c5 100644 --- a/include/signal.h +++ b/include/signal.h @@ -1,4 +1,4 @@ -/* $NetBSD: signal.h,v 1.27 2003/07/17 09:01:54 martin Exp $ */ +/* $NetBSD: signal.h,v 1.28 2003/07/17 22:39:43 bjh21 Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -60,7 +60,8 @@ extern __const int sys_nsig __RENAME(__sys_nsig14); __BEGIN_DECLS int raise __P((int)); -#ifndef _ANSI_SOURCE +#if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \ + defined(_NETBSD_SOURCE) int kill __P((pid_t, int)); struct pthread_st; @@ -198,7 +199,7 @@ int sigsetmask __P((int)); int sigvec __P((int, struct sigvec *, struct sigvec *)); #endif /* _NETBSD_SOURCE */ -#endif /* !_ANSI_SOURCE */ +#endif /* _POSIX_C_SOURCE || _XOPEN_SOURCE || _NETBSD_SOURCE */ __END_DECLS #endif /* !_SIGNAL_H_ */ |
