From efdb21fff439759a746f339e30aba255ed4a60d5 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 26 Feb 2002 15:22:38 +0000 Subject: Be consistant and use an unsigned char * throughout --- include/stdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/stdio.h') 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; -- cgit v1.2.3