#include <stdio.h>
#include <signal.h>

void CleanUp();

main() {

  /* Ignore Control-C: SIGINT (signal 1), INT */
  if (signal(SIGINT, SIG_IGN) == SIG_ERR) {
    perror("blocking SIGINT");
    exit(1);
  }

  while(1) {   }

}

