1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

Test cases for correct unloading.

This commit is contained in:
Ulrich Drepper
2005-03-18 10:54:53 +00:00
parent 61995d3ed9
commit 193af754dc
6 changed files with 140 additions and 0 deletions

8
elf/unload4mod2.c Normal file
View File

@@ -0,0 +1,8 @@
#include <stdio.h>
int
baz (int x)
{
puts ("in baz");
return x * 4;
}