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.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- src/sys/sys/socket.h 2006/06/19 15:44:56 1.80 +++ src/sys/sys/socket.h 2006/06/26 21:23:59 1.81 @@ -1,4 +1,4 @@ -/* $NetBSD: socket.h,v 1.80 2006/06/19 15:44:56 gdamore Exp $ */ +/* $NetBSD: socket.h,v 1.81 2006/06/26 21:23:59 mrg Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -558,7 +558,11 @@ ssize_t sendmsg(int, const struct msghdr int setsockopt(int, int, int, const void *, socklen_t); int shutdown(int, int); int sockatmark(int); -int socket(int, int, int); +int socket(int, int, int) +#if !defined(__LIBC12_SOURCE__) && !defined(STANDALONE) +__RENAME(__socket30) +#endif + ; int socketpair(int, int, int, int *); __END_DECLS #endif /* !_KERNEL */