linkat (2) Linux Manual Page
NAME 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…
