diff options
Diffstat (limited to 'io/symlinkat.c')
-rw-r--r-- | io/symlinkat.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/io/symlinkat.c b/io/symlinkat.c index 0c8747d3c2..70bf9a226d 100644 --- a/io/symlinkat.c +++ b/io/symlinkat.c @@ -23,10 +23,7 @@ /* Make a link to FROM called TO relative to FD. */ int -symlinkat (from, fd, to) - const char *from; - int fd; - const char *to; +symlinkat (const char *from, int fd, const char *to) { if (from == NULL || to == NULL) { |