summaryrefslogtreecommitdiff
path: root/usr.bin/mg/undo.c
diff options
context:
space:
mode:
authorKjell Wooding <kjell@cvs.openbsd.org>2005-10-14 19:46:47 +0000
committerKjell Wooding <kjell@cvs.openbsd.org>2005-10-14 19:46:47 +0000
commit45ef618c8faa07655ec2a8a844b7fdeef0036f02 (patch)
treee99b6e836052daa589c73dcf97b401a952a1ba0a /usr.bin/mg/undo.c
parent9efd76fbfee31678bd5cf9b13a6a2f6ac3280f38 (diff)
add missing /* ARGSUSED */ to quiet lint.
Diffstat (limited to 'usr.bin/mg/undo.c')
-rw-r--r--usr.bin/mg/undo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mg/undo.c b/usr.bin/mg/undo.c
index 65f13dcd4d8..f65006f32dd 100644
--- a/usr.bin/mg/undo.c
+++ b/usr.bin/mg/undo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: undo.c,v 1.31 2005/10/13 20:28:49 deraadt Exp $ */
+/* $OpenBSD: undo.c,v 1.32 2005/10/14 19:46:46 kjell Exp $ */
/*
* Copyright (c) 2002 Vincent Labrecque <vincent@openbsd.org>
* All rights reserved.
@@ -340,6 +340,7 @@ undo_add_change(LINE *lp, int offset, int size)
/*
* Show the undo records for the current buffer in a new buffer.
*/
+/* ARGSUSED */
int
undo_dump(int f, int n)
{
@@ -425,6 +426,7 @@ undo_dump(int f, int n)
* two undo actions, we make it point back at the topmost record. This is
* how we handle redoing.
*/
+/* ARGSUSED */
int
undo(int f, int n)
{