mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-10 20:43:12 -04:00
10 lines
116 B
C
10 lines
116 B
C
#include <stdio.h>
|
|
|
|
extern void hello();
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
hello();
|
|
return 0;
|
|
};
|