]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - arch/sandbox/cpu/os.c
unit-test: make "test -e" test independent of $CWD
[karo-tx-uboot.git] / arch / sandbox / cpu / os.c
index 2e2fc58a1ba86630307dec70613e47571820a57b..98f565eaaf8cfd2d19fb0c011983bb2198d6dce6 100644 (file)
@@ -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);