Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
gen
/
c
/
testdata
/
postinclude_header.h
11
lines
·
10
sloc
·
257 bytes
·
694cac944385af13ea01a079434c3f1df992b8ce
Raw
1
#include <assert.h>
2
3
#
if
defined(_WIN32)
4
int
WINAPI wWinMain(HINSTANCE instance, HINSTANCE prev_instance, LPWSTR cmd_line,
int
show_cmd){
5
#
else
6
int
main(
int
argc,
char
*argv[]) {
7
#endif
8
int
res = no_main__f(42);
9
assert(res == 987);
10
return
0;
11
}
12