diff options
Diffstat (limited to 'src/lib/gcc.c')
-rw-r--r-- | src/lib/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/gcc.c b/src/lib/gcc.c index a576a7762e..5a93f45e34 100644 --- a/src/lib/gcc.c +++ b/src/lib/gcc.c @@ -25,7 +25,7 @@ * specific implementations may vary */ #define WRAP_LIBGCC_CALL(type, name) \ - type __real_##name(type a, type b) asmlinkage; \ + asmlinkage type __real_##name(type a, type b); \ type __wrap_##name(type a, type b); \ type __wrap_##name(type a, type b) { return __real_##name(a, b); } |