diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-23 22:20:37 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-23 22:20:37 +0000 |
commit | e26c13adf68b1b5d232a24497363f79effdea7e4 (patch) | |
tree | 2c22022762ad93a7ad1a83baa723395e85baef55 /usr.bin/mg/help.c | |
parent | dedc2917e1594f44221d8474a7317eca1669caf8 (diff) |
remove VOID. We're way beyond the point where this could build with an
ancient compiler.
Diffstat (limited to 'usr.bin/mg/help.c')
-rw-r--r-- | usr.bin/mg/help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/help.c b/usr.bin/mg/help.c index cd4a15fb80e..413482821ab 100644 --- a/usr.bin/mg/help.c +++ b/usr.bin/mg/help.c @@ -1,4 +1,4 @@ -/* $OpenBSD: help.c,v 1.9 2001/05/23 22:12:10 art Exp $ */ +/* $OpenBSD: help.c,v 1.10 2001/05/23 22:20:35 art Exp $ */ /* * Help functions for Mg 2 @@ -35,7 +35,7 @@ desckey(f, n) if (inmacro) return TRUE; /* ignore inside keyboard macro */ #endif /* !NO_MACRO */ - (VOID)strcpy(prompt, "Describe key briefly: "); + strcpy(prompt, "Describe key briefly: "); pep = prompt + strlen(prompt); key.k_count = 0; m = curbp->b_nmodes; |