diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-07 04:24:20 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-07 04:24:20 +0000 |
commit | 38c4149978e1638a6da9c9e3f31dfc85ee8d4d57 (patch) | |
tree | 6e6cc6a956154ca32ba5d6f69e0eeaf4c817e7e2 /include/libiberty.h | |
parent | daaa1431ab75938df6a0289387638a29d723f3b7 (diff) | |
download | gcc-38c4149978e1638a6da9c9e3f31dfc85ee8d4d57.tar.gz |
Sync
* Add symcat file.
* libiberty.h expose basename prototype on more systems
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26238 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include/libiberty.h')
-rw-r--r-- | include/libiberty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libiberty.h b/include/libiberty.h index 86fec2dd656..cf313662ef4 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -36,7 +36,7 @@ extern char **dupargv PARAMS ((char **)); across different systems, sometimes as "char *" and sometimes as "const char *" */ -#if defined(__GNU_LIBRARY__ ) || defined (__linux__) +#if defined (__GNU_LIBRARY__ ) || defined (__linux__) || defined (__FreeBSD__) || defined (__CYGWIN__) || defined (__CYGWIN32__) extern char *basename PARAMS ((const char *)); #else extern char *basename (); |