diff options
Diffstat (limited to 'arch/sandbox/cpu/os.c')
| -rw-r--r-- | arch/sandbox/cpu/os.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/arch/sandbox/cpu/os.c b/arch/sandbox/cpu/os.c index 2e2fc58a1..98f565eaa 100644 --- a/arch/sandbox/cpu/os.c +++ b/arch/sandbox/cpu/os.c @@ -92,6 +92,11 @@ int os_close(int fd)  	return close(fd);  } +int os_unlink(const char *pathname) +{ +	return unlink(pathname); +} +  void os_exit(int exit_code)  {  	exit(exit_code); |