Merge branch 'experimental'
[opensid.git] / src / main.h
blobf4d9d3018483caaa25f82b8c6135a777e1a3afe8
1 #ifndef _MAIN_H_
2 #define _MAIN_H_
4 // main() does not return anything and it doesn't
5 // need any prologue/epilogue sequences generated
6 // by the compiler.
7 // -----------------------------------------------
8 // Additionally, we've added -ffreestanding to the
9 // compiler flags.
11 void main(void) __attribute__((noreturn, naked));
13 #endif // _MAIN_H_