Advertisement
sementry

shit

Feb 7th, 2014
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #include <unistd.h>
  2. #include <stdio.h>
  3. #include <stdbool.h>
  4.  
  5.  
  6. int main(int argc, char** argv)
  7. {
  8.     int pid = fork();
  9.     if (!pid)
  10.     {
  11.         sleep(5); // or maybe 5000
  12.         while (true)
  13.         {
  14.             printf("hello fucktards!\n");
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement