mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-16 04:05:53 +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;
|
|
}
|