diff options
author | Andreas Jaeger <aj@suse.de> | 2000-12-27 20:26:07 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-12-27 20:26:07 +0000 |
commit | de149cdbaf9327b5dbb85b1a473fce5c6ec7951f (patch) | |
tree | cc14a903a8e159a33e86e8f15b309abd7fc3e65b /setjmp/jmpbug.c | |
parent | 784d802ea2b7f156f59e86b77d4f17ea9effaaba (diff) | |
download | glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.zip glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.tar.gz glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.tar.bz2 |
Make local functions static.
Diffstat (limited to 'setjmp/jmpbug.c')
-rw-r--r-- | setjmp/jmpbug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setjmp/jmpbug.c b/setjmp/jmpbug.c index 0dbf7f9..125977b 100644 --- a/setjmp/jmpbug.c +++ b/setjmp/jmpbug.c @@ -4,13 +4,13 @@ #include <setjmp.h> #include <alloca.h> -void +static void sub5 (jmp_buf buf) { longjmp (buf, 1); } -void +static void test (int x) { jmp_buf buf; |