From e9e5e597400032a71382455221d26a5c8f7fd527 Mon Sep 17 00:00:00 2001 From: Giacomo Tesio Date: Tue, 26 Nov 2019 00:19:17 +0100 Subject: [PATCH] libposix: rename function argument --- sys/include/posix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/include/posix.h b/sys/include/posix.h index f8727f4..743a001 100644 --- a/sys/include/posix.h +++ b/sys/include/posix.h @@ -296,7 +296,7 @@ extern int POSIX_getpid(int *errnop); extern int POSIX_getppid(int *errnop); extern int POSIX_isatty(int *errnop, int file); extern int POSIX_kill(int *errnop, int pid, int sig); -extern int POSIX_link(int *errnop, const char *old, const char *new); +extern int POSIX_link(int *errnop, const char *existingPath, const char *newPath); extern off_t POSIX_lseek(int *errnop, int fd, off_t pos, int whence); extern int POSIX_open(int *errnop, const char *name, int flags, int mode); extern long POSIX_pread(int *errnop, int fd, char *buf, size_t len, long offset);