diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-26 12:57:02 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-26 12:57:02 +0100 |
commit | cccc8d8aeb0e204283c76ccb0e92fba2e2a0071c (patch) | |
tree | 18a99d2ee1e53b2dc993220d93a4a1993f5c5925 /LibC/stdio.cpp | |
parent | f6b41d166d0e1b42c8b029ab69b2ae12071ea9f7 (diff) | |
download | serenity-cccc8d8aeb0e204283c76ccb0e92fba2e2a0071c.zip |
More compat work.
Move syscall to int 0x82 since using int 0x80 was kinda prone to fork bombs
when building things on Linux. :^)
Diffstat (limited to 'LibC/stdio.cpp')
-rw-r--r-- | LibC/stdio.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/LibC/stdio.cpp b/LibC/stdio.cpp index c45a84b078..baa5dbb53f 100644 --- a/LibC/stdio.cpp +++ b/LibC/stdio.cpp @@ -384,5 +384,22 @@ int rename(const char* oldpath, const char* newpath) ASSERT_NOT_REACHED(); } +char* tmpnam(char*) +{ + assert(false); +} + +FILE* popen(const char* command, const char* type) +{ + (void)command; + (void)type; + assert(false); +} + +int pclose(FILE*) +{ + assert(false); +} + } |