diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-01-27 07:37:12 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-01-27 07:37:12 +0000 |
commit | 442057f0d3f933fda14a3cdde19349211f763b4c (patch) | |
tree | eabfee98f782e1f1a5eda68b500d05e3dd35201f | |
parent | 2e6cfb475a941a7b6429c71b245f5452909437dd (diff) |
Patch from Joakim Tjernlund to get rid of an annoying warning.
-rw-r--r-- | ldso/ldso/powerpc/boot1_arch.h | 2 | ||||
-rw-r--r-- | ldso/ldso/powerpc/dl-startup.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ldso/ldso/powerpc/boot1_arch.h b/ldso/ldso/powerpc/boot1_arch.h index 2f54ed9d9..e50e8eabd 100644 --- a/ldso/ldso/powerpc/boot1_arch.h +++ b/ldso/ldso/powerpc/boot1_arch.h @@ -18,5 +18,5 @@ asm("" \ ); #define _dl_boot _dl_boot2 -#define LD_BOOT(X) static void * __attribute__ ((unused)) _dl_boot (X) +#define LD_BOOT(X) static void __attribute__ ((unused)) _dl_boot (X) diff --git a/ldso/ldso/powerpc/dl-startup.h b/ldso/ldso/powerpc/dl-startup.h index 2f54ed9d9..e50e8eabd 100644 --- a/ldso/ldso/powerpc/dl-startup.h +++ b/ldso/ldso/powerpc/dl-startup.h @@ -18,5 +18,5 @@ asm("" \ ); #define _dl_boot _dl_boot2 -#define LD_BOOT(X) static void * __attribute__ ((unused)) _dl_boot (X) +#define LD_BOOT(X) static void __attribute__ ((unused)) _dl_boot (X) |