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_read.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_read.c')
-rw-r--r-- | usr.bin/vi/ex/ex_read.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vi/ex/ex_read.c b/usr.bin/vi/ex/ex_read.c index b61a56b300d..2ec79faf9af 100644 --- a/usr.bin/vi/ex/ex_read.c +++ b/usr.bin/vi/ex/ex_read.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ex_read.c,v 1.11 2016/01/06 22:28:52 millert Exp $ */ +/* $OpenBSD: ex_read.c,v 1.12 2016/05/02 18:24:25 martijn Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 @@ -42,7 +42,7 @@ ex_read(SCR *sp, EXCMD *cmdp) { enum { R_ARG, R_EXPANDARG, R_FILTER } which; struct stat sb; - CHAR_T *arg, *name; + char *arg, *name; EX_PRIVATE *exp; FILE *fp; FREF *frp; |