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)
4int WINAPI wWinMain(HINSTANCE instance, HINSTANCE prev_instance, LPWSTR cmd_line, int show_cmd){
5#else
6int main(int argc, char *argv[]) {
7#endif
8 int res = no_main__f(42);
9 assert(res == 987);
10 return 0;
11}
12