aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/windows_entry_points/wmain.c
blob: 41ec522c57dbf850cb65018a1c0d71ee3fefbe64 (plain)
1
2
3
4
5
6
7
#include <stdio.h>
#include <windows.h>

int wmain(int argc, wchar_t *argv[ ], wchar_t *envp[ ]) {
    printf("hello from wmain\n");
    return 0;
}