summaryrefslogtreecommitdiff
path: root/include/stdio.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-26 15:22:38 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-26 15:22:38 +0000
commitefdb21fff439759a746f339e30aba255ed4a60d5 (patch)
tree8f6eeaa5913a9e767c549bf5517e4d75ab4fe644 /include/stdio.h
parent801c69a4187fb34570bc52efc1c1b3957435f7cf (diff)
Be consistant and use an unsigned char * throughout
Diffstat (limited to 'include/stdio.h')
-rw-r--r--include/stdio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h
index c5b013c08..e418b2f0b 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -60,7 +60,7 @@ struct _UC_FILE {
unsigned char mode;
unsigned char ungot;
- char unbuf[2]; /* The buffer for 'unbuffered' streams */
+ unsigned char unbuf[2]; /* The buffer for 'unbuffered' streams */
};
typedef struct _UC_FILE FILE;