diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2001-02-09 00:13:54 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2001-02-09 00:13:54 +0000 |
commit | 8915d10a26e51b54ae5a908d0697ace2ab64ef53 (patch) | |
tree | 2206381690f64111bbf9565f5a3ec64ed6d0024b /newlib/libc/include/sys/signal.h | |
parent | 889109ab1f067163550437c266efb53710c74ab9 (diff) | |
download | cygnal-8915d10a26e51b54ae5a908d0697ace2ab64ef53.tar.gz cygnal-8915d10a26e51b54ae5a908d0697ace2ab64ef53.tar.bz2 cygnal-8915d10a26e51b54ae5a908d0697ace2ab64ef53.zip |
2001-02-08 Edward M. Lee <tailbert@yahoo.com>
* libc/include/grp.h: add prototype for initgroups.
* libc/include/stdio.h: fix prototype for putw.
* libc/include/sys/signal.h: add prototype for killpg.
* libc/include/sys/stat.h: enable mknod/lstat for CYGWIN.
* libc/include/sys/unistd.h: add prototypes for getpgid, setpgrp,
vhangup and remove duplicate sysconf prototype.
Diffstat (limited to 'newlib/libc/include/sys/signal.h')
-rw-r--r-- | newlib/libc/include/sys/signal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/libc/include/sys/signal.h b/newlib/libc/include/sys/signal.h index 496fc58a9..e590ae38c 100644 --- a/newlib/libc/include/sys/signal.h +++ b/newlib/libc/include/sys/signal.h @@ -147,6 +147,7 @@ int _EXFUN(pthread_sigmask, (int how, const sigset_t *set, sigset_t *oset)); changes, then we will need to do something else, perhaps along the lines of <machine/types.h>. */ int _EXFUN(kill, (int, int)); +int _EXFUN(killpg, (pid_t, int)); int _EXFUN(sigaction, (int, const struct sigaction *, struct sigaction *)); int _EXFUN(sigaddset, (sigset_t *, const int)); int _EXFUN(sigdelset, (sigset_t *, const int)); |