diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2016-04-11 20:43:34 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2016-04-11 20:43:34 +0000 |
commit | b4c93c7ba9d727cb7cd0cdbe52c0123401424db1 (patch) | |
tree | 82760cb62e68d8a09fd1e773ad001637fb560665 /lib/libedit/tty.h | |
parent | abf221675b71c007d7d79df6e96b6c7cdc20da9e (diff) |
get rid of the non-standard data type "Char" in almost all files;
ok martijn@
Diffstat (limited to 'lib/libedit/tty.h')
-rw-r--r-- | lib/libedit/tty.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libedit/tty.h b/lib/libedit/tty.h index 1e004e06404..36ed1b8e99c 100644 --- a/lib/libedit/tty.h +++ b/lib/libedit/tty.h @@ -1,5 +1,5 @@ -/* $OpenBSD: tty.h,v 1.11 2016/04/09 18:42:49 schwarze Exp $ */ -/* $NetBSD: tty.h,v 1.19 2016/02/27 18:13:21 christos Exp $ */ +/* $OpenBSD: tty.h,v 1.12 2016/04/11 20:43:33 schwarze Exp $ */ +/* $NetBSD: tty.h,v 1.20 2016/04/11 00:50:13 christos Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -459,7 +459,7 @@ typedef unsigned char ttychar_t[NN_IO][C_NCC]; protected int tty_init(EditLine *); protected void tty_end(EditLine *); -protected int tty_stty(EditLine *, int, const Char **); +protected int tty_stty(EditLine *, int, const wchar_t **); protected int tty_rawmode(EditLine *); protected int tty_cookedmode(EditLine *); protected int tty_quotemode(EditLine *); |