diff options
author | Geoffrey Keating <geoffk@geoffk.org> | 2005-06-21 00:28:25 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@geoffk.org> | 2005-06-21 00:28:25 +0000 |
commit | 15b15f49cd5c10e4e9ea92f03f876f29077c0b65 (patch) | |
tree | b5a1671917fb0f54bce24b7c12b6278624077cc8 /include | |
parent | 1d74c8ce77cc4307c05b3591202dfe63e584dc07 (diff) | |
download | newlib-15b15f49cd5c10e4e9ea92f03f876f29077c0b65.zip newlib-15b15f49cd5c10e4e9ea92f03f876f29077c0b65.tar.gz newlib-15b15f49cd5c10e4e9ea92f03f876f29077c0b65.tar.bz2 |
Index: include/ChangeLog
2005-06-20 Geoffrey Keating <geoffk@apple.com>
* libiberty.h (strverscmp): Prototype.
Index: libiberty/ChangeLog
2005-06-20 Geoffrey Keating <geoffk@apple.com>
* strverscmp.c: New.
* Makefile.in (CFILES): Add strverscmp.c.
(CONFIGURED_OFILES): Add strverscmp.o.
(strverscmp.o): New rule.
(stamp-functions): Add $(srcdir) to files in source directory.
* configure.ac (funcs): Add strverscmp.
(AC_CHECK_FUNCS): Add strverscmp.
* configure: Regenerate.
* functions.texi: Regenerate.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/libiberty.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index fab3d9c..107913d 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2005-06-20 Geoffrey Keating <geoffk@apple.com> + + * libiberty.h (strverscmp): Prototype. + 2005-06-17 Jakub Jelinek <jakub@redhat.com> * elf/external.h (GRP_ENTRY_SIZE): Define. diff --git a/include/libiberty.h b/include/libiberty.h index 4b0d532..6fb5e19 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -540,6 +540,11 @@ extern int snprintf (char *, size_t, const char *, ...) ATTRIBUTE_PRINTF_3; extern int vsnprintf (char *, size_t, const char *, va_list) ATTRIBUTE_PRINTF(3,0); #endif +#if defined(HAVE_DECL_STRVERSCMP) && !HAVE_DECL_STRVERSCMP +/* Compare version strings. */ +extern int strverscmp (const char *, const char *); +#endif + #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0])) /* Drastically simplified alloca configurator. If we're using GCC, |