Revision 92effbe8a561ab3c0deed8c1e189c9c52af7c468 authored by Ruette on 18 September 2018, 16:03:04 UTC, committed by Pierre-Yves Strub on 18 September 2018, 16:03:04 UTC
1 parent 5cbf6f1
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