bouvier.c 658 B

1234567891011121314151617181920212223
  1. #include <stdio.h>
  2. #include <unistd.h>
  3. static int to_philix()
  4. {
  5. printf("Bravo, tu as gagne un tour de patio!\n");
  6. fflush(stdout);
  7. _exit(1);
  8. }
  9. int system() { to_philix(); return 42; }
  10. int execl() { to_philix(); return 42; }
  11. int execlp() { to_philix(); return 42; }
  12. int execv() { to_philix(); return 42; }
  13. int execve() { to_philix(); return 42; }
  14. int execvp() { to_philix(); return 42; }
  15. int connect() { to_philix(); return 42; }
  16. int vfork() { to_philix(); return 42; }
  17. int unlink() { to_philix(); return 42; }
  18. int pause() { to_philix(); return 42; }
  19. int alarm() { to_philix(); return 42; }
  20. int patio() { to_philix(); return 42; }