diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-11 10:38:33 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-11 10:38:33 +0100 |
commit | f394e3486aa0f790aac485f4ab36649df74a0ccf (patch) | |
tree | 8c63a6e9073e12d9e71e2a09ed0d2bac8a7bd2f3 /LibC/fcntl.h | |
parent | e48182d91b352525d31105989be3b0e5f77f772a (diff) | |
download | serenity-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.h | 2 |
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 |