blob: a987e6a9a363eb54bc6de9975076fa761d78ef49 (
plain) (
blame)
1
2
3
4
5
6
|
// Compile with "cl /c /Zi /GR- test.cpp"
// Link with "link test.obj /debug /nodefaultlib /entry:main /out:test.exe"
int __cdecl _purecall(void) { return 0; }
int main(int argc, char **argv) { return 0; }
|