1 /*  DO NOT EDIT THIS FILE.
2 
3     It has been auto-edited by fixincludes from:
4 
5 	"fixinc/tests/inc/sys/socket.h"
6 
7     This had to be done to correct non-standard usages in the
8     original, manufacturer supplied header file.  */
9 
10 
11 
12 #if defined( IRIX_SOCKLEN_T_CHECK )
13 #define _SOCKLEN_T
14 #if _NO_XOPEN4 && _NO_XOPEN5
15 typedef int socklen_t;
16 #else
17 typedef u_int32_t socklen_t;
18 #endif /* _NO_XOPEN4 && _NO_XOPEN5 */
19 #endif  /* IRIX_SOCKLEN_T_CHECK */
20 
21 
22 #if defined( SOLARIS_SOCKET_CHECK )
23 #ident   "@(#)socket.h   1.30    97/01/20 SMI"
24 extern int recv(int, void *, int, int);
25 extern int send(int, const void *, int, int);
26 #endif  /* SOLARIS_SOCKET_CHECK */
27