summaryrefslogtreecommitdiff
path: root/LibC/stdio.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-26 12:57:02 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-26 12:57:02 +0100
commitcccc8d8aeb0e204283c76ccb0e92fba2e2a0071c (patch)
tree18a99d2ee1e53b2dc993220d93a4a1993f5c5925 /LibC/stdio.cpp
parentf6b41d166d0e1b42c8b029ab69b2ae12071ea9f7 (diff)
downloadserenity-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.cpp17
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);
+}
+
}