summaryrefslogtreecommitdiff
path: root/libio
Commit message (Collapse)AuthorAgeFilesLines
* * gen-params: Added trailing space for 'long long int' regexp.Krister Walfridsson2000-07-232-1/+5
| | | | From-SVN: r35200
* in libiberty/ChangeLog:Alex Samuel2000-06-303-5/+11
| | | | | | | | | | | | | | | | | | | | | | | * cp-demangle.c (demangle_encoding): Accept no substitutions. (demangle_name): Handle <substitution> followed by <unqualified-template-name>. (demangle_type): Follow special substitutions with <class-enum-type> (demangle_subtitution): Set template_p for special substitutions. (main): Fix typos. in gcc/cp/ChangeLog: * mangle.c (find_substitution): Use same_type_p. (write_encoding): Don't check for substitutions. in libio/ChangeLog: * libioP.h (VTABLE_LABEL): Update for new vtable mangling. * stdstrbufs.cc (filebuf_vtable): Likewise. (stdiobuf_vtable): Likewise. From-SVN: r34811
* Revert previous patchMark Mitchell2000-06-103-11/+32
| | | | From-SVN: r34482
* libioP.h: Remove old ABI mangling code.Mark Mitchell2000-06-083-32/+11
| | | | | | | * libioP.h: Remove old ABI mangling code. * stdstrbufs.cc: Likewise. From-SVN: r34459
* libioP.h: Handle new ABI mangling.Mark Mitchell2000-06-043-4/+22
| | | | | | | * libioP.h: Handle new ABI mangling. * stdstrbufs.cc: Likewise. From-SVN: r34395
* Update.Ulrich Drepper2000-05-241-4/+9
| | | | From-SVN: r34129
* (endl): Fix bug in last change.Ulrich Drepper2000-05-241-2/+3
| | | | | | (ends): Make same change as for endl. From-SVN: r34128
* iostream.cc (endl): Verify stream can accept characters before writing its eol.Jeff Law2000-05-232-1/+8
| | | | | | | * iostream.cc (endl): Verify stream can accept characters before writing its eol. From-SVN: r34122
* bcp-1.c: Replace abort in arg of __builtin_constant_p with a generic ↵Zack Weinberg2000-05-232-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | external function. gcc/testsuite: * c-torture/execute/bcp-1.c: Replace abort in arg of __builtin_constant_p with a generic external function. * gcc.dg/20000108-1.c, gcc.dg/980211-1.c, gcc.dg/980414-1.c, gcc.dg/990119-1.c, gcc.dg/990409.c, gcc.dg/990424-1.c, gcc.dg/991230-1.c, gcc.dg/clobbers.c, gcc.dg/lineno.c, gcc.dg/noreturn-1.c, gcc.dg/trigraphs.c, gcc.dg/uninit-4.c: Prototype abort and/or exit. * gcc.dg/990407-1.c, gcc.dg/strpaste.c, gcc.dg/special/alias-1.c, gcc.dg/special/gcsec-1.c, gcc.dg/special/weak-1.c, gcc.dg/special/weak-2.c, gcc.dg/special/wkali-1.c, gcc.dg/special/wkali-2.c: Include stdlib.h. libio/tests: * tfformat.c: Include stdlib.h. From-SVN: r34110
* config.shared: Change "pic" to depend on $(PICFLAG), not on $(enable_shared).David Edelsohn2000-05-152-7/+14
| | | | | | | * config.shared: Change "pic" to depend on $(PICFLAG), not on $(enable_shared). From-SVN: r33920
* configure.in: Remove special casing for sco3.2v[45].Robert Lipe2000-05-113-4/+6
| | | | | | | | | 2000-05-11 Robert Lipe <robertlipe@usa.net> * configure.in: Remove special casing for sco3.2v[45]. * config/sco4.mt: Deleted. From-SVN: r33864
* config.table: Use mh-sparcpic for sparc*-*-*.Jakub Jelinek2000-05-112-0/+5
| | | | | | | | * config.table: Use mh-sparcpic for sparc*-*-*. * configure.in: Use mh-sparcpic for sparc*-*-*. From-SVN: r33848
* * configure.in: Indent the # of #include_next one space.Zack Weinberg2000-04-022-1/+5
| | | | From-SVN: r32871
* * configure.in: -linux-gnu*, not -linux-gnu.Jason Merrill2000-03-292-2/+6
| | | | From-SVN: r32823
* fstream.h (ifstream::ifstream): Add ios::in to mode.Martin v. Löwis2000-01-282-5/+12
| | | | | | | | | * fstream.h (ifstream::ifstream): Add ios::in to mode. (ifstream::open): Likewise. (ofstream::ofstream): Add ios::out to mode. (ofstream::open): Likewise. From-SVN: r31666
* dbz.c, dbzmain.c: Include stdlib.h.Zack Weinberg2000-01-283-12/+8
| | | | | | | | * dbz/dbz.c, dbz/dbzmain.c: Include stdlib.h. Don't declare malloc, calloc, free, atol, atoi, or errno. (errno.h was already being included.) From-SVN: r31659
* configure.in (*-*-beos*): Recognize.Fred Fish2000-01-123-0/+31
| | | | | | | * configure.in (*-*-beos*): Recognize. * config/beos.mt: New file. From-SVN: r31374
* libio.h (_IO_cookie_io_functions_t): Use _IO_off_t instead of _IO_fpos_t.Jakub Jelinek1999-12-225-34/+49
| | | | | | | | | | | | | | | | | * libio.h (_IO_cookie_io_functions_t): Use _IO_off_t instead of _IO_fpos_t. (_IO_seekoff, _IO_seekpos): Likewise. Use _IO_off64_t instead of _IO_fpos64_t. * libioP.h (_IO_seekoff_t, _IO_seekpos_t, _IO_seek_t): Likewise. (_IO_seekoff, _IO_seekpos): Likewise. (_IO_default_seekoff, _IO_default_seekpos): Likewise. (_IO_default_seek): Likewise. (_IO_file_seekoff, _IO_file_seek, _IO_str_seekoff): Likewise. * streambuf.h (streampos): Typedef to _IO_off_t resp. _IO_off64_t. * parsestream.h (class parsebuf::pos_at_line_start): Change type to _IO_off_t. From-SVN: r31068
* Add commentary:Remove seek for ios::app if not.Martin v. Löwis1999-12-211-0/+1
| | | | From-SVN: r31059
* * filebuf.cc (open): Support ios::ate if _G_HAVE_IO_FILE_OPEN.Martin v. Löwis1999-12-212-4/+16
| | | | From-SVN: r31057
* filedoalloc.c, [...]: Remove advertising clause from BSD license, pursuant withJason Merrill1999-12-155-44/+103
| | | | | | | | | * filedoalloc.c, floatio.h, iovfprintf.c, iovfscanf.c: Remove advertising clause from BSD license, pursuant with ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change From-SVN: r30947
* strstream.h (strstreambuf::streambuf): Rename parameters to avoid shadow ↵Martin v. Löwis1999-12-153-5/+11
| | | | | | | | | | warning. * strstream.h (strstreambuf::streambuf): Rename parameters to avoid shadow warning. * stream.h (WS): Likewise. From-SVN: r30941
* * editbuf.cc, parsestream.cc, pfstream.cc: Include string.h.Jeffrey A Law1999-09-304-0/+7
| | | | From-SVN: r29725
* configure.in: Recognize target *vxworks* and add fragment vxworks.mt.Ulrich Drepper1999-09-274-8/+21
| | | | | | | | * configure.in: Recognize target *vxworks* and add fragment vxworks.mt. * config/vxworks.mt: New file. * gen-params: Let configure override HAVE_PRINTF_FP. From-SVN: r29679
* Kill RCSid strings.Jeff Law1999-09-272-8/+0
| | | | From-SVN: r29678
* * config/mpeix.mt: New for MPEiX port.Mark Klein1999-09-132-0/+24
| | | | From-SVN: r29374
* * configure.in: Add mpeix.mt make fragment.Mark Klein1999-09-082-0/+5
| | | | From-SVN: r29202
* dummy checkin to prevent merge lossageJeff Law1999-09-041-1/+1
| | | | From-SVN: r29102
* streambuf.h (ios::streamsize): Declare as _IO_ssize_t, as in the global scope.Alexandre Oliva1999-08-092-1/+6
| | | | | | | * streambuf.h (ios::streamsize): Declare as _IO_ssize_t, as in the global scope. From-SVN: r28604
* iostream.cc: Add missing calls to isfx and setup a cleanup region for the ↵Andreas Schwab1999-08-076-7/+94
| | | | | | | | | | | | | locked stream. * iostream.cc: Add missing calls to isfx and setup a cleanup region for the locked stream. * iostream.h: Likewise. * isgetline.cc: Likewise. * isgetsb.cc: Likewise. * isscan.cc: Likewise. From-SVN: r28573
* configure.in (post-target): Use "$(topsrcdir)", not "$(srcdir)/..".Hans-Peter Nilsson1999-06-282-1/+5
| | | | | | | 8 * configure.in (post-target): Use "$(topsrcdir)", not "$(srcdir)/..". From-SVN: r27836
* libio.exp (test_libio): Use additional_flags, not additional_options.Mark Mitchell1999-06-232-1/+6
| | | | | | | * lib/libio.exp (test_libio): Use additional_flags, not additional_options. From-SVN: r27716
* * configure.in: Added DG/UX target fragmentEric Raskin1999-06-012-1/+6
| | | | From-SVN: r27294
* * libio/dgux.mt: New file for DG/UX configuration of libioEric Raskin1999-05-302-0/+29
| | | | From-SVN: r27248
* libchill, libf2c, libobjc:Jeff Law1999-05-192-13/+5
| | | | | | | | | | | * configure.in (AC_PREREQ): Update to 2.13. (AC_EXEEXT): Call to find possible file extension. (compiler_name): Use. * configure: Regenerate. libio, libstdc++ * configure.in: Test for ${compiler_name}.exe as well. From-SVN: r27050
* * libioP.h: Only include libc-lock.h if _IO_MTSAFE_IO is defined.Mark Kettenis1999-05-172-6/+13
| | | | From-SVN: r26980
* configure.in (compiler_name): Don't do the skip-this-dir thing if we're ↵Jason Merrill1999-05-122-1/+8
| | | | | | | | | reconfiguring. * configure.in (compiler_name): Don't do the skip-this-dir thing if we're reconfiguring. From-SVN: r26899
* * streambuf.h (ios::~ios): Use operator delete[] to remove _arrays.Nathan Sidwell1999-04-292-1/+7
| | | | From-SVN: r26691
* Fixed some old ChangeLog entries I wrote before becoming aware of the GNUAlexandre Oliva1999-04-271-3/+3
| | | | | | coding standards. From-SVN: r26679
* filedoalloc.c (_POSIX_SOURCE): Remove definition.Mumit Khan1999-04-127-11/+14
| | | | | | | | | | | * filedoalloc.c (_POSIX_SOURCE): Remove definition. * fileops.c (_POSIX_SOURCE): Likewise. * iopopen.c (_POSIX_SOURCE): Likewise. * procbuf.cc (_POSIX_SOURCE): Likewise. * libioP.h (_POSIX_SOURCE): And define it here. * stdiostream.cc: Include libioP.h before others. From-SVN: r26380
* * configure.in: Check cygwin*, not cygwin32*.Geoffrey Noer1999-04-062-1/+5
| | | | From-SVN: r26235
* configure (gxx_include_dir): Removed.H.J. Lu1999-04-023-0/+35
| | | | | | | | | | | | * configure (gxx_include_dir): Removed. * configure.in (gxx_include_dir): Handle it. * Makefile.in: Likewise. * libio/configure.in (gxx_include_dir): Handle it. * libio/Makefile.in: Likewise. * libstdc++/configure.in (gxx_include_dir): Handle it. * libstdc++/Makefile.in: Likewise. From-SVN: r26126
* configure.in (EXEEXT): Define.Mumit Khan1999-03-241-3/+18
| | | | | | | | 0 * configure.in (EXEEXT): Define. (compiler_name): Use. From-SVN: r25950
* configure.in (EXEEXT): Define.Mumit Khan1999-03-241-0/+5
| | | | | | | | 8 * configure.in (EXEEXT): Define. (compiler_name): Use. From-SVN: r25949
* * gen-params (CONFIG_NM): test ... -o ... is not portableAlexandre Oliva1999-03-232-2/+7
| | | | From-SVN: r25935
* configure.in: Cleanup and add mh-*pic handling for arm, powerpcFranz Sirl1999-03-102-5/+11
| | | | | | | Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> * configure.in: Cleanup and add mh-*pic handling for arm, powerpc From-SVN: r25690
* linuxlibc1.mt (MT_CFLAGS): Add -D_G_STDIO_USES_LIBIO -D_G_HAVE_WEAK_SYMBOL.H.J. Lu1999-03-0410-13/+36
| | | | | | | | | | | | | | | | * config/linuxlibc1.mt (MT_CFLAGS): Add -D_G_STDIO_USES_LIBIO -D_G_HAVE_WEAK_SYMBOL. * genops.c: Add the proper weak alias if _G_STDIO_USES_LIBIO and _G_HAVE_WEAK_SYMBOL are defined. * iofclose.c: Likewise. * iofeof.c: Likewise. * ioferror.c: Likewise. * iogetc.c: Likewise. * ioputc.c: Likewise. * iovsprintf.c: Likewise. * iovsscanf.c: Likewise. From-SVN: r25590
* * gen-params (VTABLE_LABEL_PREFIX): Handle windows32.Mumit Khan1999-02-102-4/+12
| | | | From-SVN: r25130
* Makefile.in (iostream.list): Remove dependency on stamp-picdir.H.J. Lu1999-02-033-3/+18
| | | | | | | | | | | | * Makefile.in (iostream.list): Remove dependency on stamp-picdir. ($(LIBIOSTREAM_DEP)): Depend on stamp-picdir. ($(LIBIO_FILES)): Similarly. * config.shared (all): Make $(PICDIR) concurrent. Co-Authored-By: Jeffrey A Law <law@cygnus.com> From-SVN: r25012
* Undo previous change. Ulrich wants the problem hanled differently.Jeff Law1999-01-302-8/+1
| | | | From-SVN: r24918