diff --git a/lib/libkse/arch/ia64/include/pthread_md.h b/lib/libkse/arch/ia64/include/pthread_md.h index c5fef187f58..ed77157d70a 100644 --- a/lib/libkse/arch/ia64/include/pthread_md.h +++ b/lib/libkse/arch/ia64/include/pthread_md.h @@ -73,7 +73,7 @@ struct kcb { }; static __inline struct tcb * -ia64_get_tcb() +ia64_get_tcb(void) { register char *tp __asm("%r13"); diff --git a/lib/libkse/arch/powerpc/include/pthread_md.h b/lib/libkse/arch/powerpc/include/pthread_md.h index 71e8e58878b..5af255e2f6b 100644 --- a/lib/libkse/arch/powerpc/include/pthread_md.h +++ b/lib/libkse/arch/powerpc/include/pthread_md.h @@ -90,7 +90,7 @@ struct kcb { #define TP_OFFSET 0x7008 static __inline char * -ppc_get_tp() +ppc_get_tp(void) { register char *r2 __asm__("%r2"); @@ -105,7 +105,7 @@ ppc_set_tp(char *tp) } static __inline struct tcb * -ppc_get_tcb() +ppc_get_tcb(void) { return ((struct tcb *)(ppc_get_tp() - offsetof(struct tcb, tcb_tp))); }