From 7e43d06b602f5158b7240b03efad7f7066d0650d Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Tue, 4 Jul 2006 16:54:10 +0000 Subject: Get qualifier of arg 2 for send() apart into SEND_QUAL_ARG2. --- lib/config-amigaos.h | 1 + lib/config-mac.h | 1 + lib/config-riscos.h | 3 +++ lib/config-tpf.h | 3 +++ lib/config-win32.h | 3 +++ lib/config-win32ce.h | 3 +++ 6 files changed, 14 insertions(+) (limited to 'lib') diff --git a/lib/config-amigaos.h b/lib/config-amigaos.h index ea21e698b..89b1650b8 100644 --- a/lib/config-amigaos.h +++ b/lib/config-amigaos.h @@ -105,6 +105,7 @@ #define HAVE_SEND 1 #define SEND_TYPE_ARG1 int +#define SEND_QUAL_ARG2 const #define SEND_TYPE_ARG2 char * #define SEND_TYPE_ARG3 int #define SEND_TYPE_ARG4 int diff --git a/lib/config-mac.h b/lib/config-mac.h index a06f9e1ba..35eeef6cc 100644 --- a/lib/config-mac.h +++ b/lib/config-mac.h @@ -59,6 +59,7 @@ #define HAVE_SEND 1 #define SEND_TYPE_ARG1 int +#define SEND_QUAL_ARG2 const #define SEND_TYPE_ARG2 void * #define SEND_TYPE_ARG3 size_T #define SEND_TYPE_ARG4 int diff --git a/lib/config-riscos.h b/lib/config-riscos.h index d9dad5f74..fd3656f46 100644 --- a/lib/config-riscos.h +++ b/lib/config-riscos.h @@ -433,6 +433,9 @@ /* Define to the type of arg 1 for send. */ #define SEND_TYPE_ARG1 int +/* Define to the type qualifier of arg 2 for send. */ +#define SEND_QUAL_ARG2 const + /* Define to the type of arg 2 for send. */ #define SEND_TYPE_ARG2 void * diff --git a/lib/config-tpf.h b/lib/config-tpf.h index 48d1056f6..593437cc2 100644 --- a/lib/config-tpf.h +++ b/lib/config-tpf.h @@ -711,6 +711,9 @@ /* Define to the type of arg 1 for send. */ #define SEND_TYPE_ARG1 int +/* Define to the type qualifier of arg 2 for send. */ +#define SEND_QUAL_ARG2 const + /* Define to the type of arg 2 for send. */ #define SEND_TYPE_ARG2 char * diff --git a/lib/config-win32.h b/lib/config-win32.h index c8839d8ac..891183a14 100644 --- a/lib/config-win32.h +++ b/lib/config-win32.h @@ -257,6 +257,9 @@ /* Define to the type of arg 1 for send. */ #define SEND_TYPE_ARG1 SOCKET +/* Define to the type qualifier of arg 2 for send. */ +#define SEND_QUAL_ARG2 const + /* Define to the type of arg 2 for send. */ #define SEND_TYPE_ARG2 char * diff --git a/lib/config-win32ce.h b/lib/config-win32ce.h index 1b90858c5..68829ba59 100644 --- a/lib/config-win32ce.h +++ b/lib/config-win32ce.h @@ -243,6 +243,9 @@ /* Define to the type of arg 1 for send. */ #define SEND_TYPE_ARG1 SOCKET +/* Define to the type qualifier of arg 2 for send. */ +#define SEND_QUAL_ARG2 const + /* Define to the type of arg 2 for send. */ #define SEND_TYPE_ARG2 char * -- cgit v1.2.3