diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-28 09:36:21 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-28 09:36:21 +0100 |
commit | e904f193c1d49ccb18c75e6e1b1ef0a8e2dc1db7 (patch) | |
tree | f4af2e35301c888bbaa227f35180fa54c2a3325e /LibC/stdlib.h | |
parent | 88ad59bfb18feead399c5250b426fc3dc3512b95 (diff) | |
download | serenity-e904f193c1d49ccb18c75e6e1b1ef0a8e2dc1db7.zip |
Canonicalize the path used by sh.
With a bunch of LibC work to support the feature. LibC now initializes
AK::StringImpl by default. It's now fine to use AK in LibC/Userland! :^)
Diffstat (limited to 'LibC/stdlib.h')
-rw-r--r-- | LibC/stdlib.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/LibC/stdlib.h b/LibC/stdlib.h index 55cd47c9f7..4ebff011da 100644 --- a/LibC/stdlib.h +++ b/LibC/stdlib.h @@ -6,6 +6,11 @@ extern "C" { void* malloc(size_t); void free(void*); +void* calloc(size_t nmemb, size_t); +void* realloc(void *ptr, size_t); + +void exit(int status); +void abort(); } |