diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-04 19:30:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-04 19:30:39 +0000 |
commit | be1152cab24270b23c4ce6496d164145584c6c11 (patch) | |
tree | bce98cee3266202cc4d480554520249fe0786646 /dlfcn/modstatic.c | |
parent | 033a2c132f8634bc49e4073cfb82627964c7fdc7 (diff) | |
download | glibc-be1152cab24270b23c4ce6496d164145584c6c11.tar glibc-be1152cab24270b23c4ce6496d164145584c6c11.tar.gz glibc-be1152cab24270b23c4ce6496d164145584c6c11.tar.bz2 glibc-be1152cab24270b23c4ce6496d164145584c6c11.zip |
Update.
2001-08-04 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* dlfcn/Makefile: Add rules for new testcase tststatic.
* dlfcn/tststatic.c: New file.
* dlfcn/modstatic.c: New file.
Diffstat (limited to 'dlfcn/modstatic.c')
-rw-r--r-- | dlfcn/modstatic.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dlfcn/modstatic.c b/dlfcn/modstatic.c new file mode 100644 index 0000000000..e00a0becee --- /dev/null +++ b/dlfcn/modstatic.c @@ -0,0 +1,5 @@ +int +test (int a) +{ + return a + a; +} |