* signal/signal.h: Move __sigaction from here to...
	* include/signal.h: ...here.
This commit is contained in:
Andreas Jaeger 2001-02-05 19:55:22 +00:00
parent 414a6b0d9c
commit d9bfd1a510
3 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2001-02-05 Andreas Jaeger <aj@suse.de>
* signal/signal.h: Move __sigaction from here to...
* include/signal.h: ...here.
* io/fcntl.h: Move __fcntl and __open to...
* include/fcntl.h: ...here.

View file

@ -7,6 +7,8 @@
/* Now define the internal interfaces. */
extern __sighandler_t __bsd_signal (int __sig, __sighandler_t __handler);
extern int __kill (__pid_t __pid, int __sig);
extern int __sigaction (int __sig, __const struct sigaction *__restrict __act,
struct sigaction *__restrict __oact);
extern int __sigblock (int __mask);
extern int __sigsetmask (int __mask);
extern int __sigprocmask (int __how,

View file

@ -240,8 +240,6 @@ extern int sigprocmask (int __how, __const sigset_t *__restrict __set,
extern int sigsuspend (__const sigset_t *__set) __THROW;
/* Get and/or set the action for signal SIG. */
extern int __sigaction (int __sig, __const struct sigaction *__restrict __act,
struct sigaction *__restrict __oact) __THROW;
extern int sigaction (int __sig, __const struct sigaction *__restrict __act,
struct sigaction *__restrict __oact) __THROW;