// cc -o imp9-check imp9-check.c -g -O0 -Wno-discarded-qualifiers -I ~/src/compilers101/new-parser/imps ~/src/compilers101/new-parser/imps/perms.c imp9chk.c -lm
#include <perms.h>
extern int Check(char *Param);
int _imp_mainep(int _imp_argc, char **_imp_argv) {
  if (_imp_argc != 2) {
    fprintf(stderr, "syntax: check file.imp\n");
    exit(1);
  }
  exit(Check(_imp_argv[1]));
  return (1);
}
