diff options
Diffstat (limited to 'com32/elflink/hello_def.c')
-rw-r--r-- | com32/elflink/hello_def.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/com32/elflink/hello_def.c b/com32/elflink/hello_def.c new file mode 100644 index 00000000..2ad60233 --- /dev/null +++ b/com32/elflink/hello_def.c @@ -0,0 +1,16 @@ + +int undef_symbol; + +void undef_func(int param) { + undef_symbol = 100; +} + +static int hello_init(void) { + // Do nothing + + return 0; +} + +static void hello_exit(void) { + // Do nothing +} |