From owner-cvs-all Mon Sep 20 0:58:21 1999 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 8BCC51591D; Mon, 20 Sep 1999 00:58:04 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id BAA94653; Mon, 20 Sep 1999 01:57:50 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id BAA16031; Mon, 20 Sep 1999 01:57:03 -0600 (MDT) Message-Id: <199909200757.BAA16031@harmony.village.org> To: Brian Somers Subject: Re: cvs commit: src/usr.sbin/ppp arp.c bundle.c chat.c command.c defs.c exec.c i4b.c iface.c ip.c ipcp.c mp.c physical.c prompt.c radius.c route.c server.c tcp.c tty.c tun.c udp.c Cc: Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Mon, 20 Sep 1999 08:56:32 BST." <199909200756.IAA02571@keep.lan.Awfulhak.org> References: <199909200756.IAA02571@keep.lan.Awfulhak.org> Date: Mon, 20 Sep 1999 01:57:03 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk In message <199909200756.IAA02571@keep.lan.Awfulhak.org> Brian Somers writes: : Odd indeed. I don't have access to any NetBSD boxes myself, but I've : been told that this changed in NetBSD-1.4. OK. I'll go take a look at the NetBSD 1.4 stuff I have... Looks like errno is defined in errno.h, but I am looking at the hpcmips tree which I believe to be 1.4, but do not know 100% if the userland is 1.4 or not. I suspect it is since the hpcmips tree is being committed to NetBSD soonish and there were many libc issues to deal with before that was allowed. ... * from: @(#)errno.h 8.5 (Berkeley) 1/21/94 */ #ifndef _ERRNO_H_ #define _ERRNO_H_ #include #include #include __BEGIN_DECLS #ifdef _REENTRANT extern int *__errno __P((void)); #define errno (*__errno()) #else extern int errno; #endif ... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message