Ignore:
Timestamp:
Feb 6, 2017, 1:00:00 PM (8 years ago)
Author:
Silvan Scherrer
Message:

binutils: update trunk to version 2.27

Location:
binutils/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binutils/trunk

  • TabularUnified binutils/trunk/include/libiberty.h

    r1581 r1973  
    11/* Function declarations for libiberty.
    22
    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.
    54   
    65   Note - certain prototypes declared in this header file are for
     
    8281   freeargv to free the vector.  */
    8382
    84 extern char **dupargv (char **) ATTRIBUTE_MALLOC;
     83extern char **dupargv (char * const *) ATTRIBUTE_MALLOC;
    8584
    8685/* Expand "@file" arguments in argv.  */
     
    9089/* Write argv to an @-file, inserting necessary quoting.  */
    9190
    92 extern int writeargv (char **, FILE *);
     91extern int writeargv (char * const *, FILE *);
    9392
    9493/* Return the number of elements in argv.  */
    9594
    96 extern int countargv (char**);
     95extern int countargv (char * const *);
    9796
    9897/* Return the last component of a path name.  Note that we can't use a
     
    228227                                                const char *) ATTRIBUTE_MALLOC;
    229228
     229/* Returns a pointer to a directory path suitable for creating temporary
     230   files in.  */
     231
     232extern const char *choose_tmpdir (void) ATTRIBUTE_RETURNS_NONNULL;
     233
    230234/* Choose a temporary directory to use for scratch files.  */
    231235
     
    618622extern int pwait (int, int *, int);
    619623
    620 #if !HAVE_DECL_ASPRINTF
     624#if defined(HAVE_DECL_ASPRINTF) && !HAVE_DECL_ASPRINTF
    621625/* Like sprintf but provides a pointer to malloc'd storage, which must
    622626   be freed by the caller.  */
     
    624628extern int asprintf (char **, const char *, ...) ATTRIBUTE_PRINTF_2;
    625629#endif
     630
     631/* Like asprintf but allocates memory without fail. This works like
     632   xmalloc.  */
     633
     634extern char *xasprintf (const char *, ...) ATTRIBUTE_MALLOC ATTRIBUTE_PRINTF_1;
    626635
    627636#if !HAVE_DECL_VASPRINTF
     
    632641#endif
    633642
     643/* Like vasprintf but allocates memory without fail. This works like
     644   xmalloc.  */
     645
     646extern char *xvasprintf (const char *, va_list) ATTRIBUTE_MALLOC ATTRIBUTE_PRINTF(1,0);
     647
    634648#if defined(HAVE_DECL_SNPRINTF) && !HAVE_DECL_SNPRINTF
    635649/* Like sprintf but prints at most N characters.  */
     
    644658#if defined (HAVE_DECL_STRNLEN) && !HAVE_DECL_STRNLEN
    645659extern size_t strnlen (const char *, size_t);
     660#endif
     661
     662#if defined(HAVE_DECL_STRVERSCMP) && !HAVE_DECL_STRVERSCMP
     663/* Compare version strings.  */
     664extern int strverscmp (const char *, const char *);
     665#endif
     666
     667#if defined(HAVE_DECL_STRTOL) && !HAVE_DECL_STRTOL
     668extern long int strtol (const char *nptr,
     669                        char **endptr, int base);
     670#endif
     671
     672#if defined(HAVE_DECL_STRTOUL) && !HAVE_DECL_STRTOUL
     673extern 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__
     679extern 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__
     685extern unsigned long long int strtoull (const char *nptr,
     686                                        char **endptr, int base);
    646687#endif
    647688
Note: See TracChangeset for help on using the changeset viewer.