summaryrefslogtreecommitdiff
path: root/lib/libpcap/etherent.c
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-09-16 02:33:09 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-09-16 02:33:09 +0000
commiteaa811cd7cb3bf32f0278b3a01acfed9c79b5cfd (patch)
tree8e26188ba73b473aa4507b94c60d02c73a54d432 /lib/libpcap/etherent.c
parent8b2d23555b5d71b27f72c08d9978eccc3a02fa78 (diff)
Use __inline
Diffstat (limited to 'lib/libpcap/etherent.c')
-rw-r--r--lib/libpcap/etherent.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libpcap/etherent.c b/lib/libpcap/etherent.c
index 29af870e021..4e2f4fb8f56 100644
--- a/lib/libpcap/etherent.c
+++ b/lib/libpcap/etherent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: etherent.c,v 1.4 1996/07/12 13:19:07 mickey Exp $ */
+/* $OpenBSD: etherent.c,v 1.5 1996/09/16 02:33:04 tholo Exp $ */
/*
* Copyright (c) 1990, 1993, 1994, 1995
@@ -40,12 +40,12 @@ static char rcsid[] =
#include "pcap-int.h"
-static inline int xdtoi(int);
-static inline int skip_space(FILE *);
-static inline int skip_line(FILE *);
+static __inline int xdtoi(int);
+static __inline int skip_space(FILE *);
+static __inline int skip_line(FILE *);
/* Hex digit to integer. */
-static inline int
+static __inline int
xdtoi(c)
register int c;
{
@@ -57,7 +57,7 @@ xdtoi(c)
return c - 'A' + 10;
}
-static inline int
+static __inline int
skip_space(f)
FILE *f;
{
@@ -70,7 +70,7 @@ skip_space(f)
return c;
}
-static inline int
+static __inline int
skip_line(f)
FILE *f;
{