#include <unistd.h>
#include "syscall.h"
int symlinkat(const char *existing, int fd, const char *new)
{
return syscall(SYS_symlinkat, existing, fd, new);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
![]() |
index : grovel | |
| Unnamed repository; edit this file 'description' to name the repository. | External SSH Git service user |
| aboutsummaryrefslogtreecommitdiff |
#include <unistd.h>
#include "syscall.h"
int symlinkat(const char *existing, int fd, const char *new)
{
return syscall(SYS_symlinkat, existing, fd, new);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif