aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 388e2f9ef..34c7e417b 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -373,6 +373,9 @@ void sig_unblock(int sig) FAST_FUNC;
373int sigaction_set(int sig, const struct sigaction *act) FAST_FUNC; 373int sigaction_set(int sig, const struct sigaction *act) FAST_FUNC;
374/* SIG_BLOCK/SIG_UNBLOCK all signals: */ 374/* SIG_BLOCK/SIG_UNBLOCK all signals: */
375int sigprocmask_allsigs(int how) FAST_FUNC; 375int sigprocmask_allsigs(int how) FAST_FUNC;
376/* Standard handler which just records signo */
377extern smallint bb_got_signal;
378void record_signo(int signo); /* not FAST_FUNC! */
376 379
377 380
378void xsetgid(gid_t gid) FAST_FUNC; 381void xsetgid(gid_t gid) FAST_FUNC;