diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2009-10-10 06:16:23 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2009-10-10 06:16:23 +0200 |
commit | 69a2548913619eb81dcb6c03e27585e02fe057cd (patch) | |
tree | 21fd934d184d8de3e0f58de8f9299da98cd2fe2e /src/rccstring.h | |
parent | 9e6ed416e3368b23c867e54dd2f7cc18f75a1c6e (diff) | |
download | librcc-69a2548913619eb81dcb6c03e27585e02fe057cd.tar.gz librcc-69a2548913619eb81dcb6c03e27585e02fe057cd.tar.bz2 librcc-69a2548913619eb81dcb6c03e27585e02fe057cd.tar.xz librcc-69a2548913619eb81dcb6c03e27585e02fe057cd.zip |
Support systems without lockf (OpenSolaris), check GTK1 headers in configure.in, complain on missing macros in autogen.sh, patches by Ivan Borzenkov and Colin Watson for eglibc compatibility
Diffstat (limited to 'src/rccstring.h')
-rw-r--r-- | src/rccstring.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/rccstring.h b/src/rccstring.h index 40bda89..8bace94 100644 --- a/src/rccstring.h +++ b/src/rccstring.h @@ -38,13 +38,9 @@ int rccStringSetLang(rcc_string string, const char *sn); int rccStringFixID(rcc_string string, rcc_context ctx); int rccStringChangeID(rcc_string string, rcc_language_id language_id); -#ifdef HAVE_STRNLEN -# ifndef strnlen -size_t strnlen(const char *str, size_t size); -# endif /* !strnlen */ -#else +#ifndef HAVE_STRNLEN int rccStrnlen(const char *str, size_t size); -#endif /* HAVE_STRNLEN */ +#endif /* !HAVE_STRNLEN */ int rccIsASCII(const char *str); size_t rccStringSizedGetChars(const char *str, size_t size); |