X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=include%2Flibiberty.h;h=a65ced9c820281ca86dec9aba29ada694e2c0378;hb=7900b17e334b114ff149c5a3da7884e6ab3f7136;hp=0bb5b81d4acb9732d926c8f7563628b42fbd313d;hpb=727b7b1864973c2645a554727afd0eaf1303673a;p=binutils-gdb.git diff --git a/include/libiberty.h b/include/libiberty.h index 0bb5b81d4ac..a65ced9c820 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -1,6 +1,6 @@ /* Function declarations for libiberty. - Copyright (C) 1997-2020 Free Software Foundation, Inc. + Copyright (C) 1997-2022 Free Software Foundation, Inc. Note - certain prototypes declared in this header file are for functions whoes implementation copyright does not belong to the @@ -643,9 +643,9 @@ extern int pwait (int, int *, int); /* Like bsearch, but takes and passes on an argument like qsort_r. */ -extern void *bsearch_r (register const void *, const void *, - size_t, register size_t, - register int (*)(const void *, const void *, void *), +extern void *bsearch_r (const void *, const void *, + size_t, size_t, + int (*)(const void *, const void *, void *), void *); #if defined(HAVE_DECL_ASPRINTF) && !HAVE_DECL_ASPRINTF @@ -713,11 +713,6 @@ extern unsigned long long int strtoull (const char *nptr, char **endptr, int base); #endif -#if defined(HAVE_DECL_STRVERSCMP) && !HAVE_DECL_STRVERSCMP -/* Compare version strings. */ -extern int strverscmp (const char *, const char *); -#endif - /* Set the title of a process */ extern void setproctitle (const char *name, ...);