linkat (2) Linux Manual Page
link, linkat – make a new name for a file Synopsis#include <unistd.h> int link(const char *oldpath, const char *newpath); #include <fcntl.h> /* Definition of AT_* constants */ #include <unistd.h> int linkat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath, int flags);Feature Test Macro Requirements for glibc (see feature_test_macros(7)): linkat(): Since glibc 2.10: _POSIX_C_SOURCE >= 200809L Before…
