summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-02-03 18:43:09 -0800
committerLinus Torvalds <torvalds@home.osdl.org>2004-02-03 18:43:09 -0800
commitf70ceb5a2fe6380ce61e23111458e843448d60b9 (patch)
tree3f983133686b5bf22078899a4d919e3f0ed67c23 /include/linux
parent2b0bcc8bcb72c9334b75cd804be8e33fd9200807 (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.h4
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);