#ifndef RMDIR_H #define RMDIR_H #include "syscalls.h" static int rmdir(const char *pathname) { return syscall(RMDIR, pathname); } #endif