diff options
Diffstat (limited to 'tests/tests2/85-asm-outside-function.c')
| -rw-r--r-- | tests/tests2/85-asm-outside-function.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/tests2/85-asm-outside-function.c b/tests/tests2/85-asm-outside-function.c index 0aa7e33..dc5639a 100644 --- a/tests/tests2/85-asm-outside-function.c +++ b/tests/tests2/85-asm-outside-function.c @@ -1,7 +1,9 @@ +extern int printf (const char *, ...); extern void vide(void); __asm__("vide: ret"); int main() { vide(); + printf ("okay\n"); return 0; } |
