diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-11-24 01:54:47 +0100 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-11-24 01:54:47 +0100 |
| commit | 369c62119b9dd60db77fc28e8857ed9c4d498889 (patch) | |
| tree | ea06cc9b95516863cc674bf700e27db601e0529b /userspace/sys/syscalls.c | |
| parent | 0d36b950f6a560a0312f2dcd326d3bb5362af370 (diff) | |
problems with ENV
Diffstat (limited to 'userspace/sys/syscalls.c')
| -rw-r--r-- | userspace/sys/syscalls.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/userspace/sys/syscalls.c b/userspace/sys/syscalls.c index 9456ea4..fe34f47 100644 --- a/userspace/sys/syscalls.c +++ b/userspace/sys/syscalls.c @@ -2,6 +2,11 @@ char **environ; +void _exit(int ret) +{ + _exit2(ret,environ); +} + void _exit2(int ret,char **environ) { return syscall(SYSCALL_EXIT,ret,environ,0); |
