summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
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)