libc.h: update comment for 32-bit Rune

http://codereview.appspot.com/116097
This commit is contained in:
Russ Cox 2009-09-13 17:46:46 -04:00
parent a0583cf256
commit 9eec023b80

View file

@ -70,10 +70,11 @@ extern int tokenize(char*, char**, int);
/* /*
enum enum
{ {
UTFmax = 3, UTFmax = 4,
Runesync = 0x80, Runesync = 0x80,
Runeself = 0x80, Runeself = 0x80,
Runeerror = 0x80, Runeerror = 0xFFFD,
Runemax = 0x10FFFF,
}; };
*/ */