From c50925071cce9c6342597f5671e30d2970c6ff4a Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sat, 2 Feb 2013 03:08:57 +0100 Subject: make some arrays const this way they'll go into .rodata, decreasing memory pressure. --- src/ctype/iswpunct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ctype/iswpunct.c') diff --git a/src/ctype/iswpunct.c b/src/ctype/iswpunct.c index a8297452..16e8703b 100644 --- a/src/ctype/iswpunct.c +++ b/src/ctype/iswpunct.c @@ -1,6 +1,6 @@ #include -static unsigned char table[] = { +static const unsigned char table[] = { #include "punct.h" }; -- cgit v1.2.1