aboutsummaryrefslogtreecommitdiff
path: root/libiberty
AgeCommit message (Collapse)AuthorFilesLines
2000-01-04pexecute.c: Conditionally include string.h.Mumit Khan2-1/+48
2000-01-04 Mumit Khan <khan@xraylith.wisc.edu> * pexecute.c: Conditionally include string.h. (fix_argv): Handle embedded whitespace in args for Mingw32. From-SVN: r31214
2000-01-04Update copyrightKaveh Ghazi1-1/+1
From-SVN: r31206
2000-01-04configure.in (ac_libiberty_warn_cflags): Turn on warnings if we're using gcc.Kaveh R. Ghazi4-87/+101
* configure.in (ac_libiberty_warn_cflags): Turn on warnings if we're using gcc. * Makefile.in (COMPILE.c): Add @ac_libiberty_warn_cflags@ From-SVN: r31205
1999-12-27vasprintf.c (int_vasprintf): Don't re-read the format character as this ↵Geoff Keating2-0/+6
mishandles strings like '%%s'. * vasprintf.c (int_vasprintf): Don't re-read the format character as this mishandles strings like '%%s'. From-SVN: r31102
1999-12-05splay-tree.h (struct splay_tree_node): Rename to ...Mark Mitchell2-2/+9
* splay-tree.h (struct splay_tree_node): Rename to ... (struct splay_tree_node_s): ... this. (struct splay_tree): Rename to ... (struct splay_tree_s): ... this. * splay-tree.c (splay_tree_new): Use struct splay_tree_node_s rather than struct splay_tree_node. (splay_tree_insert): Use struct splay_tree_s rather than struct splay_tree. From-SVN: r30790
1999-11-28* hashtab.c (sys/types.h): File included.Philippe De Muyter2-0/+6
From-SVN: r30683
1999-11-22strtoul.c, [...]: Remove advertising clause from BSD licenseJason Merrill4-19/+33
* strtoul.c, strtol.c, random.c: Remove advertising clause from BSD license From-SVN: r30620
1999-11-15Revert last change.Jeff Law2-8/+0
Revert last change. HJ's message meant "code like this already exists in libiberty/libio", not "code like this needs to be added to libiberty/libio". What a waste of my time. From-SVN: r30534
1999-11-15* Makefile.in (LIBOBJS): Depend on stamp-picdir.Jeffrey A Law2-0/+8
From-SVN: r30533
1999-11-10* hashtab.c: Include stdio.h.Jeffrey A Law2-0/+6
From-SVN: r30475
1999-11-08* hashtab.c (traverse_hash_table): Protect prototype with PARAMS.Jeffrey A Law2-1/+5
From-SVN: r30453
1999-11-02* xstrdup (sys/types.h): Include this file.Philippe De Muyter2-0/+5
From-SVN: r30347
1999-10-28Makefile.in (SUBDIRS): New macro.Nathan Sidwell2-4/+21
* Makefile.in (SUBDIRS): New macro. (mostlyclean, clean, distclean, maintainer-clean): Adjust to avoid multiple subdirectory cleaning. (*-subdir): Use SUBDIRS. From-SVN: r30229
1999-10-25cplus-dem.c: Move declarations of standard_symbol_characters and ↵Jim Kingdon2-6/+12
hp_symbol_characters inside... * cplus-dem.c: Move declarations of standard_symbol_characters and hp_symbol_characters inside #ifdef MAIN to avoid compiler warnings. From-SVN: r30175
1999-10-23hashtab.c (find_hash_table_entry): When returning a DELETED_ENTRY slot, ↵Zack Weinberg2-1/+45
change it to EMPTY_ENTRY first. 1999-10-23 08:51 -0700 Zack Weinberg <zack@bitmover.com> * hashtab.c (find_hash_table_entry): When returning a DELETED_ENTRY slot, change it to EMPTY_ENTRY first. (clear_hash_table_slot): New function which deletes an entry by its position in the table, not its value. (traverse_hash_table): New function which calls a hook function for every live entry in the table. * hashtab.h: Give hash_table_t a struct tag. Add prototypes for clear_hash_table_slot and traverse_hash_table. Correct prototype of all_hash_table_collisions. From-SVN: r30138
1999-10-19cplus-dem.c (INTBUF_SIZE): New macro.Mark Mitchell3-107/+172
* cplus-dem.c (INTBUF_SIZE): New macro. (string_append_template_idx): New function. (demangle_expression): Likewise. (demangle_integral_value): Use it. (demangle_real_value): New function, split out from ... (demangle_template_value_parm): ... here. Use string_append_template_idx. Use demangle_real_value. (demangle_template): Use string_append_template_idx. (demangle_qualified): Use consume_count_with_underscores. (get_count): Tweak formatting. (do_type): Use string_append_template_idx. From-SVN: r30091
1999-10-18* calloc.c: Add a public domain notice.Kaveh R. Ghazi2-0/+7
From-SVN: r30069
1999-10-18* setenv.c (sys/types.h, stdio.h): Include those files unconditionaly.Philippe De Muyter2-0/+6
From-SVN: r30067
1999-10-15Makefile.in (CFILES): Add hashtab.cVladimir Makarov3-3/+302
* Makefile.in (CFILES): Add hashtab.c (REQUIRED_OFILES): Add hashtab.o (hashtab.o): Add dependencies. * hashtab.c: New file From-SVN: r30012
1999-10-13basename.c (DIR_SEPARATOR): New macro.Mumit Khan2-5/+42
* basename.c (DIR_SEPARATOR): New macro. (DIR_SEPARATOR_2): Likewise. (HAVE_DOS_BASED_FILESYSTEM): Likewise. (IS_DIR_SEPARATOR): Likewise. (main): Handle MSDOS style pathname. From-SVN: r29937
1999-10-11cplus-dem.c (do_type): Handle pointer to member types whose enclosing ↵Mark Mitchell3-1/+23
classes have namespace scope. * cplus-dem.c (do_type): Handle pointer to member types whose enclosing classes have namespace scope. From-SVN: r29901
1999-10-10* config.table: Provide a backup shell for executing move-if-change.Marc Espie2-1/+5
From-SVN: r29883
1999-10-03xmalloc.c (xmalloc): Fix spelling error.Mark Mitchell2-6/+11
* xmalloc.c (xmalloc): Fix spelling error. (xcalloc, xrealloc): Likewise. From-SVN: r29779
1999-10-02cplus-dem.c (fancy_abort, [...]): Add prototype.Kaveh R. Ghazi2-8/+39
* cplus-dem.c (fancy_abort, demangle_integral_value, demangle_arm_hp_template, recursively_demangle, standard_symbol_characters, hp_symbol_characters, main): Add prototype. (program_name, program_version, fatal): Constify a char*. (usage, fatal): Mark with ATTRIBUTE_NORETURN. (main): Call return, not exit. From-SVN: r29776
1999-09-27alloca-conf.h (alloca): Don't use Gcc builtin or <alloca.h>.Richard Henderson6-8/+51
* alloca-conf.h (alloca) [C_ALLOCA]: Don't use Gcc builtin or <alloca.h>. * clock.c (GNU_HZ): New definition. (clock): Use it. * getruntime.c: Likewise. * config.table: Use mh-beos. * config/mh-beos: New file. From-SVN: r29680
1999-09-25libiberty.h (make_temp_file): Add a prototype.Kaveh R. Ghazi2-4/+6
include: * libiberty.h (make_temp_file): Add a prototype. libiberty: * choose-temp.c: Remove obsolete comment about gcc. (make_temp_file): Constify a char*. gcc: * collect2.c (make_temp_file): Don't prototype. * gcc.c (make_temp_file): Likewise. * mips.c (mips_make_temp_file): Renamed from `make_temp_file'. From-SVN: r29662
1999-09-09* xmemdup.c: Include sys/types.h.Kaveh R. Ghazi2-0/+6
From-SVN: r29218
1999-09-08xmemdup.c: New xmemdup function.Jeff Garzik5-4/+30
* xmemdup.c: New xmemdup function. * Makefile.in, makefile.vms, vmsbuild.com: Use xmemdup.[co]. From-SVN: r29199
1999-09-07config.table: Add openedition target.Linas Vepstas3-0/+9
* config.table: Add openedition target. * config/mh-openedition: New file. From-SVN: r29188
1999-09-02* pexecute.c (pexecute): Fill in temp_base when needed.Marc Espie2-0/+6
From-SVN: r29053
1999-08-31* getpwd.c: Check HAVE_GETCWD before defining it away.Richard Henderson2-5/+7
From-SVN: r29013
1999-08-31Makefile.in (CFILES): Add calloc.c and getpwd.c.Kaveh R. Ghazi6-6/+138
* Makefile.in (CFILES): Add calloc.c and getpwd.c. (REQUIRED_OFILES): Add getpwd.o. (getpwd.o): Add target. * configure.in (AC_PREREQ): Bump to 2.13. (AC_CHECK_HEADERS): Add check for <sys/stat.h>. * getpwd.c: New file, moved here from gcc. From-SVN: r28996
1999-08-25Warning fixes:Kaveh R. Ghazi2-5/+15
* cplus-dem.c (gnu_special): Cast a `size_t' to `long' when comparing against a signed quantity. (arm_special): Likewise. (demangle_fund_type): Likewise. (do_hpacc_template_const_value): Mark parameter `work' with ATTRIBUTE_UNUSED. (main): Constify variable `valid_symbols'. From-SVN: r28859
1999-08-24* strtoul.c (strtoul): Add parentheses around && within ||.Philippe De Muyter2-1/+5
From-SVN: r28819
1999-08-06Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix, libdir, libsubdir ↵Daniel Jacobowitz2-1/+11
and tooldir. * Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix, libdir, libsubdir and tooldir. Applied in libchill, libf2c, libiberty and libobjc From-SVN: r28569
1999-08-02* splay-tree.h (splay_tree_insert): Return the new node.Mark Mitchell2-2/+8
From-SVN: r28389
1999-07-26splay-tree.c (splay_tree_insert): Add initialization to avoid warning.Ian Lance Taylor2-2/+7
* splay-tree.c (splay_tree_insert): Add initialization to avoid warning. From-SVN: r28269
1999-07-14argv.c: Include stdlib.h and string.h instead of prototyping directly.Richard Henderson3-6/+11
* argv.c: Include stdlib.h and string.h instead of prototyping directly. * choose-temp.c: Conditionally include string.h. From-SVN: r28099
1999-07-12* Makefile.in (NEEDED): Add bcmp, bcopy, bzero.Jason Merrill2-1/+5
From-SVN: r28071
1999-07-07tweakJason Merrill1-5/+6
From-SVN: r28003
1999-07-07Makefile.in (needed-list): Only include stuff we actually need for libstdc++.Jason Merrill2-6/+18
* Makefile.in (needed-list): Only include stuff we actually need for libstdc++. From-SVN: r27999
1999-06-24Whoops. Revert patch applied to the wrong tre.Jeff Law3-9/+0
From-SVN: r27737
1999-06-24setenv.c (sys/types.h, stdio.h): Files included.Philippe De Muyter3-0/+9
* setenv.c (sys/types.h, stdio.h): Files included. * xstrdup.c (sys/types.h): File included. For the gcc-2.95 branch only. Not to be migrated into the mainline tree because it is incomplete. From-SVN: r27736
1999-06-20configure.in (checkfuncs): Add gettimeofday.Andreas Schwab4-4/+21
* configure.in (checkfuncs): Add gettimeofday. * config.in, configure: Regenerated. From-SVN: r27647
1999-06-20configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if the test fails.Mumit Khan2-45/+61
p * configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if the test fails. * configure: Regenerate. From-SVN: r27642
1999-06-20configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if the test fails.Mumit Khan1-0/+6
� * configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if the test fails. * configure: Regenerate. From-SVN: r27641
1999-06-10Mike Stump <mrs@wrs.com>Mike Stump2-0/+6
Mike Stump <mrs@wrs.com> * Makefile.in (setenv.o): Add config.h dep for setenv.o to fix parallel builds. From-SVN: r27477
1999-05-28putenv.c: Include ansidecl.h to define `const'.Kaveh R. Ghazi3-1/+10
* putenv.c: Include ansidecl.h to define `const'. * setenv.c: Likewise. From-SVN: r27221
1999-05-26Forgot to commit.Jeff Law1-0/+6
From-SVN: r27172
1999-05-25Makefile.in (CFILES): Add putenv.c and setenv.c.Jeff Law5-73/+302
* Makefile.in (CFILES): Add putenv.c and setenv.c. * configure.in (funcs): Add putenv and setenv. (AC_CHECK_FUNCS): Check for putenv and setenv. * configure: Rebuilt. * putenv.c setenv.c: New files. [[Split portion of a mixed commit.]] From-SVN: r27162.2