Changeset 3809 for branches/libc-0.6/src/emx/include/netdb.h
- Timestamp:
- Feb 16, 2014, 9:20:59 PM (11 years ago)
- Location:
- branches/libc-0.6/src/emx/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/libc-0.6/src/emx/include
- Property svn:mergeinfo changed
/trunk/libc/include merged: 3808
- Property svn:mergeinfo changed
-
branches/libc-0.6/src/emx/include/netdb.h
r1739 r3809 176 176 /* BSD */ 177 177 int TCPCALL gethostname( char *, int ); 178 struct hostent * TCPCALL gethostbyname( __const__char * );179 struct hostent * TCPCALL gethostbyaddr( __const__char *, int, int );180 struct netent * TCPCALL getnetbyname( __const__char * );178 struct hostent * TCPCALL gethostbyname( const char * ); 179 struct hostent * TCPCALL gethostbyaddr( const char *, int, int ); 180 struct netent * TCPCALL getnetbyname( const char * ); 181 181 struct netent * TCPCALL getnetbyaddr( unsigned long, int ); 182 struct servent * TCPCALL getservbyname( __const__ char *, __const__char * );183 struct servent * TCPCALL getservbyport( int, __const__char * );182 struct servent * TCPCALL getservbyname( const char *, const char * ); 183 struct servent * TCPCALL getservbyport( int, const char * ); 184 184 struct servent * TCPCALL getservent( void ); 185 struct protoent * TCPCALL getprotobyname( __const__char * );185 struct protoent * TCPCALL getprotobyname( const char * ); 186 186 struct protoent * TCPCALL getprotobynumber( int ); 187 187 void TCPCALL sethostent( int ); … … 198 198 void TCPCALL endservent(void); 199 199 #ifndef TCPV40HDRS 200 struct hostent * TCPCALL gethostbyname2( __const__char *, int );200 struct hostent * TCPCALL gethostbyname2( const char *, int ); 201 201 #endif 202 202 … … 220 220 221 221 /* EMX/BSD additions. */ 222 void TCPCALL herror( __const__char *);222 void TCPCALL herror(const char *); 223 223 224 224 /* EMX/BSD stuff which isn't implemeneted */
Note:
See TracChangeset
for help on using the changeset viewer.