diff options
author | 2007-09-16 20:34:18 +0000 | |
---|---|---|
committer | 2007-09-16 20:34:18 +0000 | |
commit | ce8bbb0e72a0ca629662e83f1948dfd93d6f737d (patch) | |
tree | ebe665508c82931de2836b3e54f7ae6919e09d5a | |
parent | for get the flags arg must be 0; from Tamas TEVESZ; ok millert@ (diff) | |
download | wireguard-openbsd-ce8bbb0e72a0ca629662e83f1948dfd93d6f737d.tar.xz wireguard-openbsd-ce8bbb0e72a0ca629662e83f1948dfd93d6f737d.zip |
I can't think of any good reason to inline this.
Makes pcc happier, to boot.
-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; |