diff options
Diffstat (limited to 'src/microhttpd/mhd_str.c')
-rw-r--r-- | src/microhttpd/mhd_str.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/microhttpd/mhd_str.c b/src/microhttpd/mhd_str.c index 0c62de52..cb86ae80 100644 --- a/src/microhttpd/mhd_str.c +++ b/src/microhttpd/mhd_str.c | |||
@@ -162,8 +162,10 @@ toasciiupper (char c) | |||
162 | { | 162 | { |
163 | return isasciilower (c) ? (c - 'a' + 'A') : c; | 163 | return isasciilower (c) ? (c - 'a' + 'A') : c; |
164 | } | 164 | } |
165 | #endif /* Disable unused functions. */ | ||
165 | 166 | ||
166 | 167 | ||
168 | #if defined(MHD_FAVOR_SMALL_CODE) /* Used only in MHD_str_to_uvalue_n_() */ | ||
167 | /** | 169 | /** |
168 | * Convert US-ASCII decimal digit to its value. | 170 | * Convert US-ASCII decimal digit to its value. |
169 | * | 171 | * |
@@ -178,7 +180,7 @@ todigitvalue (char c) | |||
178 | 180 | ||
179 | return -1; | 181 | return -1; |
180 | } | 182 | } |
181 | #endif /* Disable unused functions. */ | 183 | #endif /* MHD_FAVOR_SMALL_CODE */ |
182 | 184 | ||
183 | 185 | ||
184 | /** | 186 | /** |