diff options
author | bde <bde@FreeBSD.org> | 1998-04-15 17:47:40 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-04-15 17:47:40 +0000 |
commit | b598f559b2947bb9582b53221185bb27d86cd68f (patch) | |
tree | f0a3b1121a7c68f5b6b630a3981fb3a4fbbc9c43 /sys/kern/tty_subr.c | |
parent | 37b60f29dd0d528b8bc950b0b559f304b73db9ec (diff) | |
download | FreeBSD-src-b598f559b2947bb9582b53221185bb27d86cd68f.zip FreeBSD-src-b598f559b2947bb9582b53221185bb27d86cd68f.tar.gz |
Support compiling with `gcc -ansi'.
Diffstat (limited to 'sys/kern/tty_subr.c')
-rw-r--r-- | sys/kern/tty_subr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/tty_subr.c b/sys/kern/tty_subr.c index 3a806b6..d990a12 100644 --- a/sys/kern/tty_subr.c +++ b/sys/kern/tty_subr.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: tty_subr.c,v 1.27 1997/03/24 11:24:37 bde Exp $ + * $Id: tty_subr.c,v 1.28 1997/10/12 20:24:09 phk Exp $ */ /* @@ -91,7 +91,7 @@ clist_init(dummy) * Remove a cblock from the cfreelist queue and return a pointer * to it. */ -static inline struct cblock * +static __inline struct cblock * cblock_alloc() { struct cblock *cblockp; @@ -108,7 +108,7 @@ cblock_alloc() /* * Add a cblock to the cfreelist queue. */ -static inline void +static __inline void cblock_free(cblockp) struct cblock *cblockp; { |