diff options
author | Brian Callahan <bcallah@cvs.openbsd.org> | 2015-03-16 13:47:49 +0000 |
---|---|---|
committer | Brian Callahan <bcallah@cvs.openbsd.org> | 2015-03-16 13:47:49 +0000 |
commit | 18b8f4de45d54f7ca07acd293676af222a62d392 (patch) | |
tree | 9edf2fe4338f5966553ee09eea268855e4428152 /usr.bin/mg | |
parent | da081b53116f582f80163c35671902f0a3916ffa (diff) |
Change the internal name of the newline function to deconflict with a
function of the same name in term.h. This is the first step towards
cleaning up mg's includes. No user-visible changes.
ok florian@
Diffstat (limited to 'usr.bin/mg')
-rw-r--r-- | usr.bin/mg/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/util.c b/usr.bin/mg/util.c index 896d62324f1..01176a6eb28 100644 --- a/usr.bin/mg/util.c +++ b/usr.bin/mg/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.33 2014/03/26 22:02:06 lum Exp $ */ +/* $OpenBSD: util.c,v 1.34 2015/03/16 13:47:48 bcallah Exp $ */ /* This file is in the public domain. */ @@ -189,7 +189,7 @@ openline(int f, int n) */ /* ARGSUSED */ int -newline(int f, int n) +enewline(int f, int n) { int s; |