Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 716564
Collapse All | Expand All

(-)a/src/meta.cc (-1 / +1 lines)
Lines 831-837 bool scaseequals(string_view a, string_view b) Link Here
831
    return true;
831
    return true;
832
}
832
}
833
833
834
#if !defined(HAVE_STRLCPY) || !HAVE_STRLCPY
834
#if !defined(HAVE_STRLCPY) || !(HAVE_STRLCPY + 0)
835
size_t strlcpy(char *tgt, const char *src, size_t tgtSize)
835
size_t strlcpy(char *tgt, const char *src, size_t tgtSize)
836
{
836
{
837
    auto p = src;
837
    auto p = src;
(-)a/src/meta.h (-1 / +1 lines)
Lines 323-329 class NoCaseStringMap : public std::map<mstring, mstring, ltstring> Link Here
323
static constexpr string_view svRN = szRN;
323
static constexpr string_view svRN = szRN;
324
static constexpr string_view svLF = "\n";
324
static constexpr string_view svLF = "\n";
325
325
326
#if !defined(HAVE_STRLCPY) || !HAVE_STRLCPY
326
#if !defined(HAVE_STRLCPY) || !(HAVE_STRLCPY + 0)
327
size_t strlcpy(char *tgt, const char *src, size_t tgtSize);
327
size_t strlcpy(char *tgt, const char *src, size_t tgtSize);
328
#endif
328
#endif
329
}
329
}

Return to bug 716564