summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>1999-04-26 08:54:25 +0000
committerbrian <brian@FreeBSD.org>1999-04-26 08:54:25 +0000
commitd1f60b18e9169cfefff4540b6d27ae1e2b181471 (patch)
treed866e37625005c4cad00928e96a0a9d6977612aa /usr.sbin
parent074372cce4b17b0d8ab413125d0ff0a96911a0c4 (diff)
downloadFreeBSD-src-d1f60b18e9169cfefff4540b6d27ae1e2b181471.zip
FreeBSD-src-d1f60b18e9169cfefff4540b6d27ae1e2b181471.tar.gz
#include <errno.h>, not <sys/errno.h>
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/ppp/arp.c4
-rw-r--r--usr.sbin/ppp/defs.c4
-rw-r--r--usr.sbin/ppp/iface.c8
-rw-r--r--usr.sbin/ppp/ipcp.c4
-rw-r--r--usr.sbin/ppp/tun.c4
5 files changed, 12 insertions, 12 deletions
diff --git a/usr.sbin/ppp/arp.c b/usr.sbin/ppp/arp.c
index 892228c..f7c56aa 100644
--- a/usr.sbin/ppp/arp.c
+++ b/usr.sbin/ppp/arp.c
@@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: arp.c,v 1.31 1998/10/26 19:07:38 brian Exp $
+ * $Id: arp.c,v 1.32 1999/01/28 01:56:30 brian Exp $
*
*/
@@ -37,10 +37,10 @@
#include <netinet/ip.h>
#include <sys/un.h>
+#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <sys/errno.h>
#include <sys/sysctl.h>
#include <unistd.h>
diff --git a/usr.sbin/ppp/defs.c b/usr.sbin/ppp/defs.c
index 0e1ec62..07a664d 100644
--- a/usr.sbin/ppp/defs.c
+++ b/usr.sbin/ppp/defs.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: defs.c,v 1.17 1998/06/27 14:18:05 brian Exp $
+ * $Id: defs.c,v 1.18 1999/02/25 20:05:55 brian Exp $
*/
@@ -34,9 +34,9 @@
#include <sys/socket.h>
#include <ctype.h>
+#include <errno.h>
#include <stdlib.h>
#include <string.h>
-#include <sys/errno.h>
#if !defined(__FreeBSD__) || __FreeBSD__ < 3
#include <time.h>
#endif
diff --git a/usr.sbin/ppp/iface.c b/usr.sbin/ppp/iface.c
index d3dfc89..e13c1f8 100644
--- a/usr.sbin/ppp/iface.c
+++ b/usr.sbin/ppp/iface.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: iface.c,v 1.2 1998/10/26 19:07:36 brian Exp $
+ * $Id: iface.c,v 1.3 1999/01/28 01:56:32 brian Exp $
*/
#include <sys/param.h>
@@ -37,12 +37,12 @@
#include <netinet/ip.h>
#include <sys/un.h>
-#include <sys/errno.h>
-#include <sys/ioctl.h>
-#include <sys/sysctl.h>
+#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
+#include <sys/ioctl.h>
+#include <sys/sysctl.h>
#include <termios.h>
#include <unistd.h>
diff --git a/usr.sbin/ppp/ipcp.c b/usr.sbin/ppp/ipcp.c
index c309449..e3b2eef 100644
--- a/usr.sbin/ppp/ipcp.c
+++ b/usr.sbin/ppp/ipcp.c
@@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: ipcp.c,v 1.72 1999/02/26 21:28:11 brian Exp $
+ * $Id: ipcp.c,v 1.73 1999/03/03 23:00:40 brian Exp $
*
* TODO:
* o More RFC1772 backward compatibility
@@ -32,11 +32,11 @@
#include <netdb.h>
#include <sys/un.h>
+#include <errno.h>
#include <fcntl.h>
#include <resolv.h>
#include <stdlib.h>
#include <string.h>
-#include <sys/errno.h>
#include <termios.h>
#include <unistd.h>
diff --git a/usr.sbin/ppp/tun.c b/usr.sbin/ppp/tun.c
index d8edbd8..8d578b4 100644
--- a/usr.sbin/ppp/tun.c
+++ b/usr.sbin/ppp/tun.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: tun.c,v 1.10 1998/10/22 02:32:50 brian Exp $
+ * $Id: tun.c,v 1.11 1999/01/28 01:56:34 brian Exp $
*/
#include <sys/param.h>
@@ -36,9 +36,9 @@
#include <netinet/ip.h>
#include <sys/un.h>
+#include <errno.h>
#include <string.h>
#include <sys/ioctl.h>
-#include <sys/errno.h>
#include "mbuf.h"
#include "log.h"
OpenPOWER on IntegriCloud