https://github.com/EasyCrypt/easycrypt
Revision 2950852c5083b75a1efc6c99460b031c3185314a authored by Pierre-Yves Strub on 01 March 2017, 09:44:45 UTC, committed by Pierre-Yves Strub on 01 March 2017, 09:44:45 UTC
1 parent 8f58725
Raw File
Tip revision: 2950852c5083b75a1efc6c99460b031c3185314a authored by Pierre-Yves Strub on 01 March 2017, 09:44:45 UTC
[pprint]: in prhl, when program as sync'ed, only display one
Tip revision: 2950852
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