diff options
author | DJ Delorie <dj@delorie.com> | 2001-04-04 01:16:27 +0000 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2001-04-04 01:16:27 +0000 |
commit | da534bef4f47238e3e3a00b54bb97718cdf302aa (patch) | |
tree | f6026e4549263e2c97d74cd88369017ea0cb2402 /libiberty | |
parent | 0d409dbffa686dc9fb5bc54d3ecbdb805178a9b2 (diff) | |
download | gdb-da534bef4f47238e3e3a00b54bb97718cdf302aa.tar.gz |
merge from gcc
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/make-temp-file.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index a2b39ae80a1..79bef792c20 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2001-04-03 Zack Weinberg <zackw@stanford.edu> + + * make-temp-file.c (try): Inline. + 2001-02-28 Richard Henderson <rth@redhat.com> * Makefile.in (make-temp-file.o): Depend on config.h. diff --git a/libiberty/make-temp-file.c b/libiberty/make-temp-file.c index 67efed16a58..f3e1d10e9a7 100644 --- a/libiberty/make-temp-file.c +++ b/libiberty/make-temp-file.c @@ -61,9 +61,9 @@ extern int mkstemps PARAMS ((char *, int)); If success, DIR is returned. Otherwise NULL is returned. */ -static const char *try PARAMS ((const char *, const char *)); +static inline const char *try PARAMS ((const char *, const char *)); -static const char * +static inline const char * try (dir, base) const char *dir, *base; { |