diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-06-22 15:10:30 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-06-22 15:10:30 -0700 |
commit | e364e6f11861d3354e4e9b2c2e04816688c14770 (patch) | |
tree | d0940249197b21221fec65bc74dc933f2cbaf698 /elf/ifuncmod5.c | |
parent | 3c30afc8625c680257b91638c3d9bee01e1fe778 (diff) | |
download | glibc-e364e6f11861d3354e4e9b2c2e04816688c14770.zip glibc-e364e6f11861d3354e4e9b2c2e04816688c14770.tar.gz glibc-e364e6f11861d3354e4e9b2c2e04816688c14770.tar.bz2 |
Clean up whitespaces in last patch.
Diffstat (limited to 'elf/ifuncmod5.c')
-rw-r--r-- | elf/ifuncmod5.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/elf/ifuncmod5.c b/elf/ifuncmod5.c index 4838896..2ca1c71 100644 --- a/elf/ifuncmod5.c +++ b/elf/ifuncmod5.c @@ -15,7 +15,7 @@ minus_one (void) } static int -zero (void) +zero (void) { return 0; } @@ -23,7 +23,7 @@ zero (void) void * foo_ifunc (void) __asm__ ("foo"); __asm__(".type foo, %gnu_indirect_function"); -void * +void * foo_ifunc (void) { switch (global) @@ -40,7 +40,7 @@ foo_ifunc (void) void * foo_hidden_ifunc (void) __asm__ ("foo_hidden"); __asm__(".type foo_hidden, %gnu_indirect_function"); -void * +void * foo_hidden_ifunc (void) { switch (global) @@ -57,7 +57,7 @@ foo_hidden_ifunc (void) void * foo_protected_ifunc (void) __asm__ ("foo_protected"); __asm__(".type foo_protected, %gnu_indirect_function"); -void * +void * foo_protected_ifunc (void) { switch (global) |