mirror of
https://github.com/serge1/COFFI
synced 2026-06-08 17:24:32 +00:00
9 lines
248 B
C
9 lines
248 B
C
/*
|
|
* This source code produduces the object file that was used to implement the "write_obj" example.
|
|
*
|
|
* It is compiled with mingw32:
|
|
* gcc -c -s -fno-asynchronous-unwind-tables answer.c -o answer_example.o
|
|
*/
|
|
|
|
int answer() { return 42; }
|