aboutsummaryrefslogtreecommitdiff
path: root/include/signal.h
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2016-05-30 13:51:27 +0000
committerEd Schouten <ed@FreeBSD.org>2016-05-30 13:51:27 +0000
commit0977bd1e889aae7c131863a72f37c71bfa0345d1 (patch)
tree1cdce214d42751df7acc477c7fd2485654996d05 /include/signal.h
parent07acf54b4bad4abba3192c032d28c863ca874bb2 (diff)
downloadsrc-0977bd1e889aae7c131863a72f37c71bfa0345d1.tar.gz
src-0977bd1e889aae7c131863a72f37c71bfa0345d1.zip
Fix the signature of the psignal() function.
POSIX 2008 added the psignal() function which has already been part of the BSDs for a long time. The only difference is, the POSIX version uses an 'int' for the signal number, unlike our version which uses an 'unsigned int'. Fix up the function to use an 'int'. This should not affect the ABI.
Notes
Notes: svn path=/head/; revision=300997
Diffstat (limited to 'include/signal.h')
-rw-r--r--include/signal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/signal.h b/include/signal.h
index 217faddea03d..9f33fb66d8c5 100644
--- a/include/signal.h
+++ b/include/signal.h
@@ -113,7 +113,7 @@ int siginterrupt(int, int);
#endif
#if __POSIX_VISIBLE >= 200809
-void psignal(unsigned int, const char *);
+void psignal(int, const char *);
#endif
#if __BSD_VISIBLE