fcntl.c 184 B

1234567891011
  1. #include <fcntl.h>
  2. int fcntl(int fd, int cmd, ...) {
  3. switch (cmd) {
  4. case F_GETFD:
  5. return 0;
  6. case F_SETFD:
  7. return 0;
  8. }
  9. return -1;
  10. }