/*
 *
 * Compile via "cc -o yourniftytool yourniftytool.c"
 * and install as ./yourniftytool.
 * chown root:wheel ./yourniftytool 
 * chmod 4755 ./yourniftytool
 * chown root:wheel ./yourniftytool.pl 
 * chmod 0755 ./yourniftytool.pl
 *
 */
#define REAL_PATH "./yourniftytool.pl"
main(ac, av)
     char **av;
{
  execv(REAL_PATH, av);
}

