mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-25 22:14:28 +00:00
10 lines
154 B
C
10 lines
154 B
C
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char *argv[], char *envp[])
|
|
{
|
|
printf("mingw: Hello, World!\n");
|
|
fflush(stdout);
|
|
return 0;
|
|
}
|