diff options
author | Kjell Wooding <kjell@cvs.openbsd.org> | 2007-09-16 20:34:19 +0000 |
---|---|---|
committer | Kjell Wooding <kjell@cvs.openbsd.org> | 2007-09-16 20:34:19 +0000 |
commit | dee76242343fdb431ba6179e83aaaae3ceb4030a (patch) | |
tree | 22d84747c34543a625d4c11f3464cbb7de4bba06 /usr.bin/mg/undo.c | |
parent | 2627534f642c9047e03a851554a80bc5b2126dd6 (diff) |
I can't think of any good reason to inline this.
Makes pcc happier, to boot.
Diffstat (limited to 'usr.bin/mg/undo.c')
-rw-r--r-- | usr.bin/mg/undo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/undo.c b/usr.bin/mg/undo.c index ebad7bee71b..af9600e6e0c 100644 --- a/usr.bin/mg/undo.c +++ b/usr.bin/mg/undo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: undo.c,v 1.43 2006/11/19 16:51:19 deraadt Exp $ */ +/* $OpenBSD: undo.c,v 1.44 2007/09/16 20:34:18 kjell Exp $ */ /* * Copyright (c) 2002 Vincent Labrecque <vincent@openbsd.org> * Copyright (c) 2005, 2006 Kjell Wooding <kjell@openbsd.org> @@ -161,7 +161,7 @@ drop_oldest_undo_record(void) return (0); } -static __inline__ int +static int lastrectype(void) { struct undo_rec *rec; |