summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/psignal.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-22 22:32:39 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-22 22:32:39 +0000
commitf4719d5aaf62852e0ff60d22c5261da05925bacf (patch)
tree745b2bf2bb27a5620e12ea8399055f3d71dcb04a /cpukit/posix/src/psignal.c
parentThese files have been modified in the initial pass at getting the portion (diff)
downloadrtems-f4719d5aaf62852e0ff60d22c5261da05925bacf.tar.bz2
These files have been modified in the initial pass at getting the portion
of the POSIX API necessary to support the GNAT runtime to initially compile. We now have verified that the specifications for the necessary routines are correct per the POSIX standards we have.
Diffstat (limited to 'cpukit/posix/src/psignal.c')
-rw-r--r--cpukit/posix/src/psignal.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/posix/src/psignal.c b/cpukit/posix/src/psignal.c
index 9ad7406e21..b8bd3d56ea 100644
--- a/cpukit/posix/src/psignal.c
+++ b/cpukit/posix/src/psignal.c
@@ -5,6 +5,7 @@
#include <signal.h>
+#include <rtems/system.h>
#include <rtems/score/thread.h>
#ifdef NOT_IMPLEMENTED_YET
@@ -16,7 +17,7 @@
*/
int kill(
- int pid_t,
+ pid_t pid,
int sig
)
{