28 lines
466 B
C
28 lines
466 B
C
|
#include "tests.h"
|
||
|
#include <sys/syscall.h>
|
||
|
|
||
|
#ifdef __NR_symlink
|
||
|
|
||
|
# include <stdio.h>
|
||
|
# include <unistd.h>
|
||
|
|
||
|
int
|
||
|
main(void)
|
||
|
{
|
||
|
static const char sample_1[] = "symlink_new";
|
||
|
static const char sample_2[] = "symlink";
|
||
|
|
||
|
long rc = syscall(__NR_symlink, sample_1, sample_2);
|
||
|
printf("symlink(\"%s\", \"%s\") = %ld %s (%m)\n",
|
||
|
sample_1, sample_2, rc, errno2name());
|
||
|
|
||
|
puts("+++ exited with 0 +++");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
#else
|
||
|
|
||
|
SKIP_MAIN_UNDEFINED("__NR_symlink")
|
||
|
|
||
|
#endif
|