diff options
author | Yang Tse <yangsita@gmail.com> | 2008-07-17 03:07:54 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-07-17 03:07:54 +0000 |
commit | 39f23aec6b3cd5e7e5dd9077d96f8eff37ff2b19 (patch) | |
tree | 99b4fdb88e20b8235bf1ff38672985c3f0ed7795 /lib/config-riscos.h | |
parent | 362422641e15aa500991ab8508eb0c10cf86b1e5 (diff) | |
download | curl-39f23aec6b3cd5e7e5dd9077d96f8eff37ff2b19.tar.gz |
RECVFROM_TYPE_ARG2, RECVFROM_TYPE_ARG5 and RECVFROM_TYPE_ARG6 are now defined
to the data type pointed by its respective argument and not the pointer type.
Diffstat (limited to 'lib/config-riscos.h')
-rw-r--r-- | lib/config-riscos.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/config-riscos.h b/lib/config-riscos.h index 722e8734f..7140e9c24 100644 --- a/lib/config-riscos.h +++ b/lib/config-riscos.h @@ -436,8 +436,8 @@ /* Define to the type of arg 1 for recvfrom. */ #define RECVFROM_TYPE_ARG1 int -/* Define to the type of arg 2 for recvfrom. */ -#define RECVFROM_TYPE_ARG2 void * +/* Define to the type pointed by arg 2 for recvfrom. */ +#define RECVFROM_TYPE_ARG2 void /* Define to the type of arg 3 for recvfrom. */ #define RECVFROM_TYPE_ARG3 size_t @@ -445,11 +445,11 @@ /* Define to the type of arg 4 for recvfrom. */ #define RECVFROM_TYPE_ARG4 int -/* Define to the type of arg 5 for recvfrom. */ -#define RECVFROM_TYPE_ARG5 struct sockaddr * +/* Define to the type pointed by arg 5 for recvfrom. */ +#define RECVFROM_TYPE_ARG5 struct sockaddr -/* Define to the type of arg 6 for recvfrom. */ -#define RECVFROM_TYPE_ARG6 int * +/* Define to the type pointed by arg 6 for recvfrom. */ +#define RECVFROM_TYPE_ARG6 int /* Define to the function return type for recvfrom. */ #define RECVFROM_TYPE_RETV ssize_t |