Revision b4866ca54f348bb979a4a300f1c974e854b6cf85 authored by Pierre-Yves Strub on 27 March 2017, 12:30:31 UTC, committed by Pierre-Yves Strub on 27 March 2017, 12:31:22 UTC
1 parent 1079832
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