From 370d7089b57d855e8a7a2a2eb902bcb5aef683b4 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Sun, 7 Mar 2004 22:58:28 -0800 Subject: [ALPHA] Fix gcc 3.4 build problems. --- include/asm-alpha/unistd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/asm-alpha/unistd.h b/include/asm-alpha/unistd.h index e341705048a4..ba2e828b263e 100644 --- a/include/asm-alpha/unistd.h +++ b/include/asm-alpha/unistd.h @@ -573,9 +573,9 @@ static inline off_t lseek(int fd, off_t off, int whence) return sys_lseek(fd, off, whence); } -static inline long _exit(int value) +static inline void _exit(int value) { - return sys_exit(value); + sys_exit(value); } #define exit(x) _exit(x) -- cgit v1.2.3