mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
2.5-18.1
This commit is contained in:
13
elf/unload3mod4.c
Normal file
13
elf/unload3mod4.c
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <stdio.h>
|
||||
|
||||
extern int foo (int x);
|
||||
|
||||
int
|
||||
bar (int x)
|
||||
{
|
||||
puts ("bar");
|
||||
fflush (stdout);
|
||||
x = foo (x - 4);
|
||||
puts ("bar after foo");
|
||||
return x;
|
||||
}
|
Reference in New Issue
Block a user