summaryrefslogtreecommitdiff
path: root/LibC/fcntl.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-11-11 10:38:33 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-11-11 10:38:33 +0100
commitf394e3486aa0f790aac485f4ab36649df74a0ccf (patch)
tree8c63a6e9073e12d9e71e2a09ed0d2bac8a7bd2f3 /LibC/fcntl.h
parente48182d91b352525d31105989be3b0e5f77f772a (diff)
downloadserenity-f394e3486aa0f790aac485f4ab36649df74a0ccf.zip
Stub out a bunch more functions to get closer to that sweet bash build.
Diffstat (limited to 'LibC/fcntl.h')
-rw-r--r--LibC/fcntl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/LibC/fcntl.h b/LibC/fcntl.h
index cf679753cb..e0ee379b1d 100644
--- a/LibC/fcntl.h
+++ b/LibC/fcntl.h
@@ -10,4 +10,6 @@ __BEGIN_DECLS
#define F_GETFL 3
#define F_SETFL 4
+int fcntl(int fd, int cmd, ...);
+
__END_DECLS