X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=blobdiff_plain;f=arch%2Fsandbox%2Fcpu%2Fos.c;h=98f565eaaf8cfd2d19fb0c011983bb2198d6dce6;hp=2e2fc58a1ba86630307dec70613e47571820a57b;hb=cfd13e8dda9d2db3f6bdf32d623aecf10ee1ba50;hpb=fe9ca3d3287185e388de55904420cc7915e4a3b1 diff --git a/arch/sandbox/cpu/os.c b/arch/sandbox/cpu/os.c index 2e2fc58a1b..98f565eaaf 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);