Changeset 1973 for binutils/trunk/include/libiberty.h
- Timestamp:
- Feb 6, 2017, 1:00:00 PM (8 years ago)
- Location:
- binutils/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
binutils/trunk ¶
-
Property svn:mergeinfo
set to
/binutils/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
TabularUnified binutils/trunk/include/libiberty.h ¶
r1581 r1973 1 1 /* Function declarations for libiberty. 2 2 3 Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 4 2006, 2007, 2008, 2009, 2010, 2011, 2013 Free Software Foundation, Inc. 3 Copyright (C) 1997-2016 Free Software Foundation, Inc. 5 4 6 5 Note - certain prototypes declared in this header file are for … … 82 81 freeargv to free the vector. */ 83 82 84 extern char **dupargv (char * *) ATTRIBUTE_MALLOC;83 extern char **dupargv (char * const *) ATTRIBUTE_MALLOC; 85 84 86 85 /* Expand "@file" arguments in argv. */ … … 90 89 /* Write argv to an @-file, inserting necessary quoting. */ 91 90 92 extern int writeargv (char * *, FILE *);91 extern int writeargv (char * const *, FILE *); 93 92 94 93 /* Return the number of elements in argv. */ 95 94 96 extern int countargv (char **);95 extern int countargv (char * const *); 97 96 98 97 /* Return the last component of a path name. Note that we can't use a … … 228 227 const char *) ATTRIBUTE_MALLOC; 229 228 229 /* Returns a pointer to a directory path suitable for creating temporary 230 files in. */ 231 232 extern const char *choose_tmpdir (void) ATTRIBUTE_RETURNS_NONNULL; 233 230 234 /* Choose a temporary directory to use for scratch files. */ 231 235 … … 618 622 extern int pwait (int, int *, int); 619 623 620 #if !HAVE_DECL_ASPRINTF624 #if defined(HAVE_DECL_ASPRINTF) && !HAVE_DECL_ASPRINTF 621 625 /* Like sprintf but provides a pointer to malloc'd storage, which must 622 626 be freed by the caller. */ … … 624 628 extern int asprintf (char **, const char *, ...) ATTRIBUTE_PRINTF_2; 625 629 #endif 630 631 /* Like asprintf but allocates memory without fail. This works like 632 xmalloc. */ 633 634 extern char *xasprintf (const char *, ...) ATTRIBUTE_MALLOC ATTRIBUTE_PRINTF_1; 626 635 627 636 #if !HAVE_DECL_VASPRINTF … … 632 641 #endif 633 642 643 /* Like vasprintf but allocates memory without fail. This works like 644 xmalloc. */ 645 646 extern char *xvasprintf (const char *, va_list) ATTRIBUTE_MALLOC ATTRIBUTE_PRINTF(1,0); 647 634 648 #if defined(HAVE_DECL_SNPRINTF) && !HAVE_DECL_SNPRINTF 635 649 /* Like sprintf but prints at most N characters. */ … … 644 658 #if defined (HAVE_DECL_STRNLEN) && !HAVE_DECL_STRNLEN 645 659 extern size_t strnlen (const char *, size_t); 660 #endif 661 662 #if defined(HAVE_DECL_STRVERSCMP) && !HAVE_DECL_STRVERSCMP 663 /* Compare version strings. */ 664 extern int strverscmp (const char *, const char *); 665 #endif 666 667 #if defined(HAVE_DECL_STRTOL) && !HAVE_DECL_STRTOL 668 extern long int strtol (const char *nptr, 669 char **endptr, int base); 670 #endif 671 672 #if defined(HAVE_DECL_STRTOUL) && !HAVE_DECL_STRTOUL 673 extern unsigned long int strtoul (const char *nptr, 674 char **endptr, int base); 675 #endif 676 677 #if defined(HAVE_LONG_LONG) && defined(HAVE_DECL_STRTOLL) && !HAVE_DECL_STRTOLL 678 __extension__ 679 extern long long int strtoll (const char *nptr, 680 char **endptr, int base); 681 #endif 682 683 #if defined(HAVE_LONG_LONG) && defined(HAVE_DECL_STRTOULL) && !HAVE_DECL_STRTOULL 684 __extension__ 685 extern unsigned long long int strtoull (const char *nptr, 686 char **endptr, int base); 646 687 #endif 647 688
Note:
See TracChangeset
for help on using the changeset viewer.