Advertisement
Guest User

Untitled

a guest
Oct 18th, 2011
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. int main(int argc, char* argv[]) {
  2. if (argc > 1) {
  3. // Somebody messed up the configuration => fail
  4. return 1;
  5. } else {
  6. while(1) {
  7. // This daemon consumes CPU cycles for nothing
  8. }
  9. return 0;
  10. }
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement