public
Description: Set of makefiles to build cross and native toolchains for windows x64 on linux/darwin
Homepage:
Clone URL: git://github.com/cournape/cross-mingw-w64.git
cross-mingw-w64 / hello.c
100644 8 lines (6 sloc) 0.109 kb
1
2
3
4
5
6
7
8
#include <stdio.h>
 
int main()
{
printf("Hello from C: size of void* is %d\n", sizeof(void*));
return 0;
}