blob: 8960d1f1e72295aa1d01a8aca5eebe16dab63821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "nonstd/syscall.h"
int link(const char *path1, const char *path2)
{
SC(int, path1, path2);
}
/*
POSIX(1)
*/
|