summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRichard Henderson <rth@kanga.twiddle.home>2004-03-07 22:58:28 -0800
committerRichard Henderson <rth@kanga.twiddle.home>2004-03-07 22:58:28 -0800
commit370d7089b57d855e8a7a2a2eb902bcb5aef683b4 (patch)
tree579c99b522ba56e5e8361702e034bd7f9e447f84 /include
parent47f766a2c0228a4d98b11b515ba58f417de2de54 (diff)
[ALPHA] Fix gcc 3.4 build problems.
Diffstat (limited to 'include')
-rw-r--r--include/asm-alpha/unistd.h4
1 files changed, 2 insertions, 2 deletions
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)