X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibposix.so_src%2Finclude_exp%2Ffcntl.h;h=ded9ba1e4c84fd8b6d0213033af738b39b97030c;hb=bdefac5f54668fcccff11a69619ff31b25595eeb;hp=5fee9a11e0168ac7cc0ec3f45a79a72e9f349b5a;hpb=4bd23d4ae51bd5cb92b449bcd66e0d2de88c7fc9;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libposix.so_src/include_exp/fcntl.h b/Usermode/Libraries/libposix.so_src/include_exp/fcntl.h index 5fee9a11..ded9ba1e 100644 --- a/Usermode/Libraries/libposix.so_src/include_exp/fcntl.h +++ b/Usermode/Libraries/libposix.so_src/include_exp/fcntl.h @@ -22,5 +22,12 @@ // Acess doesn't implement lseek #define lseek(_1,_2,_3) (seek(_1,_2,_3),tell(_1)) +enum e_fcntl_cmds +{ + F_SETFL +}; + +int fcntl(int fd, int cmd, ...) { return -1; } + #endif