diff options
| author | Yang Tse <yangsita@gmail.com> | 2006-07-04 16:54:10 +0000 | 
|---|---|---|
| committer | Yang Tse <yangsita@gmail.com> | 2006-07-04 16:54:10 +0000 | 
| commit | 7e43d06b602f5158b7240b03efad7f7066d0650d (patch) | |
| tree | 17402872348e6e19956adcd21e79d50f74cd122f /lib | |
| parent | 89f54f373979d182dfec4ddb7c9adbccbca9f2f1 (diff) | |
Get qualifier of arg 2 for send() apart into SEND_QUAL_ARG2.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/config-amigaos.h | 1 | ||||
| -rw-r--r-- | lib/config-mac.h | 1 | ||||
| -rw-r--r-- | lib/config-riscos.h | 3 | ||||
| -rw-r--r-- | lib/config-tpf.h | 3 | ||||
| -rw-r--r-- | lib/config-win32.h | 3 | ||||
| -rw-r--r-- | lib/config-win32ce.h | 3 | 
6 files changed, 14 insertions, 0 deletions
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 *  | 
