#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>

int
main( int argc, char *argv[] )
{
  printf( "main\n" );
  exit(EXIT_SUCCESS);
}