Mark internal function toupper_ascii as static

This fixes the following GCC warning:

warning: no previous prototype for 'toupper_ascii'
merge-requests/1/head
Volker Diels-Grabsch 2015-12-06 01:30:30 +01:00 zatwierdzone przez Olaf Meeuwissen
rodzic 13b6faee2a
commit aba87a4582
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -72,7 +72,7 @@
* instead, so the debugging env var name matches the docs.
* This is a particular problem in Turkish, where 'i' does
* not capitalize to 'I' */
char
static char
toupper_ascii (int c)
{
if(c > 0x60 && c < 0x7b)