From owner-cvs-all Fri Aug 16 9:34:30 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28A2B37B400; Fri, 16 Aug 2002 09:34:27 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CED5143E6A; Fri, 16 Aug 2002 09:34:26 -0700 (PDT) (envelope-from mike@FreeBSD.org) Received: from freefall.freebsd.org (mike@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g7GGYQJU028089; Fri, 16 Aug 2002 09:34:26 -0700 (PDT) (envelope-from mike@freefall.freebsd.org) Received: (from mike@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g7GGYQ6V028088; Fri, 16 Aug 2002 09:34:26 -0700 (PDT) Message-Id: <200208161634.g7GGYQ6V028088@freefall.freebsd.org> From: Mike Barcroft Date: Fri, 16 Aug 2002 09:34:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include/arpa inet.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2002/08/16 09:34:26 PDT Modified files: include/arpa inet.h Log: Change a POSIX conditional to use the new __BSD_VISIBLE macro. Fix the following style bugs: o #ifdef, #ifndef, and #undef should be followed by a space, not a tab. o The second level of indentation in prototypes is 4 characters even when the function names are indented 1 extra character. o Type qualifiers that appear next to a * need a seperating space so that the qualifier isn't easily confused with parameter names. (eg. `char * __restrict' instead of `char *__restrict') Submitted by: bde (mostly) Revision Changes Path 1.24 +11 -11 src/include/arpa/inet.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message