mirror of
https://github.com/vivier/EMILE.git
synced 2025-01-03 12:31:57 +00:00
12 lines
138 B
C
12 lines
138 B
C
|
#define __NO_INLINE__
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int start(int origin)
|
||
|
{
|
||
|
printf("Welcome !\n");
|
||
|
printf("Origin: %x\n", origin);
|
||
|
|
||
|
return 0;
|
||
|
}
|