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/stdlib.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/stdlib.h')
-rw-r--r-- | LibC/stdlib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/LibC/stdlib.h b/LibC/stdlib.h index 7af51814ae..028e9d4a91 100644 --- a/LibC/stdlib.h +++ b/LibC/stdlib.h @@ -26,5 +26,8 @@ int abs(int); int rand(); void srand(unsigned seed); +long int random(); +void srandom(unsigned seed); + __END_DECLS |