diff options
Diffstat (limited to 'elf/tst-order-main.c')
-rw-r--r-- | elf/tst-order-main.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/elf/tst-order-main.c b/elf/tst-order-main.c new file mode 100644 index 0000000000..80f4f6be18 --- /dev/null +++ b/elf/tst-order-main.c @@ -0,0 +1,10 @@ +#include <stdio.h> +#include <unistd.h> +#include <stdlib.h> + +int +main( int argc, char *argv[] ) +{ + printf( "main\n" ); + exit(EXIT_SUCCESS); +} |