diff options
author | Martijn van Duren <martijn@cvs.openbsd.org> | 2016-05-02 18:24:26 +0000 |
---|---|---|
committer | Martijn van Duren <martijn@cvs.openbsd.org> | 2016-05-02 18:24:26 +0000 |
commit | 5ac1513f7000459d906395b3a9157798b5031fb6 (patch) | |
tree | f80d2e87ccbe977f5f1127062f4d0aca63f795fd /usr.bin/vi/ex/ex_global.c | |
parent | 24ae9ab57aeb722a2c97a31ec7cb5a2f788d09e0 (diff) |
Remove CHAR_T in favor of native types.
schwarze@ agrees with the direction.
Few tweaks and OK tb@
Diffstat (limited to 'usr.bin/vi/ex/ex_global.c')
-rw-r--r-- | usr.bin/vi/ex/ex_global.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vi/ex/ex_global.c b/usr.bin/vi/ex/ex_global.c index 92966ed1d7b..1cbb61e1270 100644 --- a/usr.bin/vi/ex/ex_global.c +++ b/usr.bin/vi/ex/ex_global.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ex_global.c,v 1.15 2016/01/06 22:28:52 millert Exp $ */ +/* $OpenBSD: ex_global.c,v 1.16 2016/05/02 18:24:25 martijn Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 @@ -61,7 +61,7 @@ ex_v(SCR *sp, EXCMD *cmdp) static int ex_g_setup(SCR *sp, EXCMD *cmdp, enum which cmd) { - CHAR_T *ptrn, *p, *t; + char *ptrn, *p, *t; EXCMD *ecp; MARK abs_mark; RANGE *rp; |