diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-21 15:09:10 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-01-21 08:52:09 -0700 |
commit | 281e9aa624806dfde63d006d7706dd84d54788d1 (patch) | |
tree | 323d21ed7f7a1678244bcdf44628226768fcce39 /include/libiberty.h | |
parent | 40101021d43f0ed6da0fd8ce11267bbcce0dac15 (diff) | |
download | gdb-281e9aa624806dfde63d006d7706dd84d54788d1.zip gdb-281e9aa624806dfde63d006d7706dd84d54788d1.tar.gz gdb-281e9aa624806dfde63d006d7706dd84d54788d1.tar.bz2 |
[PATCH] include * ansidecl.h (ANSI_PROTOTYPES, PTRCONST, LONG_DOUBLE, PARAMS) (VPARAMS, VA_START, VA_OPEN, VA_CLOSE, VA_FIXEDARG, CONST) (VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID, AND, DOTS) (NOARGS): Don't define. * libiberty.h (expandargv, writeargv): Don't use PARAMS. libiberty * _doprint.c (checkit): Use stdarg, not VA_* macros. * asprintf.c (asprintf): Use stdarg, not VA_* macros. * concat.c (concat_length, concat_copy, concat_copy2, concat) (reconcat): Use stdarg, not VA_* macros. * snprintf.c (snprintf): Use stdarg, not VA_* macros. * vasprintf.c (checkit): Use stdarg, not VA_* macros. * vsnprintf.c (checkit): Use stdarg, not VA_* macros.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206881 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include/libiberty.h')
-rw-r--r-- | include/libiberty.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libiberty.h b/include/libiberty.h index f2cf573..78c42eb 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -1,7 +1,7 @@ /* Function declarations for libiberty. Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, - 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. + 2006, 2007, 2008, 2009, 2010, 2011, 2013 Free Software Foundation, Inc. Note - certain prototypes declared in this header file are for functions whoes implementation copyright does not belong to the @@ -85,11 +85,11 @@ extern char **dupargv (char **) ATTRIBUTE_MALLOC; /* Expand "@file" arguments in argv. */ -extern void expandargv PARAMS ((int *, char ***)); +extern void expandargv (int *, char ***); /* Write argv to an @-file, inserting necessary quoting. */ -extern int writeargv PARAMS ((char **, FILE *)); +extern int writeargv (char **, FILE *); /* Return the number of elements in argv. */ |