Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/sys/socket.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- src/sys/sys/socket.h 1993/03/21 09:45:37 1.1 +++ src/sys/sys/socket.h 1993/04/19 01:23:13 1.2 @@ -33,6 +33,9 @@ * @(#)socket.h 7.13 (Berkeley) 4/20/91 */ +#ifndef _SYS_SOCKET_H_ +#define _SYS_SOCKET_H_ + /* * Definitions related to sockets: types, address families, options. */ @@ -257,4 +260,6 @@ int socket __P((int, int, int)); int socketpair __P((int, int, int, int *)); __END_DECLS -#endif /* !KERNEL */ +#endif /* KERNEL */ + +#endif /* !_SYS_SOCKET_H_ */