diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-01 16:03:21 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-01 16:03:21 +0100 |
commit | 76f53b40f4f80fc692f90d3397516ae96872d966 (patch) | |
tree | 8702b9c29a1f1f9469c607e497b5a79b8d40bf8b /LibC/signal.h | |
parent | feed67ede2c7f41328625f58d1b92b5d2fce0c5d (diff) | |
download | serenity-76f53b40f4f80fc692f90d3397516ae96872d966.zip |
LibC: Add some things needed to build GNU bc.
This patch adds vprintf(), sig_atomic_t, random() and strdup().
bc doesn't build yet, but it will.
Diffstat (limited to 'LibC/signal.h')
-rw-r--r-- | LibC/signal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/LibC/signal.h b/LibC/signal.h index cb3b7599af..f13cf62c27 100644 --- a/LibC/signal.h +++ b/LibC/signal.h @@ -10,6 +10,7 @@ typedef __sighandler_t sighandler_t; typedef uint32_t sigset_t; typedef void siginfo_t; +typedef uint32_t sig_atomic_t; struct sigaction { union { |