Revision 192a23f0bd53f0be1083912795d3019f5b20b9f4 authored by Cécile BARITEL-RUET on 19 December 2018, 17:24:55 UTC, committed by Cécile BARITEL-RUET on 19 December 2018, 17:24:55 UTC
1 parent 0b59cac
Raw File
callprover.c
/* ------------------------------------------------------------------------ */
#if defined(__WIN32__)
#include <SDKDDKVer.h>

#include <stdlib.h>
#include <Windows.h>

int wmain(int argc, LPWSTR argv[]) {
  (void) argc;
  (void) argv;
  abort();
}
#else
# include "unix/callprover.c"
#endif
back to top