https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: 863066bded664a5e2aba7f89c4fb7bc2afd0e28d authored by Pierre-Yves Strub on 23 September 2015, 08:28:02 UTC
Ring axioms of the `ring`/`field` tactics agree with the ones of `Ring.ec`
Tip revision: 863066b
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