diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-02-03 18:43:09 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2004-02-03 18:43:09 -0800 |
| commit | f70ceb5a2fe6380ce61e23111458e843448d60b9 (patch) | |
| tree | 3f983133686b5bf22078899a4d919e3f0ed67c23 /include/linux | |
| parent | 2b0bcc8bcb72c9334b75cd804be8e33fd9200807 (diff) | |
[PATCH] console: support for > 127 chars
From: Nigel Cunningham <ncunningham@users.sourceforge.net>
Change the console code to support up to 256 (maybe 255?) columns.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/selection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/selection.h b/include/linux/selection.h index a949695af3c5..fd34cfa5f5ef 100644 --- a/include/linux/selection.h +++ b/include/linux/selection.h @@ -36,8 +36,8 @@ extern u16 screen_glyph(int currcons, int offset); extern void complement_pos(int currcons, int offset); extern void invert_screen(int currcons, int offset, int count, int shift); -extern void getconsxy(int currcons, char *p); -extern void putconsxy(int currcons, char *p); +extern void getconsxy(int currcons, unsigned char *p); +extern void putconsxy(int currcons, unsigned char *p); extern u16 vcs_scr_readw(int currcons, const u16 *org); extern void vcs_scr_writew(int currcons, u16 val, u16 *org); |
