mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix symlinkat(2) calling sys_linkat rather than sys_symlinkat.
This commit is contained in:
parent
4227d97f55
commit
142b2c66c4
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@
|
|||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
|
||||
DEFN_SYSCALL3(int, sys_symlinkat, SYSCALL_LINKAT, const char*, int, const char*);
|
||||
DEFN_SYSCALL3(int, sys_symlinkat, SYSCALL_SYMLINKAT, const char*, int, const char*);
|
||||
|
||||
extern "C" int symlinkat(const char* oldpath, int newdirfd, const char* newpath)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue