Module Name: src
Committed By: tnozaki
Date: Sat Jun 12 18:03:09 UTC 2010
Modified Files:
src/lib/libc/locale: bsdctype.h
Log Message:
s/_CTYPE_NUM_CHARS/_CTYPE_CACHE_SIZE/
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libc/locale/bsdctype.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/locale/bsdctype.h
diff -u src/lib/libc/locale/bsdctype.h:1.4 src/lib/libc/locale/bsdctype.h:1.5
--- src/lib/libc/locale/bsdctype.h:1.4 Tue Jun 1 18:00:28 2010
+++ src/lib/libc/locale/bsdctype.h Sat Jun 12 18:03:09 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: bsdctype.h,v 1.4 2010/06/01 18:00:28 tnozaki Exp $ */
+/* $NetBSD: bsdctype.h,v 1.5 2010/06/12 18:03:09 tnozaki Exp $ */
/*-
* Copyright (c)2008 Citrus Project,
@@ -35,9 +35,9 @@
char fbl_id[8];
uint32_t fbl_rev;
uint32_t fbl_num_chars;
- uint8_t fbl_ctype_tab [_CTYPE_NUM_CHARS];
- int16_t fbl_tolower_tab[_CTYPE_NUM_CHARS];
- int16_t fbl_toupper_tab[_CTYPE_NUM_CHARS];
+ uint8_t fbl_ctype_tab [_CTYPE_CACHE_SIZE];
+ int16_t fbl_tolower_tab[_CTYPE_CACHE_SIZE];
+ int16_t fbl_toupper_tab[_CTYPE_CACHE_SIZE];
} __packed _FileBSDCTypeLocale;
typedef struct {