]> git.saurik.com Git - apt.git/commitdiff
strutl.cc: Add declarations for the compat _ascii() functions
authorJulian Andres Klode <jak@debian.org>
Tue, 29 Dec 2015 12:21:45 +0000 (13:21 +0100)
committerJulian Andres Klode <jak@debian.org>
Tue, 29 Dec 2015 12:23:13 +0000 (13:23 +0100)
This shuts up gcc

Gbp-Dch: ignore

apt-pkg/contrib/strutl.cc

index 60e3156f1f20efa24f4e3280fcbc32957284dcff..b9bfc2c98541963fbd6aa36d6a0c5862074d9ba2 100644 (file)
@@ -1377,6 +1377,7 @@ string StripEpoch(const string &VerStr)
    standard tolower/toupper and as a bonus avoids problems with different
    locales - we only operate on ascii chars anyway. */
 #undef tolower_ascii
+int tolower_ascii(int const c) APT_CONST APT_COLD;
 int tolower_ascii(int const c)
 {
    return tolower_ascii_inline(c);
@@ -1390,6 +1391,7 @@ int tolower_ascii(int const c)
    standard isspace() and as a bonus avoids problems with different
    locales - we only operate on ascii chars anyway. */
 #undef isspace_ascii
+int isspace_ascii(int const c) APT_CONST APT_COLD;
 int isspace_ascii(int const c)
 {
    return isspace_ascii_inline(c);