unlink (2) Linux Manual Page
NAME unlink, unlinkat – delete a name and possibly the file it refers to SYNOPSIS #include <unistd.h> int unlink(const char *pathname); #include <fcntl.h> /* Definition of AT_* constants */ #include <unistd.h> int unlinkat(int dirfd, const char *pathname, int flags); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): unlinkat(): Since glibc 2.10: _POSIX_C_SOURCE >= 200809L Before glibc 2.10:…
