diff options
author | Patrick Monnerat <pm@datasphere.ch> | 2013-10-28 12:00:22 +0100 |
---|---|---|
committer | Patrick Monnerat <pm@datasphere.ch> | 2013-10-28 12:00:22 +0100 |
commit | 5d415815df4b93d694a7134739725d6c41176b01 (patch) | |
tree | 9e820d75b0d2eb5c468b7fb5e1cd11c6e0ea5653 /lib | |
parent | f68559c086b74e092f72b72641d3a1a043cfa636 (diff) |
OS400: coding style standards
Diffstat (limited to 'lib')
-rw-r--r-- | lib/setup-os400.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/setup-os400.h b/lib/setup-os400.h index 37dc05b2b..0331464e4 100644 --- a/lib/setup-os400.h +++ b/lib/setup-os400.h @@ -33,7 +33,7 @@ typedef unsigned long u_int32_t; -/* System API wrapper prototypes and definitions to support ASCII parameters. */ +/* System API wrapper prototypes & definitions to support ASCII parameters. */ #include <sys/socket.h> #include <netdb.h> @@ -42,7 +42,8 @@ typedef unsigned long u_int32_t; #include <qsoasync.h> #include <gssapi.h> -extern int Curl_getaddrinfo_a(const char * nodename, const char * servname, +extern int Curl_getaddrinfo_a(const char * nodename, + const char * servname, const struct addrinfo * hints, struct addrinfo * * res); #define getaddrinfo Curl_getaddrinfo_a @@ -66,7 +67,8 @@ extern int Curl_SSL_Init_a(SSLInit * init); #define SSL_Init Curl_SSL_Init_a -extern char * Curl_SSL_Strerror_a(int sslreturnvalue, SSLErrorMsg * serrmsgp); +extern char * Curl_SSL_Strerror_a(int sslreturnvalue, + SSLErrorMsg * serrmsgp); #define SSL_Strerror Curl_SSL_Strerror_a |