#include "lib.h" #include #include #include "sys9.h" /* * BUG: errno mapping */ int unlink(const char *path) { int n; if((n=_REMOVE(path)) < 0) _syserrno(); return n; }