* signal/signal.h: Move __sigaction from here to...
* include/signal.h: ...here.
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.
/* 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,
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;