From b40438277b0501619ee64bb506e94fe8b0f8ed18 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Tue, 17 Jan 2006 11:24:48 +0000 Subject: [PATCH] Prototype fix --- include/unistd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/unistd.h b/include/unistd.h index 7940789a1..2533a7f2f 100755 --- a/include/unistd.h +++ b/include/unistd.h @@ -139,7 +139,7 @@ _PROTOTYPE( ssize_t write, (int _fd, const void *_buf, size_t _n) ); /* Open Group Base Specifications Issue 6 (not complete) */ _PROTOTYPE( int symlink, (const char *path1, const char *path2) ); -_PROTOTYPE( int readlink, (const char *, char *, int) ); +_PROTOTYPE( int readlink, (const char *, char *, size_t) ); _PROTOTYPE( int getopt, (int _argc, char **_argv, char *_opts) ); extern char *optarg; extern int optind, opterr, optopt;