OSDN Git Service

2006-08-22 Eric Blake <ebb9@byu.net>
[pf3gnuchains/pf3gnuchains4x.git] / newlib / ChangeLog
1 2006-08-22  Eric Blake  <ebb9@byu.net>
2
3         * libc/posix/popen.c (popen): Don't close output end of pipe in
4         child if stdout was closed on entry.
5         [HAVE_FCNTL]: In parent, mark file as close-on-exec, per POSIX.
6
7 2006-08-19  Ramana Radhakrishnan  <ramana.r@gmail.com>
8
9         * sys/types.h: Correct syntax error caused by missing '\' on #ifdef
10         line.
11
12 2006-08-17  Brian Ford  <Brian.Ford@FlightSafety.com>
13
14         * libc/time/gmtime.c: Correct man page; clock is not a
15         local time and no conversion occurs.
16
17 2006-08-16  Joel Schopp  <jschopp@austin.ibm.com>
18
19         * configure.host (newlib_cflags) [spu]: Add special compiler
20         options to reduce size.
21
22 2006-08-16  Joel Schopp  <jschopp@austin.ibm.com>
23
24         * configure.host: Add spu support.
25         * libc/include/stdint.h: Ditto.
26         * libc/include/machine/ieeefp.h: Ditto.
27         * libc/include/machine/setjmp.h: Ditto.
28         * libc/include/sys/config.h: Ditto.
29         * libc/include/sys/types.h: Ditto.
30         * libc/machine/spu/Makefile.am: New file.
31         * libc/machine/spu/Makefile.in: Ditto.
32         * libc/machine/spu/aclocal.m4: Ditto.
33         * libc/machine/spu/configure: Ditto.
34         * libc/machine/spu/configure.in: Ditto.
35         * libc/machine/spu/memcpy.c: Ditto.
36         * libc/machine/spu/setjmp.S: Ditto.
37
38 2006-08-03  J"orn Rennecke  <joern.rennecke@st.com>
39
40         * dtoa.c (dtoa_r): Handle the denormalized _DOUBLE_IS_32BITS case
41         properly.
42
43 2006-08-01  Jeff Johnston  <jjohnstn@redhat.com>
44
45         * libc/Makefile.am: Add libc_TEXINFOS dependency on
46         generated .texi files.
47         * libm/Makefile.am: Add libm_TEXINFOS dependency on
48         generated .texi files.
49         * libc/Makefile.in: Regenerated.
50         * libm/Makefile.in: Ditto.
51
52 2006-08-01  Thiemo Seufer  <ths@mips.com>
53             Nigel Stephens  <nigel@mips.com>
54
55         * libc/include/sys/config.h (__ATTRIBUTE_IMPURE_PTR__): For MIPS
56         define this to force _impure_ptr to live in the .sdata section.
57
58 2006-07-31  Jeff Johnston  <jjohnstn@redhat.com>
59
60         * acinclude.m4: Check for readelf tool.
61         * configure.in: Use ${READELF} instead of hard-coding.
62         * Regenerate all aclocal.m4, Makefile.in, and configure files.
63
64 2006-07-31  Jeff Johnston  <jjohnstn@redhat.com>        
65
66         * libc/sys/linux/mmap.c: Remove include of sys/mman.h
67         to avoid conflict with newer glibc's revision of mremap.
68
69 2006-07-05  Jeff Johnston  <jjohnstn@redhat.com>        
70
71         * libc/stdlib/mprec.h [_DOUBLE_IS_32BITS]: Turn off C99 hex 
72         floating-point format support.  Also redefine
73         dword0 and dword1 macros.
74         * libc/stdlib/strtod.c: Add checks for _DOUBLE_IS_32BITS
75         to prevent setting dword1 which is an rvalue only.
76
77 2006-06-22  Jeff Johnston  <jjohnstn@redhat.com>        
78
79         * libc/stdlib/Makefile.am: Add new gdtoa routines.
80         * libc/stdlib/Makefile.in: Regenerated.
81         * libc/stdlib/gd_qnan.h: New file.
82         * libc/stdlib/gdtoa-gethex.c: Ditto.
83         * libc/stdlib/gdtoa-hexnan.c: Ditto.
84         * libc/stdlib/gdtoa.h: Ditto.
85         * libc/stdlib/mprec.c: Add new helper routines needed by
86         the new gdtoa code.
87         * libc/stdlib/mprec.h: Integrate some defines and prototypes
88         used by gdtoa routines here.
89         * libc/stdlib/strtod.c: Rebased on David M. Gay's gdtoa-strtod.c
90         which adds C99 support such as nan, inf, and hexadecimal input
91         format.
92
93 2006-06-15  Corinna Vinschen  <corinna@vinschen.de>
94
95         * libc/include/stdio.h (__sgetc_r): Fix typo.
96         * libc/stdio/fread.c (_fread_r): Convert crlf calls to crlf_r.
97         * libc/stdio/rget.c (__srbuf): Reinstantiate.
98         * libc/stdio/wbuf.c (__swbuf): Ditto.
99
100 2006-06-14  Jeff Johnston  <jjohnstn@redhat.com>        
101
102         * libc/include/stdio.h: Add new reentrant I/O prototypes for
103         read/write functions.  Change getc/putc macros to have reentrant underlying 
104         macros/functions.  This includes __sgetc_raw_r, __sgetc_r, and __sputc_r.
105         * libc/stdio/fgetc.c: Fix and/or add reentrant version to call
106         new reentrant I/O functions/macros for reading/writing.
107         * libc/stdio/fgets.c: Ditto.
108         * libc/stdio/fputc.c: Ditto.
109         * libc/stdio/fputs.c: Ditto.
110         * libc/stdio/fread.c: Ditto.
111         * libc/stdio/fseek.c: Ditto.
112         * libc/stdio64/fseeko64.c: Ditto.
113         * libc/stdio/fwrite.c: Ditto.
114         * libc/stdio/getc.c: Ditto.
115         * libc/stdio/getc_u.c: Ditto.
116         * libc/stdio/getchar.c: Ditto.
117         * libc/stdio/getchar_u.c: Ditto.
118         * libc/stdio/putc.c: Ditto.
119         * libc/stdio/putc_u.c: Ditto.
120         * libc/stdio/putchar.c: Ditto.
121         * libc/stdio/puts.c: Ditto.
122         * libc/stdio/vfprintf.c: Ditto.
123         * libc/stdio/vfscanf.c: Ditto.
124         * libc/stdio/fvwrite.c: Change __sfvwrite into reentrant __sfvwrite_r.
125         Change all previous callers of __sfvwrite.  Set errno to EBADF and
126         set error flag on if attempt is made to write to file that does not
127         allow writing.
128         * libc/stdio/fvwrite.h: Fix new reentrant prototypes.
129         * libc/stdio/local.h: Ditto.
130         * libc/stdio/refill.c: Turn __srefill into reentrant __srefill_r.
131         Set errno to EBADF and the error flag on if attempt is made to
132         read unreadable file.  Change all previous callers of __srefill.
133         * libc/stdio/rget.c
134         * libc/stdio/wbuf.c: Turn __swbuf into reentrant __swbuf_r.  Change
135         all previous callers of __swbuf.
136         * libc/sys/linux/machine/i386/huge_val.h: Ifdef out file contents since
137         huge value macros are already defined correctly for i386 by <math.h>.
138
139 2006-06-13  Sandra Loosemore <sandra@codesourcery.com>
140
141         * /libc/sys/arm/syscalls.c (_unlink, isatty, _system, _rename):
142         Make them do something useful in the ARM_RDI_MONITOR case.
143
144 2006-06-07  Fred Fish  <fnf@specifix.com>
145
146         * libc/search/hash_bigkey.c (MIN,MAX): Remove
147         defines that are already supplied by <sys/param.h>.
148
149 2006-06-07  Fred Fish  <fnf@specifix.com>
150
151         * configure.host: Remove references to HAVE_GETTIMEOFDAY.
152
153 2006-06-05  Shaun Jackman  <sjackman@gmail.com>
154
155         * libc/posix/Makefile.am (GENERAL_SOURCES): Add sleep.c and
156         usleep.c.
157         * libc/posix/Makefile.in: Regenerate.
158         * libc/posix/sleep.c: New file.
159         * libc/posix/usleep.c: Ditto.
160
161 2006-06-05  Shaun Jackman  <sjackman@gmail.com>
162
163         * configure.host (newlib_cflags) [arm, thumb, xscale]:  Remove
164         -DABORT_PROVIDED flag.
165         * newlib/libc/sys/arm/syscalls.c (kill, exit): Sync with libgloss.
166         * newlib/libc/sys/arm/libcfunc.c (abort): Ditto.
167
168 2006-06-05  Jeff Johnston  <jjohnstn@redhat.com>
169
170         * Makefile.am (AM_MAKEFLAGS): Pass CCASFLAGS.
171         * Makefile.in: Regenerated.
172         * libc/machine/sh/Makefile.am (AM_CCASFLAGS): Remove
173         extraneous CFLAGS reference now that CCASFLAGS are being extended
174         properly via multilib.
175         * libc/machine/sh/Makefile.in: Regenerated.
176
177 2006-06-02  Shaun Jackman  <sjackman@gmail.com>
178
179         * libc/unix/sigset.c: Undefine sigfillset, sigdelset, and
180         sigismember.
181
182 2006-05-23  Jeff Johnston  <jjohnstn@redhat.com>
183
184         * libc/misc/dprintf.c: Removed.
185         * libc/misc/__dprintf.c: Renamed from dprintf.c.
186         * libc/misc/Makefile.am: Changed appropriately for rename.
187         * libc/misc/Makefile.in: Regenerated.
188
189 2006-05-23  Jeff Johnston  <jjohnstn@redhat.com>
190
191         * libc/include/stdio.h: Protect dprintf prototype
192         with #ifndef dprintf so as to not interfere with
193         historical code defining their own dprintf macro.
194
195 2006-05-18  Jeff Johnston  <jjohnstn@redhat.com>
196
197         * libc/include/stdio.h: Add prototypes for fiscanf,
198         iscanf, and siscanf.
199
200 2006-05-11  J"orn Rennecke <joern.rennecke@st.com>
201
202         * acinclude.m4 (_NEWLIB_VERSION): Rename to:
203         (DEF_NEWLIB_VERSION).
204         * configure.in (_NEWLIB_VERSION): Use NEWLIB_VERSION.
205         * configure: Regenerate.
206
207 2006-05-09  Jeff Johnston  <jjohnstn@redhat.com>
208
209         * libc/ctype/Makefile.am: Add $(ELIX_SOURCES) to
210         lib_a_SOURCES.
211         * libc/ctype/Makefile.in: Regenerated.
212
213 2006-05-09  Kazu Hirata  <kazu@codesourcery.com>
214
215         * libc/machine/arm/Makefile.am: Fix a typo.
216         * libc/machine/arm/Makefile.in: Regenerated.
217
218 2006-05-08  J"orn Rennecke <joern.rennecke@st.com>
219
220         * libc/machine/sh/Makefile.am (AM_CCASFLAGS): Add $(CFLAGS).
221         * libc/machine/sh/Makefile.in: Regenerate.
222
223 2006-05-03  J"orn Rennecke <joern.rennecke@st.com>
224
225         * libc/sys/sh/Makefile.am (AM_CCASFLAGS): Add $(CFLAGS).
226         * libc/sys/sh/Makefile.in (AM_CCASFLAGS): Likewise.
227
228 2006-05-02  Jeff Johnston  <jjohnstn@redhat.com>
229
230         * libc/sys/sysnec810/Makefile.am: Specify .S files instead of
231         .s.
232         * libc/sys/sysnec810/Makefile.in: Regenerated.
233         * libc/sys/sysnec810/crt0.S: Renamed from .s file.
234         * libc/sys/sysnec810/io.S: Ditto.
235         * libc/sys/sysnec810/crt0.s: Renamed to .S file.
236         * libc/sys/sysnec810/io.s: Ditto.
237
238 2006-05-01  Jeff Johnston  <jjohnstn@redhat.com>
239
240         * libc/argz/Makefile.am: Prefix any objects specified with $(lpfx).  If source file can
241         be specified instead of object, do so.
242         * libc/ctype/Makefile.am: Ditto.
243         * libc/iconv/ccs/Makefile.am: Ditto.
244         * libc/iconv/ces/Makefile.am: Ditto.
245         * libc/iconv/lib/Makefile.am: Ditto.
246         * libc/locale/Makefile.am: Ditto.
247         * libc/posix/Makefile.am: Ditto.
248         * libc/reent/Makefile.am: Ditto.
249         * libc/search/Makefile.am: Ditto.
250         * libc/stdio/Makefile.am: Ditto.
251         * libc/stdio64/Makefile.am: Ditto.
252         * libc/stdlib/Makefile.am: Ditto.
253         * libc/string/Makefile.am: Ditto.
254         * libc/syscalls/Makefile.am: Ditto.
255         * libc/unix/Makefile.am: Ditto.
256         * libc/machine/a29k/Makefile.am: Specify lib_a_CCASFLAGS so .S files will get
257         prefix added automatically.  Any specified rules must use $(lpfx) for
258         object file names.
259         * libc/machine/arm/Makefile.am: Ditto.
260         * libc/machine/cris/Makefile.am: Ditto.
261         * libc/machine/crx/Makefile.am: Ditto.
262         * libc/machine/d10v/Makefile.am: Ditto.
263         * libc/machine/d30v/Makefile.am: Ditto.
264         * libc/machine/fr30/Makefile.am: Ditto.
265         * libc/machine/frv/Makefile.am: Ditto.
266         * libc/machine/h8300/Makefile.am: Ditto.
267         * libc/machine/h8500/Makefile.am: Ditto.
268         * libc/machine/hppa/Makefile.am: Ditto.
269         * libc/machine/i386/Makefile.am: Ditto.
270         * libc/machine/i960/Makefile.am: Ditto.
271         * libc/machine/iq2000/Makefile.am: Ditto.
272         * libc/machine/m32c/Makefile.am: Ditto.
273         * libc/machine/m32r/Makefile.am: Ditto.
274         * libc/machine/m68hc11/Makefile.am: Ditto.
275         * libc/machine/m68k/Makefile.am: Ditto.
276         * libc/machine/m88k/Makefile.am: Ditto.
277         * libc/machine/mips/Makefile.am: Ditto.
278         * libc/machine/mn10200/Makefile.am: Ditto.
279         * libc/machine/mn10300/Makefile.am: Ditto.
280         * libc/machine/mt/Makefile.am: Ditto.
281         * libc/machine/necv70/Makefile.am: Ditto.
282         * libc/machine/powerpc/Makefile.am: Ditto.
283         * libc/machine/sh/Makefile.am: Ditto.
284         * libc/machine/sh/Makefile.in: Ditto.
285         * libc/machine/sparc/Makefile.am: Ditto.
286         * libc/machine/tic4x/Makefile.am: Ditto.
287         * libc/machine/tic80/Makefile.am: Ditto.
288         * libc/machine/v850/Makefile.am: Ditto.
289         * libc/machine/w65/Makefile.am: Ditto.
290         * libc/machine/xscale/Makefile.am: Ditto.
291         * libc/machine/xstormy16/Makefile.am: Ditto.
292         * libc/machine/z8k/Makefile.am: Ditto.
293         * libc/sys/a29khif/Makefile.am: Ditto.
294         * libc/sys/arm/Makefile.am: Ditto.
295         * libc/sys/d10v/Makefile.am: Ditto.
296         * libc/sys/h8300hms/Makefile.am: Ditto.
297         * libc/sys/h8500hms/Makefile.am: Ditto.
298         * libc/sys/linux/Makefile.am: Ditto.
299         * libc/sys/linux/linuxthreads/Makefile.am: Ditto.
300         * libc/sys/linux/net/Makefile.am: Ditto.
301         * libc/sys/linux/stdlib/Makefile.am: Ditto.
302         * libc/sys/m88kbug/Makefile.am: Ditto.
303         * libc/sys/mmixware/Makefile.am: Ditto.
304         * libc/sys/rdos/Makefile.am: Ditto.
305         * libc/sys/rtems/Makefile.am: Ditto.
306         * libc/sys/sh/Makefile.am: Ditto.
307         * libc/sys/sun4/Makefile.am: Ditto.
308         * libc/sys/sysmec/Makefile.am: Ditto.
309         * libc/sys/sysnec810/Makefile.am: Ditto.
310         * libc/sys/sysnecv850/Makefile.am: Ditto.
311         * libc/sys/sysvi386/Makefile.am: Ditto.
312         * libc/sys/sysvnecv70/Makefile.am: Ditto.
313         * libc/sys/tic80/Makefile.am: Ditto.
314         * libc/sys/w65/Makefile.am: Ditto.
315         * libc/sys/z8ksim/Makefile.am: Ditto.
316         * libc/machine/necv70/fastmath.S: Renamed from .s file.
317         * libc/machine/necv70/setjmp.S: Ditto.
318         * libc/machine/necv70/fastmath.s: Removed.
319         * libc/machine/necv70/setjmp.s: Ditto.
320         * libc/machine/w65/*.S: New files renamed from .s files.
321         * libc/machine/w65/*.s: Renamed and removed.
322         * libc/sys/a29khif/*.S: New files renamed from .s files.
323         * libc/sys/a29khif/*.s: Renamed and removed.
324         * libc/sys/sysvi386/*.S: New files renamed from .s files.
325         * libc/sys/sysvi386/*.s: Renamed and removed.
326         * libc/sys/sysvnecv70/*.S: New files renamed from .s files.
327         * libc/sys/sysvnecv70/*.s: Renamed and removed.
328         * libc/*Makefile.in: Regenerated as appropriate.
329
330 2006-04-24  DJ Delorie  <dj@redhat.com>
331
332         * libc/machine/sh/configure.in: Avoid link tests.
333         * libc/machine/sh/configure: Regenerate.
334
335 2006-04-18  Jeff Johnston  <jjohnstn@redhat.com>
336
337         * libc/include/sys/signal.h (sigdelset, sigfillset, sigismember): New macros.
338         (sigaddset, sigemptyset): Add return code.
339
340 2006-04-13  Ralf Corsepius  <ralf.corsepius@rtems.org>
341
342         * acinclude.m4: New _NEWLIB_VERSION.
343         * acinclude.m4(NEWLIB_CONFIGURE): AC_REQUIRE(_NEWLIB_VERSION).
344         Use AC_CANONICAL_HOST instead of AC_CANONICAL_SYSTEM.
345         Use new form of AC_INIT_AUTOMAKE.
346         * configure.in: AC_PREREQ(2.59).
347         Use autoconf-2.5.x version of AC_INIT.
348         Use AC_CONFIG_FILES and autoconf-2.5x AC_OUTPUT instead of
349         autoconf-2.13's AC_OUTPUT.
350         * libm/configure.in: Ditto.
351         * libm/machine/configure.in: Ditto.
352         * libm/machine/i386/configure.in: Ditto.
353         * libc/configure.in: Ditto.
354         * libc/machine/a29k/configure.in: Ditto.
355         * libc/machine/arm/configure.in: Ditto.
356         * libc/machine/configure.in: Ditto.
357         * libc/machine/mn10300/configure.in: Ditto.
358         * libc/machine/powerpc/configure.in: Ditto.
359         * libc/machine/z8k/configure.in: Ditto.
360         * libc/machine/h8300/configure.in: Ditto.
361         * libc/machine/mips/configure.in: Ditto.
362         * libc/machine/crx/configure.in: Ditto.
363         * libc/machine/m68hc11/configure.in: Ditto.
364         * libc/machine/h8500/configure.in: Ditto.
365         * libc/machine/xscale/configure.in: Ditto.
366         * libc/machine/d10v/configure.in: Ditto.
367         * libc/machine/fr30/configure.in: Ditto.
368         * libc/machine/sh/configure.in: Ditto.
369         * libc/machine/tic80/configure.in: Ditto.
370         * libc/machine/m32r/configure.in: Ditto.
371         * libc/machine/xstormy16/configure.in: Ditto.
372         * libc/machine/i386/configure.in: Ditto.
373         * libc/machine/d30v/configure.in: Ditto.
374         * libc/machine/mn10200/configure.in: Ditto.
375         * libc/machine/frv/configure.in: Ditto.
376         * libc/machine/mt/configure.in: Ditto.
377         * libc/machine/i960/configure.in: Ditto.
378         * libc/machine/v850/configure.in: Ditto.
379         * libc/machine/necv70/configure.in: Ditto.
380         * libc/machine/tic4x/configure.in: Ditto.
381         * libc/machine/cris/configure.in: Ditto.
382         * libc/machine/m68k/configure.in: Ditto.
383         * libc/machine/m32c/configure.in: Ditto.
384         * libc/machine/hppa/configure.in: Ditto.
385         * libc/machine/w65/configure.in: Ditto.
386         * libc/machine/iq2000/configure.in: Ditto.
387         * libc/machine/sparc/configure.in: Ditto.
388         * libc/machine/m88k/configure.in: Ditto.
389         * libc/sys/linux/configure.in: Ditto.
390         * libc/sys/linux/machine/configure.in: Ditto.
391         * libc/sys/linux/machine/i386/configure.in: Ditto.
392         * libc/sys/linux/linuxthreads/configure.in: Ditto.
393         * libc/sys/linux/linuxthreads/machine/configure.in: Ditto.
394         * libc/sys/linux/linuxthreads/machine/i386/configure.in: Ditto.
395         * libc/sys/arm/configure.in: Ditto.
396         * libc/sys/configure.in: Ditto.
397         * libc/sys/decstation/configure.in: Ditto.
398         * libc/sys/a29khif/configure.in: Ditto.
399         * libc/sys/sysnecv850/configure.in: Ditto.
400         * libc/sys/d10v/configure.in: Ditto.
401         * libc/sys/netware/configure.in: Ditto.
402         * libc/sys/mmixware/configure.in: Ditto.
403         * libc/sys/h8500hms/configure.in: Ditto.
404         * libc/sys/sh/configure.in: Ditto.
405         * libc/sys/tic80/configure.in: Ditto.
406         * libc/sys/rdos/configure.in: Ditto.
407         * libc/sys/sysmec/configure.in: Ditto.
408         * libc/sys/sysvi386/configure.in: Ditto.
409         * libc/sys/h8300hms/configure.in: Ditto.
410         * libc/sys/sparc64/configure.in: Ditto.
411         * libc/sys/arc/configure.in: Ditto.
412         * libc/sys/sysnec810/configure.in: Ditto.
413         * libc/sys/m88kbug/configure.in: Ditto.
414         * libc/sys/sysvnecv70/configure.in: Ditto.
415         * libc/sys/z8ksim/configure.in: Ditto.
416         * libc/sys/rtems/configure.in: Ditto.
417         * libc/sys/w65/configure.in: Ditto.
418         * libc/sys/sun4/configure.in: Ditto.
419         * doc/configure.in: Ditto.
420         * iconvdata/configure.in: Ditto.
421         * configure.in: Use AC_CONFIG_HEADER instead of AM_CONFIG_HEADER.
422
423 2006-04-11  Jeff Johnston  <jjohnstn@redhat.com>
424
425         * acinclude.m4: Properly add square brackets for
426         AC_DEFUN macros.  Rewrite LIB_AC_PROG_CC to remove
427         macros no longer available.  Add LIB_AM_PROG_AS to
428         remove prereq of AC_PROG_CC.  Add LIB_AC_PROG_CC_GNU
429         macro.  Substitute lpfx (library object prefix).
430         * configure.host: Set lpfx depending on whether
431         libtool is used or not.
432         * configure.in: Individually specify libc and libm
433         to AC_CONFIG_SUBDIRS.  Add square bracket quoting as
434         necessary.
435         * Makefile.am: Use $(lpfx) to get object names for
436         math-library functions that should also be in libc.
437         * libc/machine/configure.in: Use case statement to determine
438         AC_CONFIG_SUBDIRS statement.
439         * libc/sys/linux/linuxthreads/machine/configure.in: Ditto.
440         * libc/sys/linux/machine/configure.in: Ditto.
441         * libc/sys/configure.in: Ditto.
442         * libm/machine/configure.in: Ditto.
443         * libc/sys/linux/configure.in: Fix up AC_CONFIG_SUBDIRS.
444         * libm/configure.in: Add AM_CONDITIONAL statement
445         for HAVE_LIBM_MACHINE_DIR.
446         * libc/machine/a29k/Makefile.am: Modified to work with
447         latest automake.  Change includes setting AM_CCASFLAGS
448         so building .S files will properly pick up flags used
449         to build C files.
450         * libc/machine/arm/Makefile.am: Ditto.
451         * libc/machine/crx/Makefile.am: Ditto.
452         * libc/machine/d10v/Makefile.am: Ditto.
453         * libc/machine/d30v/Makefile.am: Ditto.
454         * libc/machine/fr30/Makefile.am: Ditto.
455         * libc/machine/frv/Makefile.am: Ditto.
456         * libc/machine/h8300/Makefile.am: Ditto.
457         * libc/machine/h8500/Makefile.am: Ditto.
458         * libc/machine/hppa/Makefile.am: Ditto.
459         * libc/machine/i386/Makefile.am: Ditto.
460         * libc/machine/iq2000/Makefile.am: Ditto.
461         * libc/machine/m32c/Makefile.am: Ditto.
462         * libc/machine/m32r/Makefile.am: Ditto.
463         * libc/machine/m68hc11/Makefile.am: Ditto.
464         * libc/machine/m68k/Makefile.am: Ditto.
465         * libc/machine/m88k/Makefile.am: Ditto.
466         * libc/machine/mips/Makefile.am: Ditto.
467         * libc/machine/mn10200/Makefile.am: Ditto.
468         * libc/machine/mn10300/Makefile.am: Ditto.
469         * libc/machine/mt/Makefile.am: Ditto.
470         * libc/machine/necv70/Makefile.am: Ditto.
471         * libc/machine/powerpc/Makefile.am: Ditto.
472         * libc/machine/sh/Makefile.am: Ditto.
473         * libc/machine/sparc/Makefile.am: Ditto.
474         * libc/machine/tic4x/Makefile.am: Ditto.
475         * libc/machine/tic80/Makefile.am: Ditto.
476         * libc/machine/v850/Makefile.am: Ditto.
477         * libc/machine/w65/Makefile.am: Ditto.
478         * libc/machine/xscale/Makefile.am: Ditto.
479         * libc/machine/xstormy16/Makefile.am: Ditto.
480         * libc/machine/z8k/Makefile.am: Ditto.
481         * libc/sys/a29khif/Makefile.am: Ditto.
482         * libc/sys/arc/Makefile.am: Ditto.
483         * libc/sys/arm/Makefile.am: Ditto.
484         * libc/sys/d10v/Makefile.am: Ditto.
485         * libc/sys/decstation/Makefile.am: Ditto.
486         * libc/sys/h8300hms/Makefile.am: Ditto.
487         * libc/sys/h8500hms/Makefile.am: Ditto.
488         * libc/sys/linux/linuxthreads/machine/i386/Makefile.am: Ditto.
489         * libc/sys/linux/machine/i386/Makefile.am: Ditto.
490         * libc/sys/m88kbug/Makefile.am: Ditto.
491         * libc/sys/mmixware/Makefile.am: Ditto.
492         * libc/sys/netware/Makefile.am: Ditto.
493         * libc/sys/rdos/Makefile.am: Ditto.
494         * libc/sys/rtems/Makefile.am: Ditto.
495         * libc/sys/sh/Makefile.am: Ditto.
496         * libc/sys/sparc64/Makefile.am: Ditto.
497         * libc/sys/sysmec/Makefile.am: Ditto.
498         * libc/sys/sysnec810/Makefile.am: Ditto.
499         * libc/sys/sysnecv850/Makefile.am: Ditto.
500         * libc/sys/sysvi386/Makefile.am: Ditto.
501         * libc/sys/sysvnecv70/Makefile.am: Ditto.
502         * libc/sys/tic80/Makefile.am: Ditto.
503         * libc/sys/w65/Makefile.am: Ditto.
504         * libc/sys/z8ksim/Makefile.am: Ditto.
505         * libm/machine/i386/Makefile.am: Ditto.
506         * libc/sys/arm/Makefile.am: Ditto plus add EXTRA sources including
507         trap.S so that automake will generate a .S.o suffix rule.
508         * libc/argz/Makefile.am: Modified to work with
509         latest automake.  Change includes adding lib_a_CFLAGS
510         so automake doesn't complain about libtool and non-libtool
511         libraries sharing objects.
512         * libc/ctype/Makefile.am: Ditto.
513         * libc/errno/Makefile.am: Ditto.
514         * libc/iconv/ccs/Makefile.am: Ditto.
515         * libc/iconv/ces/Makefile.am: Ditto.
516         * libc/iconv/lib/Makefile.am: Ditto.
517         * libc/locale/Makefile.am: Ditto.
518         * libc/misc/Makefile.am: Ditto.
519         * libc/posix/Makefile.am: Ditto.
520         * libc/reent/Makefile.am: Ditto.
521         * libc/search/Makefile.am: Ditto.
522         * libc/signal/Makefile.am: Ditto.
523         * libc/stdio/Makefile.am: Ditto.
524         * libc/stdio64/Makefile.am: Ditto.
525         * libc/stdlib/Makefile.am: Ditto.
526         * libc/string/Makefile.am: Ditto.
527         * libc/sys/linux/Makefile.am: Ditto.
528         * libc/sys/linux/argp/Makefile.am: Ditto.
529         * libc/sys/linux/cmath/Makefile.am: Ditto.
530         * libc/sys/linux/dl/Makefile.am: Ditto.
531         * libc/sys/linux/iconv/Makefile.am: Ditto.
532         * libc/sys/linux/intl/Makefile.am: Ditto.
533         * libc/sys/linux/linuxthreads/Makefile.am: Ditto.
534         * libc/sys/linux/net/Makefile.am: Ditto.
535         * libc/sys/linux/stdlib/Makefile.am: Ditto.
536         * libc/syscalls/Makefile.am: Ditto.
537         * libc/time/Makefile.am: Ditto.
538         * libc/unix/Makefile.am: Ditto.
539         * libm/Makefile.am: Ditto.
540         * libm/common/Makefile.am: Ditto.
541         * libm/math/Makefile.am: Ditto.
542         * libm/mathfp/Makefile.am: Ditto.
543         * Regenerate all aclocal.m4, Makefile.in, and configure files.
544
545 2006-04-07  Jeff Johnston  <jjohnstn@redhat.com>
546
547         * libc/time/time.c (time): Do not check for HAVE_GETTIMEOFDAY
548         anymore.  Assume there is a gettimeofday syscall.
549
550 2006-03-29  Shaun Jackman  <sjackman@gmail.com>
551
552         * libc/sys/linux/include/netinet/ip.h: Include netinet/in_systm.h
553         for the declaration of n_long.
554
555 2006-03-29  Shaun Jackman  <sjackman@gmail.com>
556
557         * libc/sys/linux/include/net/if.h: Include sys/socket.h for
558         struct sockaddr.
559         (IFF_SMART): Replace this define with IFF_NOTRAILERS.
560         (IFF_CANTCHANGE): Replace IFF_SMART reference with IFF_NOTRAILERS.
561         (IFF_NOTRAILERS): New define.
562         (struct ifreq): Add ifru_netmask.
563         (ifr_netmask): New define.
564
565 2006-03-29  Shaun Jackman  <sjackman@gmail.com>
566
567         * libc/sys/linux/sys/ioccom.h (ioctl): Change declaration to
568         match sys/ioctl.h.
569
570 2006-03-29  Shaun Jackman  <sjackman@gmail.com>
571
572         * libtool.m4: Set lt_cv_deplibs_check_method=pass_all for 
573         linux-newlib libc implementations.
574
575 2006-03-29  Eric Blake  <ebb9@byu.net>
576
577         * libc/stdio/freopen.c (_freopen_r) [__SCLE]: Fix typo.
578         * libc/stdio64/freopen64.c (_freopen64_r) [__SCLE]: Likewise.
579
580 2006-03-29  Jeff Johnston  <jjohnstn@redhat.com>
581
582         * libc/sys/linux/io.c (__mknod): Fix declaration of
583         syscall to pass a dev_t as third argument rather than
584         a pointer to dev_t.
585
586 2006-03-29  Jeff Johnston  <jjohnstn@redhat.com>
587
588         * libc/sys/linux/net/name6.c: Fix struct references.
589
590 2006-03-22  Mark Mitchell  <mark@codesourcery.com>
591
592         * configure.host: Allow hosts to set the default
593         newlib_atexit_dynamic_alloc value.
594         * configure.in: Likewise.
595         * configure: Regenerated.
596
597 2006-03-20  Mark Mitchell  <mark@codesourcery.com>
598
599         * acconfig.h (_ATEXIT_DYNAMIC_ALLOC): Undef.
600         * configure.in (--disable-newlib-atexit-dynamic-alloc): New
601         option. 
602         * configure: Regenerated.
603         * newlib.hin: Regenerated.
604         * libc/stdlib/__atexit.c (__register_exitproc): Don't call malloc
605         if _ATEXIT_DYNAMIC_ALLOC is undefined.
606         * libc/stdlib/__call_atexit.c (__call_exitprocs): Don't call free
607         if _ATEXIT_DYNAMIC_ALLOC is undefined.
608
609 2006-03-17  Jeff Johnston  <jjohnstn@redhat.com>
610
611         * libc/sys/linux/linuxthreads/config.h: Remove definition
612         of UINT32_C.
613
614 2006-03-15  Jeff Johnston  <jjohnstn@redhat.com>
615
616         * libc/stdio/wsetup.c (__swsetup): Don't make a buffer
617         for a string I/O file that isn't using the asprintf family.
618
619 2006-03-07  Eric Blake  <ebb9@byu.net>
620
621         * libc/stdio/freopen.c (_freopen_r) [HAVE_FCNTL]: For NULL
622         filename, allow read-only or write-only FILE atop O_RDWR file
623         descriptor.
624         * libc/stdio64/freopen64.c (_freopen64_r) [HAVE_FCNTL]: Likewise.
625
626 2006-03-07  Jeff Johnston  <jjohnstn@redhat.com>
627
628         * libm/common/sf_isinf.c[_DOUBLE_IS_32BITS]: Undef isinf.
629         * libm/common/sf_isnan.c[_DOUBLE_IS_32BITS]: Undef isnan.
630
631 2006-03-02  Jeff Johnston  <jjohnstn@redhat.com>
632
633         * libm/math/math.tex: Fix reference to sisnan.def which
634         is now in common subdirectory.
635         * libm/mathfp/mathfp.tex: Ditto.
636
637 2006-02-27  Jeff Johnston  <jjohnstn@redhat.com>
638
639         * Makefile.am (MATHOBJS_IN_LIBC): Add s_isinfd, sf_isinff, 
640         s_isnand, and sf_isnanf object files.
641         * Makefile.in: Regenerated.
642         * libc/include/ieeefp.h: Undef isnan and isinf to avoid
643         conflict if <math.h> has previously been included.
644         * libc/include/math.h
645         * libc/include/math.h: Make isnan and isinf macros to
646         conform to C99.
647         (__isinfd, __isinff, __isnand, __isnanf): New functions.
648         * libm/common/Makefile.am: Add new s_isinfd, s_isnand, sf_isinff,
649         and sf_isnanf files.  Also support s_isnan, sf_isnan, s_isinf, and
650         sf_isinf files which have been moved from math/mathfp directories. 
651         * libm/common/Makefile.in: Regenerated.
652         * libm/common/s_isinfd.c: New file.
653         * libm/common/s_isnand.c: Ditto.
654         * libm/common/sf_isinff.c: Ditto.
655         * libm/common/sf_isnanf.c: Ditto.
656         * libm/common/s_isinf.c: Moved from libm/math directory.
657         * libm/common/s_isnan.c: Ditto.
658         * libm/common/sf_isinf.c: Ditto.
659         * libm/common/sf_isnan.c: Ditto.
660         * libm/math/Makefile.am: Remove isinf and isnan family functions
661         which have been moved into common directory.
662         * libm/mathfp/Makefile.am: Ditto.
663         * libm/math/Makefile.in: Regenerated.
664         * libm/mathfp/Makefile.in: Ditto.
665         * libm/math/s_isinf.c: Removed.
666         * libm/math/s_isnan.c: Ditto.
667         * libm/math/sf_isinf.c: Ditto.
668         * libm/math/sf_isnan.c: Ditto.
669         * libm/mathfp/s_isinf.c: Ditto.
670         * libm/mathfp/s_isnan.c: Ditto.
671         * libm/mathfp/sf_isinf.c: Ditto.
672         * libm/mathfp/sf_isnan.c: Ditto.
673
674 2006-02-20  Jeff Johnston  <jjohnstn@redhat.com>
675
676         * libc/stdio/fflush.c (fflush): For an fflush on a read-only
677         stream, turn off fseek/rewind optimization as per POSIX/SUSv3.
678         * libc/stdio/fseek.c (_fseek_r): After a successful unoptimized
679         seek, turn off the __SNPT no-optimization flag.
680
681 2006-02-16  Jeff Johnston  <jjohnstn@redhat.com>
682
683         * libc/sys/linux/aio.c: Define _GNU_SOURCE so struct aioinit
684         will be defined.
685         * libc/sys/linux/sys/types.h: Move <sys/config.h> ahead of
686         <features.h> to preset special flags.
687
688 2006-02-15  Corinna Vinschen  <corinna@vinschen.de>
689
690         * libc/include/sys/time.h (struct timeval): Change member types
691         according to SUSv3.
692         * libc/include/sys/types.h (useconds_t): Change to unsigned
693         according to SUSv3.
694         (suseconds_t): Define type.
695
696 2006-02-13  Jeff Johnston  <jjohnstn@redhat.com>
697             David Carne  <davidcarne@gmail.com>
698
699         * libc/string/strndup_r.c (_strndup_r): Use strnlen logic
700         instead of strlen to determine number of bytes to copy.
701         * libc/string/strnlen.c (strnlen): Fix so check for max limit occurs
702         before looking at storage location.
703
704 2006-02-07  Paul Brook  <paul@codesourcery.com>
705
706         * libc/machine/arm/setjmp.S: Add Thumb-2 support.
707         * libc/sys/arm/crt0.S: Add Thumb-2 startup code.
708         * libc/sys/arm/libcfunc.c (do_AngelSWI): Use AngelSWIInsn.
709         * libc/sys/arm/swi.h (AngelSWIInsn, AngelSWIAsm): Define.
710         * libc/sys/arm/trap.S: Disable for Thumb-2.
711
712 2006-01-31  Leif Ekblad  <leif@rdos.net>
713
714         * configure.host: RDOS support added
715         * libc/include/sys/config.h: Ditto.
716         * libc/sys/rdos/Makefile.am, libc/sys/rdos/Makefile.in: New files.
717         * libc/sys/rdos/aclocal.m4, libc/sys/rdos/chown.c: Ditto.
718         * libc/sys/rdos/close.c, libc/sys/rdos/config.h: Ditto.
719         * libc/sys/rdos/configure, libc/sys/rdos/configure.in: Ditto.
720         * libc/sys/rdos/crt0.S, libc/sys/rdos/execve.c: Ditto.
721         * libc/sys/rdos/fork.c, libc/sys/rdos/fstat.c: Ditto.
722         * libc/sys/rdos/getenv.c, libc/sys/rdos/getpid.c: Ditto.
723         * libc/sys/rdos/gettod.c, libc/sys/rdos/isatty.c: Ditto.
724         * libc/sys/rdos/kill.c, libc/sys/rdos/link.c: Ditto.
725         * libc/sys/rdos/lseek.c, libc/sys/rdos/open.c: Ditto.
726         * libc/sys/rdos/rdos.S, libc/sys/rdos/rdos.h: Ditto.
727         * libc/sys/rdos/rdoshelp.c, libc/sys/rdos/read.c: Ditto.
728         * libc/sys/rdos/readlink.c, libc/sys/rdos/sbrk.c: Ditto.
729         * libc/sys/rdos/stat.c, libc/sys/rdos/symlink.c: Ditto.
730         * libc/sys/rdos/times.c, libc/sys/rdos/unlink.c: Ditto.
731         * libc/sys/rdos/user.def, libc/sys/rdos/wait.c: Ditto.
732         * libc/sys/rdos/write.c: Ditto.
733
734 2006-01-24  Jeff Johnston  <jjohnstn@redhat.com>
735
736         * acinclude.m4: Add nodefine to AM_INIT_AUTOMAKE macro invocation
737         so as not to define PACKAGE and VERSION in newlib.h.
738         * aclocal.m4: Regenerated.
739         * configure: Ditto.
740         * newlib.hin: Ditto.
741
742 2006-01-20  Jeff Johnston  <jjohnstn@redhat.com>
743
744         * acconfig.h: New file to generate newlib.hin from.
745         * newlib.hin: Regenerated.
746         * stamp-h.in: Regenerated.
747         * Makefile.am: Add ACLOCAL_AMFLAGS so aclocal can be
748         called automatically.
749         * Makefile.in: Regenerated.
750         * acinclude.m4: Add proper comment for hack in previous change.
751         * aclocal.m4 */aclocal.m4: Regenerated.
752         * configure */configure: Regenerated.
753
754 2006-01-11  Jeff Johnston  <jjohnstn@redhat.com>
755
756         * acinclude.m4: Add hack to prevent INSTALL in subdirs
757         from being set to "../".
758         * Makefile.am: Pass INSTALL in AM_MAKEFLAGS.
759         * aclocal.m4: Regenerated.
760         * configure: Ditto.
761         * Makefile.in: Ditto.
762         * doc/aclocal.m4: Ditto.
763         * doc/configure: Ditto.
764         * iconvdata/aclocal.m4: Ditto.
765         * iconvdata/configure: Ditto.
766         * libc/*/aclocal.m4: Ditto.
767         * libc/*/configure: Ditto.
768         * libc/libc.texinfo: Ditto.
769         * libm/*/aclocal.m4: Ditto.
770         * libm/*/configure: Ditto.
771
772 2006-01-10  Eric Blake  <ebb9@byu.net>
773
774         * libc/stdio/freopen.c (_freopen_r): Fix use of oflags.
775         * libc/stdio64/freopen64.c (_freopen64_r): Likewise.
776
777 2006-01-10  Jeff Johnston  <jjohnstn@redhat.com>
778
779         * libm/mathfp/s_frexp.c: Check for special values on
780         the original input, not the manipulated output value.
781         * libm/mathfp/sf_frexp.c: Ditto.
782         * libm/mathfp/s_atangent.c: Don't use local value branch
783         when checking for quadrant.
784         * libm/mathfp/sf_atangent.c: Ditto.
785
786 2006-01-09  Jeff Johnston  <jjohnstn@redhat.com>
787
788         * libc/stdio/freopen.c: Switch to use isatty instead of _isatty.
789         * libc/stdio64/freopen64.c: Ditto.
790
791 2006-01-09  Eric Blake  <ebb9@byu.net>
792
793         * libc/stdio/freopen.c (_freopen_r): Accept NULL filename.
794         * libc/stdio64/freopen64.c (_freopen64_r): Likewise.
795
796 2006-01-06  Jeff Johnston  <jjohnstn@redhat.com>
797
798         * libc/sys/linux/include/getopt.h: Add macros needed by
799         new version of getopt.c in libc/stdlib.
800
801 2006-01-04  Gregory Pietsch  <gpietsch@comcast.net>
802
803         * libc/stdlib/getopt.c: Replaced with version
804         that adds getopt_long and getopt_long_only support.
805         * libc/include/getopt.h: New file.
806
807 2005-12-16  Jeff Johnston  <jjohnstn@redhat.com>
808
809         * NEWS: Update with 1.14.0 info.
810         * README: Ditto.
811         * acinclude.m4: Change version number to 1.14.0.
812         * aclocal.m4: Regenerated.
813         * configure: Ditto.
814         * doc/aclocal.m4: Ditto.
815         * doc/configure: Ditto.
816         * libc/*/aclocal.m4: Ditto.
817         * libc/*/configure: Ditto.
818         * libc/libc.texinfo: Ditto.
819         * libm/*/aclocal.m4: Ditto.
820         * libm/*/configure: Ditto.
821         * libm/libm.texinfo: Ditto.
822         * libc/sys/linux/shared.ld: Add VERS_1.14.
823
824 2005-12-16  Jeff Johnston  <jjohnstn@redhat.com>
825
826         * libc/sys/linux/sys/stat.h: Change *stat64 prototypes to
827         take a pointer to struct stat64 rather than struct stat.
828
829 2005-12-16  Ralf Corsepius <ralf.corsepius@rtems.org>
830
831         * libc/include/stdint.h: Prefer long over int for int32_t.
832         Use __have_long32 to set up int32_t.
833         * libc/include/inttypes.h: Use "#if xxx" instead of "#ifdef xxx"
834         (Sync with stdint.h).
835
836 2005-12-14  Corinna Vinschen  <corinna@vinschen.de>
837
838         * libc/include/sys/fcntl.h: Define O_SYNC unconditionally.  Fix
839         typo in O_NDELAY comment.
840
841 2005-12-13  Nathan Sidwell  <nathan@codesourcery.com>
842
843         * libc/include/machine/ieeefp.h (__mt__): Renamed from __ms1__.
844         * libc/include/machine/setjmp.h (__mt__): Likewise.
845         * libc/machine/mt/setjmp.S: Rename ms1 reference to mt.
846         * libc/machine/configure.in: Ditto.
847
848 2005-12-12  Nathan Sidwell  <nathan@codesourcery.com>
849
850         * configure.host: Replace ms1 arch with mt arch.
851         * libc/machine/mt: Renamed from ms1 dir.
852
853 2005-12-08  Shaun Jackman  <sjackman@gmail.com>
854
855         * libc/include/sys/types.h: Remove the ifdef armour around
856         standard POSIX types.
857
858 2005-12-06  Ralf Corsepius <ralf.corsepius@rtems.org>
859
860         * libc/sys/rtems/crt0.c: Add rtems_gxx_key_create,
861         rtems_gxx_key_delete, rtems_gxx_getspecific,
862         rtems_gxx_setspecific, rtems_gxx_mutex_trylock, 
863         rtems_gxx_recursive_mutex_init, rtems_gxx_recursive_mutex_lock, 
864         rtems_gxx_recursive_mutex_trylock, rtems_gxx_recursive_mutex_unlock.
865
866 2005-12-05  Christopher Faylor  <cgf@timesys.com>
867
868         * libc/include/stdlib.h: Move cygwin declarations to cygwin-specific
869         file.  Declare unsetenv and _unsetenv_r when not cygwin.
870
871 2005-11-18  Jeff Johnston  <jjohnstn@redhat.com>
872
873         * libc/time/strptime.c (strptime): Don't abort for %c and %Z.
874         Treat %c as "%a %b %e %H:%M:%S %Y" and ignore %Z.
875
876 2005-11-18  Christopher Faylor  <cgf@timesys.com>
877
878         * include/sys/time.h: Move more cygwin stuff to cygwin-specific header.
879
880 2005-11-18  Christopher Faylor  <cgf@timesys.com>
881
882         * include/time.h: Remove more cygwin-specific stuff.
883
884 2005-11-18  Christopher Faylor  <cgf@timesys.com>
885
886         * include/time.h: Move cygwin declarations to cygwin-specific header.
887         * include/sys/time.h: Rename cygwin include to "sys_time.h".
888
889 2005-11-17  Jeff Johnston  <jjohnstn@redhat.com>
890
891         * libc/sys/linux/dl/dl-local.h: New file based on old dlfcn.h
892         in libc/sys/linux/include.
893         * libc/sys/linux/dl/dlfcn.h: Moved to libc/sys/linux/include.
894         * libc/sys/linux/dl/ldsodefs.h: Include dl-local.h instead of dlfcn.h.
895         * libc/sys/linux/include/dlfcn.h: Replaced with dlfcn.h formerly
896         in libc/sys/linux/dl.
897
898 2005-11-11  Christopher Faylor  <cgf@timesys.com>
899
900         * libc/include/sys/time.h: For cygwin, use general header rather than
901         specific "sys/select.h".
902
903 2005-11-08  Tom Walsh  <tom@openhardware.net>
904
905         * libc/time/tzvars.c: New file.
906         * libc/time/tzset_r.c: Moved globals into tzvars.c
907         so other time functions needn't link in __tzset_r and its
908         dependencies.
909         * libc/time/Makefile.am: Add the new file.
910         * libc/time/Makefile.in: Regenerated.
911
912 2005-11-08  Christopher Faylor  <cgf@timesys.com>
913
914         * libc/include/string.h: Add cygwin-specific function declaration.
915
916 2005-11-07  Corinna Vinschen  <corinna@vinschen.de>
917
918         * libc/include/ieeefp.h: Add C++ guards.
919
920 2005-11-03  Jeff Johnston  <jjohnstn@redhat.com>
921
922         * libc/unix/getcwd.c: Don't use non-reentrant syscall names.
923         * libc/unix/getlogin.c: Ditto.
924         * libc/unix/getpass.c: Ditto.
925         * libc/unix/getut.c: Ditto.
926         * libc/unix/ttyname.c: Ditto.
927
928 2005-11-03  Shaun Jackman  <sjackman@gmail.com>
929
930         * libc/include/sys/unistd.h (readlink, symlink): Provide these
931         prototypes by default.
932         * libc/sys/linux/include/unistd.h (readlink): Remove this
933         prototype.
934         * libc/sys/linux/sys/unistd.h (readlink, symlink): New
935         prototypes.
936
937 2005-11-01  Ralf Corsepius <ralf.corsepius@rtems.org>
938
939         * libc/include/stdint.h: Cleanup #if vs. #ifdef.
940
941 2005-10-31  Darin Johnson  <darin@usa.net>
942
943         * libm/mathfp/s_mathcnst.c: Fix endian-ness check to be
944         correct for constants.
945
946 2005-10-28  Bob Wilson  <bob.wilson@acm.org>
947
948         * libc/stdio/siprintf.c: Wrap long lines in ANSI_SYNOPSIS.
949         * libc/stdio/siscanf.c: Likewise.
950         * libc/stdio/sprintf.c: Likewise.
951         * libc/stdio/sscanf.c: Likewise.
952         * libc/stdio/vfprintf.c: Likewise.
953         * libc/stdio/vfscanf.c: Likewise.
954         * libc/stdio/viprintf.c: Likewise.
955         * libc/stdio/viscanf.c: Likewise.
956
957 2005-10-28  Bob Wilson  <bob.wilson@acm.org>
958
959         * libc/sys.tex (Stubs): Format examples consistently.   Change sbrk
960         example to use "_end" symbol instead of "end".  Change write  example
961         to use "outbyte" instead of "writechar".
962
963 2005-10-28  Bob Wilson  <bob.wilson@acm.org>
964
965         * libc/ctype/ctype.tex: Use hyphens as appropriate, but not  otherwise.
966         * libc/ctype/islower.c: Likewise.
967         * libc/ctype/isupper.c: Likewise.
968         * libc/ctype/iswalnum.c: Likewise.
969         * libc/ctype/iswalpha.c: Likewise.
970         * libc/ctype/iswblank.c: Likewise.
971         * libc/ctype/iswcntrl.c: Likewise.
972         * libc/ctype/iswdigit.c: Likewise.
973         * libc/ctype/iswgraph.c: Likewise.
974         * libc/ctype/iswlower.c: Likewise.
975         * libc/ctype/iswprint.c: Likewise.
976         * libc/ctype/iswpunct.c: Likewise.
977         * libc/ctype/iswspace.c: Likewise.
978         * libc/ctype/iswupper.c: Likewise.
979         * libc/ctype/iswxdigit.c: Likewise.
980         * libc/ctype/tolower.c: Likewise.
981         * libc/ctype/toupper.c: Likewise.
982         * libc/ctype/towctrans.c: Likewise.
983         * libc/ctype/towlower.c: Likewise.
984         * libc/ctype/towupper.c: Likewise.
985         * libc/string/strcasecmp.c: Likewise.
986         * libc/string/strcoll.c: Likewise.
987         * libc/string/strings.tex: Likewise.
988         * libc/string/strlwr.c: Likewise.
989         * libc/string/strncasecmp.c: Likewise.
990         * libc/string/strupr.c: Likewise.
991         * libc/string/wcscoll.c: Likewise.
992         * libc/string/wcslcat.c: Likewise.
993         * libc/string/wcslcpy.c: Likewise.
994         * libc/string/wcsnlen.c: Likewise.
995         * libc/string/wcsstr.c: Likewise.
996         * libc/string/wcstrings.tex: Likewise.
997         * libc/string/wmemchr.c: Likewise.
998         * libc/string/wmemcmp.c: Likewise.
999         * libc/string/wmemcpy.c: Likewise.
1000         * libc/string/wmemmove.c: Likewise.
1001         * libc/string/wmemset.c: Likewise. 
1002
1003 2005-10-28  Bob Wilson  <bob.wilson@acm.org>
1004
1005         * libc/misc/unctrl.c: Replace FUNCTION description.
1006         * libc/signal/signal.c: Remove documentation for raise and  _raise_r.
1007         * libc/stdio/getdelim.c: Fix spelling errors.
1008         * libc/stdio/getw.c: Put RETURNS on a separate line.  Fix  punctuation.
1009         * libc/stdio/putw.c: Likewise.
1010         * libc/stdlib/a64l.c: Fix formatting, spelling and  punctuation in
1011         documentation.
1012         * libc/stdlib/assert.c: Do not capitalize FUNCTION description.
1013         * libc/stdlib/efgcvt.c: Add spaces to FUNCTION description.
1014         * libc/stdlib/envlock.c: Use em-dash in FUNCTION description.
1015         * libc/stdlib/mlock.c: Likewise.
1016         * libc/stdlib/mstats.c: Likewise.
1017         * libc/time/tzlock.c: Likewise.
1018         * libc/stdlib/rand.c: Use "multi-threaded" and "thread-safe"  in NOTES.
1019         * libc/stdlib/rand48.c: Remove extra space in FUNCTION  description
1020         and hyphenate "pseudo-random".
1021         * libc/string/bcmp.c: Remove extra blank lines in  documentation.
1022         * libc/string/strncat.c: Likewise.
1023         * libc/string/memchr.c: Remove extra ">" character in  documentation.
1024         * libc/string/strcspn.c: Use "characters" instead of "chars".
1025         * libc/string/strpbrk.c: Likewise.
1026         * libc/string/strerror_r.c: Capitalize "GNU".
1027         * libc/string/strnlen.c: Likewise.
1028         * libc/string/strtok.c: Fix formatting, spelling and  punctuation in
1029         documentation.  Use "multi-threaded" and "thread-safe" in  NOTES.
1030         * libc/string/wcscat.c: Split PORTABILITY into two paragraphs.
1031         * libc/string/wcschr.c: Likewise.
1032         * libc/string/wcscmp.c: Likewise.
1033         * libc/string/wcscpy.c: Likewise.
1034         * libc/string/wcscspn.c: Likewise.
1035         * libc/string/wcslen.c: Likewise.
1036         * libc/string/wcsncat.c: Likewise.
1037         * libc/string/wcsncmp.c: Likewise.
1038         * libc/string/wcsncpy.c: Likewise.
1039         * libc/string/wcsnlen.c: Likewise.
1040         * libc/string/wcspbrk.c: Likewise.
1041         * libc/string/wcsrchr.c: Likewise.
1042         * libc/string/wcsspn.c: Likewise.
1043         * libc/string/wmemchr.c: Likewise.
1044         * libc/string/wmemcmp.c: Likewise.
1045         * libc/string/wmemcpy.c: Likewise.
1046         * libc/string/wmemset.c: Likewise.
1047         * libc/string/wmemmove.c: Likewise.  Also fix FUNCTION  description.
1048         * libc/string/wcswidth.c: Formatting and punctuation in  documentation.
1049         * libc/string/wcwidth.c: Likewise.
1050         * libm/common/s_modf.c: Remove extra period from documentation.
1051         * libm/math/s_isnan.c: Fix formatting, grammar and  punctuation in
1052         documentation.
1053         * libm/mathfp/s_isnan.c: Likewise.
1054         * libm/math/s_ldexp.c: Fix punctuation.
1055         * libm/mathfp/s_ldexp.c: Likewise.
1056         * libm/math/w_log.c: Likewise.
1057         * libm/mathfp/s_logarithm.c: Likewise.
1058         * libm/math/w_j0.c: Add spaces to FUNCTION description.
1059         * libm/mathfp/w_jn.c: Likewise. 
1060
1061 2005-10-26  Shaun Jackman  <sjackman@gmail.com>
1062
1063         * libc/posix/scandir.c (scandir): Update the function
1064         prototype to match the header.
1065         * libc/sys/linux/linuxthreads/bits/libc-lock.h: Remove an
1066         extraneous #endif.
1067         * libc/sys/linux/sys/lock.h: Do not include
1068         machine/weakalias.h, since it's not used by this file.
1069
1070 2005-10-26  Jeff Johnston  <jjohnstn@redhat.com>
1071
1072         * libc/Makefile.am: Reorder SUBLIBS so machine and sys
1073         directories can override properly.
1074
1075 2005-10-20  Jeff Johnston  <jjohnstn@redhat.com>
1076
1077         * libc/include/math.h (HUGE_VAL, HUGE_VALF, HUGE_VALL): When
1078         gcc is 3.3 or greater, use special gcc builtins.
1079
1080 2005-10-20  Corinna Vinschen <corinna@vinschen.de>
1081
1082         * libc/include/sys/time.h: Declare futimes and lutimes for Cygwin.
1083
1084 2005-10-18  Corinna Vinschen <corinna@vinschen.de>
1085
1086         * libc/include/sys/features.h: Define _POSIX_MEMLOCK_RANGE for Cygwin.
1087
1088 2005-10-14  Jeff Johnston  <jjohnstn@redhat.com>
1089
1090         * libc/include/math.h (HUGE_VALF, HUGE_VALL): New.
1091         * libm/common/Makefile.am: Add s_infconst.c support.
1092         * libm/common/Makefile.in: Regenerated.
1093         * libm/common/s_infconst.c: New file with float and
1094         long double infinity support added.
1095         * libm/math/Makefile.am: Remove s_infconst.c support.
1096         * libm/math/Makefile.in: Regenerated.
1097         * libm/math/s_infconst.c: Moved to common directory.
1098         * libm/mathfp/Makefile.am: Remove s_infconst.c support.
1099         * libm/mathfp/Makefile.in: Regenerated.
1100         * libm/mathfp/s_infconst.c: Moved to common directory.
1101
1102 2005-10-14  Jeff Johnston  <jjohnstn@redhat.com>
1103
1104         * libc/sys/linux/net/gethostbydns.c (dprintf): Rename to
1105         dbgprintf to prevent conflict with new dprintf function.
1106
1107 2005-10-14  Jeff Johnston  <jjohnstn@redhat.com>
1108
1109         * libc/stdio/vfprintf.c (_VFPRINTF_R): Fix up "inf" and
1110         "nan" processing for systems that have long double support.
1111
1112 2005-10-14  Jeff Johnston  <jjohnstn@redhat.com>
1113
1114         * libc/sys/linux/sys/types.h (int8_t): Add type.
1115
1116 2005-10-14  Bob Wilson  <bob.wilson@acm.org>
1117
1118         * libm/common/Makefile.am (doc): Do not append to $(TARGETDOC).
1119         * libm/common/Makefile.in: Regenerate.
1120         * libm/common/common.tex: Delete file.
1121         * libm/math/math.tex: Include .def files from common/.
1122         * libm/mathfp/mathfp.tex: Likewise.
1123
1124 2005-10-14  Bob Wilson  <bob.wilson@acm.org>
1125
1126         * libc/libc.texinfo (Top): Surround this node with @ifnottex
1127         instead of @ifinfo.  Update menu to add Introduction and match
1128         SUBDIRS order.
1129         (Introduction): New section.
1130
1131 2005-10-14  Bob Wilson  <bob.wilson@acm.org>
1132
1133         * libc/reent/reent.tex (Reentrancy): Replace "Cygnus C Library"
1134         with "Red Hat newlib C Library".
1135         * libc/sys.tex (Stubs): Likewise.
1136         * libm/math/math.tex (Math): Likewise.
1137         * libm/mathfp/mathfp.tex (Math): Likewise.
1138
1139 2005-10-11  Shaun Jackman  <sjackman@gmail.com>
1140
1141         * libc/include/stdio.h (dprintf): New declaration.
1142         (vdprintf): Ditto.
1143         * libc/stdio/Makefile.am (GENERAL_SOURCES): Add dprintf.c
1144         and vdprintf.c.
1145         * libc/stdio/Makefile.in: Regenerate.
1146         * libc/stdio/dprintf.c: New file.
1147         * libc/stdio/vdprintf.c: New file.
1148         * libc/stdio/stdio.tex (dprintf): New entry.
1149
1150 2005-10-11  David Weatherford  <weath@tensilica.com>
1151
1152         * libc/stdio/vfprintf.c (_VFPRINTF_R): Recognize 'F' format.
1153         Print "inf" and "nan" in lowercase for e/f/g formats and in 
1154         uppercase for E/F/G formats.
1155
1156 2005-10-07  Bob Wilson  <bob.wilson@acm.org>
1157
1158         * libc/stdlib/mallocr.c (mALLOc, rEALLOCc, mEMALIGn): Set errno
1159         to ENOMEM on failure.
1160
1161 2005-10-06  Ralf Corsepius <ralf.corsepius@rtems.org>
1162
1163         * libc/include/stdint.h: Add [u]int_fast<N>_t types.
1164
1165 2005-10-04  Ralf Corsepius <ralf.corsepius@rtems.org>
1166
1167         * libc/include/stdint.h: Move magic to set __have_long* to the
1168         beginning.  Use #if __have* instead of #if defined(__have*).
1169         Minor typo fixes.
1170
1171 2005-10-04  James E Wilson  <wilson@specifix.com>
1172
1173         * libc/include/sys/dirent.h (_DIRENT_H_): Delete #include_next.  Add
1174         #error.
1175
1176 2005-10-03  Jeff Johnston  <jjohnstn@redhat.com>
1177
1178         * libc/sys/linux/include/stdint.h: Include <sys/types.h> and
1179         incorporate Ralf's change below.
1180
1181 2005-10-03  Ralf Corsepius <ralf.corsepius@rtems.org>
1182
1183         * libc/include/stdint.h: 
1184         Use __INTMAX_TYPE__ to derive intmax_t.
1185         Use __UINTMAX_TYPE__ to derive uintmax_t.
1186         Fix minor typo.
1187
1188 2005-09-27  Ralf Corsepius <ralf.corsepius@rtems.org>
1189
1190         * libc/include/stdint.h: Correct __STDINT_EXP macro incorrectly 
1191         handling GCC >= 4.
1192
1193 2005-09-20  Jeff Johnston  <jjohnstn@redhat.com>
1194
1195         * libc/sys/linux/include/stdint.h: Update to match functionality
1196         of generic newlib stdint.h.
1197
1198 2005-09-20  Jeff Johnston  <jjohnstn@redhat.com>
1199
1200         * libc/include/stdint.h (__EXP): Rename to __STDINT_EXP
1201         and do not #undef the macro after it is used.  Fix typos.
1202         Also change 64-bit constants to use the __have_long64 and
1203         __have_longlong64 flags to determine if long or long long
1204         constants should be used.
1205         * libc/include/inttypes.h: Include stddef.h to get wchar_t
1206         type defined.
1207
1208 2005-09-20  Shaun Jackman  <sjackman@gmail.com>
1209
1210         * libc/include/stdint.h: Fix typo in names of
1211         LEAST macros.
1212
1213 2005-09-20  Jeff Johnston  <jjohnstn@redhat.com>
1214
1215         * libc/sys/rtems/include/inttypes.h: Moved to...
1216         * libc/include/inttypes.h: ...here.
1217
1218 2005-09-19  Jeff Johnston  <jjohnstn@redhat.com>
1219
1220         * libc/sys/rtems/include/stdint.h: Moved to...
1221         * libc/include/stdint.h: ...here.
1222
1223 2005-09-08  Jeff Johnston  <jjohnstn@redhat.com>
1224
1225         * Makefile.am: Add include files under bits sub-directory.
1226         * Makefile.in: Regenerated.
1227         * libc/sys/linux/argp/argp-fs-xinl.c: Set __OPTIMIZE__ to
1228         actual value of 1 to be compatible with newer glibc headers.
1229         * libc/sys/linux/sys/cdefs.h: Fix to be compatible with newer
1230         glibc headers.
1231         * libc/sys/linux/sys/dirent.h: Ditto.
1232         * libc/sys/linux/argp/argp-xinl.c: Ditto.
1233         * libc/sys/linux/dl/dl-runtime.c: Make sure fixup and
1234         profile_fixup routines are marked used so they won't be
1235         optimized away.
1236         * libc/sys/linux/dl/dl-cache.c: Don't use weak_extern macro
1237         to mark functions as weak.
1238         * libc/sys/linux/dl/dl-open.c: Ditto.
1239         * libc/sys/linux/iconv/gconv_open.c: Fix to obey new gcc4
1240         rules about lvalues.
1241         * libc/sys/linux/iconv/gconv_simple.c: Ditto.
1242         * libc/sys/linux/linuxthreads/bits/libc-lock.h: Don't use
1243         weak_extern macro to mark functions as weak.  Instead always
1244         use #pragma weak.
1245         * iconvdata/jis0208.h: Fix to work with gcc4.
1246         * libc/sys/linux/dl/dl-load.c: Ditto.
1247         * libc/sys/linux/dl/dl-reloc.c: Ditto.
1248         * libc/sys/linux/dl/do-rel.h: Ditto.
1249         * libc/sys/linux/dl/dynamic-link.h: Ditto.
1250         * libc/sys/linux/include/ltdl.h: Ditto.
1251         * libc/sys/linux/machine/i386/dl-machine.h: Ditto.
1252         * libc/sys/linux/machine/i386/weakalias.h: Ditto.
1253         * libc/sys/linux/net/ns_ntoa.c: Ditto.
1254         * libc/sys/linux/bits/initspin.h: New file.
1255         * libc/sys/linux/bits/libc-lock.h: Ditto.
1256         * libc/sys/linux/bits/pthreadtypes.h: Ditto.
1257         * libc/sys/linux/bits/typesizes.h: Ditto.
1258
1259 2005-09-08  Eric Blake  <ebb9@byu.net>
1260
1261         * libc/argz/argz_insert.c (argz_insert): Don't die with EINVAL when
1262         before is NULL.
1263
1264 2005-09-08  Brian Dessent  <brian@dessent.net>
1265
1266         * sf_lrint.c (lrintf): Mask 'i0' correctly when extracting
1267         mantissa.
1268         * s_lrint.c: Ditto.
1269
1270 2005-09-02  Jeff Johnston  <jjohnstn@redhat.com>
1271
1272         * libc/include/stdio.h: Add prototype for viprintf.
1273
1274 2005-09-01  Jeff Johnston  <jjohnstn@redhat.com>
1275
1276         * libm/mathfp/s_pow.c: (pow): Change code so 0 raised to
1277         any positive power results in 0.
1278         * libm/mathfp/sf_pow.c (powf): Ditto.
1279
1280 2005-08-31  Paul Brook  <paul@codesourcery.com>
1281
1282         * configure.host: Set have_crt0 to no for Arm targts when not
1283         providing syscalls.  Set sys_dir=arm unconditionally.
1284         Default have_crt0 based on sys_dir.
1285         * configure.in: Use have_crt0.
1286         * libc/configure.in: Ditto.
1287         * libc/sys/configure.in: Ditto.
1288         * configure: Regenerate.
1289         * libc/configure: Regenerate.
1290         * libc/sys/configure: Regenerate.
1291         * libc/sys/arm/Makefile.am (lib_a_SOURCES): Add aeabi_atexit.c.
1292         Only build other files when providing syscalls.
1293         * libc/sys/arm/Makefile.in: Regenerate.
1294         * libc/sys/arm/aeabi_atexit.c: New file.
1295
1296 2005-08-26  Christopher Faylor  <cgf@timesys.com>
1297
1298         * libc/include/string.h: Revert previous change.
1299
1300 2005-08-25  Christopher Faylor  <cgf@timesys.com>
1301
1302         * libc/include/string.h: For Cygwin, Define strerror_r as per ISO C.
1303
1304 2005-08-22  Shaun Jackman  <sjackman@gmail.com>
1305
1306         * libc/include/_syslist.h: If HAVE_OPENDIR is not defined,
1307         define _opendir as opendir, _readdir as readdir, and
1308         _closedir as closedir so that the implementations in
1309         libc/posix will be used.
1310
1311 2005-08-10  DJ Delorie  <dj@redhat.com>
1312
1313         * MAINTAINERS (CPU Ports): Add CPU port maintainer section.
1314
1315 2005-08-10  Stephen Huw Clarke  <stephen.clarke@st.com>
1316
1317         * libm/common/sf_fmax.c: Fix to properly handle NaNs.
1318         * libm/common/s_max.c: Ditto.
1319         * libm/common/sf_fmin.c: Ditto.
1320         * libm/common/s_min.c: Ditto.
1321
1322 2005-08-10  DJ Delorie  <dj@redhat.com>
1323
1324         * configure.host: Add m32c support.
1325         * libc/include/machine/ieeefp.h: Likewise.
1326         * libc/include/machine/setjmp.h: Likewise.
1327         * libc/include/sys/config.h: Likewise.
1328         * libc/machine/m32c: New directory, Renesas R8C/M16C/M32C support.
1329         * libc/machine/m32c/aclocal.m4: New file.
1330         * libc/machine/m32c/configure: Ditto.
1331         * libc/machine/m32c/configure.in: Ditto.
1332         * libc/machine/m32c/Makefile.am: Ditto.
1333         * libc/machine/m32c/Makefile.in: Ditto.
1334         * libc/machine/m32c/setjmp.S: Ditto.
1335
1336 2005-08-02  Bob Wilson  <bob.wilson@acm.org>
1337
1338         * libm/math/ef_hypot.c (__ieee754_hypotf): Add missing exponent bias
1339         to the value for 2^126.
1340
1341 2005-07-26  Hans-Peter Nilsson  <hp@bitrange.com>
1342
1343         * libc/machine/cris/libcdtor.c (defaultors): Mark artificially as
1344         used.
1345
1346 2005-07-20  Bob Wilson  <bob.wilson@acm.org>
1347            Darin Petkov <darin@tensilica.com>
1348
1349        * libm/math/ef_atan2.c (pi, pi_lo): Use round-to-nearest value of pi.
1350
1351 2005-07-19  Paul Brook  <paul@codesourcery.com>
1352
1353         * libc/sys/arm/crt0.S: Ensure doubleword stack alignment.
1354
1355 2005-07-18  Joseph S. Myers  <joseph@codesourcery.com>
1356
1357         * testsuite/lib/checkoutput.exp (newlib_check_output): Use test
1358         names after PASS and FAIL which do not depend on source directory
1359         name or on whether test passed or failed.
1360         * testsuite/lib/passfail.exp (newlib_pass_fail): Likewise.
1361
1362 2005-07-08  Ola Hugosson   <Ola.Hugosson@anoto.com>
1363
1364         * libc/string/wcsspn.c (wcsspn): Add missing increment of q.
1365
1366 2005-07-07  Shaun Jackman  <sjackman@gmail.com>
1367
1368         * libc/unix/ttyname.c (ttyname): Avoid calling _closedir
1369         twice for the same directory. _closedir calls free, and freeing
1370         the same pointer twice may cause a crash.
1371
1372 2005-07-06  Aldy Hernandez  <aldyh@redhat.com>
1373
1374         * configure.host: Added entry for ms1*.
1375         * libc/include/machine/ieeefp.h: Handle ms1.
1376         * libc/include/machine/setjmp.h (_JBLEN): Define for ms1.
1377         * libc/machine/ms1/aclocal.m4: New.
1378         * libc/machine/ms1/configure: New.
1379         * libc/machine/ms1/configure.in: New.
1380         * libc/machine/ms1/Makefile.am: New.
1381         * libc/machine/ms1/Makefile.in: New.
1382         * libc/machine/ms1/setjmp.S: New.
1383
1384 2005-07-04  Mark Mitchell  <mark@codesourcery.com>
1385
1386         * Makefile.am (site.exp): Set tmpdir.
1387         * Makefile.in: Regenerated.
1388         * testsuite/lib/checkoutput.exp (newlib_check_output): Put
1389         executables in $tmpdir.
1390         * testsuite/lib/flags.exp (libgloss_link_flags): Use the original
1391         libgloss version if not running in the build directory.
1392         * testsuite/lib/newlib.exp (newlib_init): Put testglue.o in
1393         $tmpdir.
1394         * testsuite/lib/passfail.exp (newlib_pass_fail): Put executables
1395         in $tmpdir.
1396
1397 2005-06-28  Dave Korn  <dave.korn@artimi.com>
1398
1399         * libm/common/s_lrint.c (lrint):  Fix signed-vs-unsigned comparison
1400         and miscalculation caused by fp representation of zero.
1401         * libm/common/sf_lrint.c (lrintf):  Likewise.
1402
1403 2005-06-16  Christopher Faylor  <cgf@timesys.com>
1404
1405         * libc/stdio/vfprintf.c (cvt): Don't rely on pointer aliasing to
1406         determine characteristics of long double.  Use a union instead.
1407         * ldtoa.c (_ldtoa_r): Ditto.
1408         (_ldcheck): Ditto.
1409         (_strtold): Ditto.
1410         (union uconv): New union.
1411
1412 2005-06-03  Jeff Johnston  <jjohnstn@redhat.com>
1413
1414         * libc/stdlib/mallocr.c (MALLOC_COPY): Switch to use memmove
1415         instead of memcpy.
1416
1417 2005-05-12  Jeff Johnston  <jjohnstn@redhat.com>
1418
1419         * configure.host (mn10300-*): Add long long I/O support by default.
1420
1421 2005-05-12  Jeff Johnston  <jjohnstn@redhat.com>
1422
1423         * libc/sys/linux/getpwuid.c: Removed.
1424         * libc/sys/linux/getpwnam.c: Removed.
1425         * libc/sys/linux/getpwent.c: New file containing logic
1426         from files removed above.  This allows overriding of file
1427         in libc/unix.
1428         * libc/sys/linux/Makefile.am: Support changes above.
1429         * libc/sys/linux/Makefile.in: Regenerated.
1430
1431 2005-04-28  Jeff Johnston  <jjohnstn@redhat.com>
1432
1433         * libc/stdio/vfscanf.c (__svfscanf_r): Fix code thinko
1434         when checking for multiple flags.
1435
1436 2005-04-18  Hans-Peter Nilsson  <hp@axis.com>
1437
1438         * configure.host <cris-*-* | crisv32-*-*>: Set
1439         default_newlib_io_long_long="yes".
1440
1441 2005-04-08  Jeff Johnston  <jjohnstn@redhat.com>
1442
1443         * libc/include/libgen.h: New file.
1444
1445 2005-04-08  Shaun Jackman  <sjackman@gmail.com>
1446
1447         * libc/unix/Makefile.am: Add support for basename and dirname.
1448         * libc/unix/Makefile.in: Regenerated.
1449         * libc/unix/basename.c: New file.
1450         * libc/unix/dirname.c: New file.
1451
1452 2005-04-07  Shaun Jackman  <sjackman@gmail.com>
1453
1454         * libc/sys/linux/inode.c (lchown): New function.
1455
1456 2005-04-07  Shaun Jackman  <sjackman@gmail.com>
1457
1458         * libc/unix/Makefile.am (LIB_OBJS): Include all the ELIX objects if no
1459         ELIX level is defined.
1460         * libc/unix/Makefile.in: Regenerated.
1461
1462 2005-04-05  Dave Korn  <dave.korn@artimi.com>
1463
1464         * libc/stdio/vfscanf.c (__svfscanf_r): If an error occurs processing
1465         something that looks like a "NaN", put back the characters processed.
1466
1467 2005-04-01  Corinna Vinschen  <corinna@vinschen.de>
1468
1469         * libc/stdlib/strtod.c (_strtod_r): Never change s00.
1470
1471 2005-03-23  Christopher Faylor  <cgf@timesys.com>
1472
1473         * configure.host: For cygwin, redefine CC with cygwin include directory
1474         first to mimic the behavior of the top-level configury.  Move include
1475         directory out of newlib_cflags.
1476
1477 2005-03-22  Jeff Johnston  <jjohnstn@redhat.com>
1478
1479         * configure.host: For arc, set -DREENTRANT_SYSCALLS_PROVIDED flag on.
1480         * libc/sys/arc/syscalls.c: Change functions to use __errno_r rather 
1481         than errno.
1482
1483 2005-03-22  Christopher Faylor  <cgf@timesys.com>
1484
1485         * libc/include/machine/_types.h: Make trivial change to comment to
1486         avoid a spurious warning from gcc.
1487
1488 2005-03-21  Nicholas Wourms  <nwourms@netscape.net>
1489
1490         * libc/stdio/vfprintf.c: Move newlib.h before _WANT_IO_POS_ARGS test,
1491         since _WANT_IO_POS_ARGS is now defined in there.  Remove duplicate
1492         reent.h include.
1493
1494 2005-03-18  Hans-Peter Nilsson  <hp@axis.com>
1495             Corinna Vinschen  <corinna@vinschen.de>
1496
1497         * libc/include/ctype.h: Remove invalid +1 offset from
1498         ctype macro references to __ctype_ptr.
1499         (_ctype_): Move declaration outside #ifndef __cplusplus.
1500
1501 2005-03-18  Corinna Vinschen  <corinna@vinschen.de>
1502
1503         * libc/include/machine/setjmp.h (sigsetjmp): Use GCC extension to
1504         evaluate first parameter only once.
1505         (siglongjmp): Ditto.
1506
1507 2005-03-17  Jeff Johnston  <jjohnstn@redhat.com>
1508
1509         * configure.in: Add new check to see if compiler supports
1510         aliasing of arrays and define _HAVE_ARRAY_ALIASING if true.
1511         * configure: Regenerated.
1512         * Makefile.in: Ditto.
1513         * newlib.hin: Add _HAVE_ARRAY_ALIASING.
1514         * libc/ctype/ctype_.c: Check for _HAVE_ARRAY_ALIASING before
1515         aliasing the _ctype_ array to _ctype_b.
1516         * libc/include/ctype.h: Change macros to use __ctype_ptr.  Mark
1517         _ctype_ as deprecated.
1518
1519 2005-03-17  Hans-Peter Nilsson  <hp@axis.com>
1520
1521         * configure.host (newlib_cflags) <cris-*-*, crisv32-*-*>: Add
1522         -DCOMPACT_CTYPE.
1523
1524 2005-03-06  Ralf Corsepious  <ralf.corsepius@rtems.org>
1525
1526         * libc/sys/rtems/include/inttypes.h: New file.
1527         * libc/sys/rtems/include/stdint.h: Ditto.
1528
1529 2005-03-06  Ralf Corsepious  <ralf.corsepius@rtems.org>
1530
1531         * libc/string/memcmp.c: Fix to avoid pointer signedness warning.
1532
1533 2005-03-06  Ralf Corsepious  <ralf.corsepius@rtems.org>
1534
1535         * libc/include/machine/_types.h: New file.
1536         * libc/include/sys/types.h: Do not check for __rtems__
1537         when including <machine/_types.h>.  Remove some redundant
1538         declarations now that <machine/_types.h> is included.
1539         * libc/sys/rtems/machine/_types.h: Removed.  Replaced with
1540         shared header file.
1541
1542 2005-02-25  Ralf Corsepious  <ralf.corsepius@rtems.org>
1543
1544         * libm/common/fdlibm.h (FLT_UWORD_MAX, FLT_UWORD_HALF_MAX): Add
1545         L qualifier for these long constants.
1546
1547 2005-02-25  Eric Blake  <ebb9@byu.net>
1548
1549         * libc/include/time.h (__tzrule_struct): Make offset long, since
1550         a 16-bit int overflows on a 12-hour offset.
1551         * libc/sys/linux/include/time.h: Ditto.
1552         * libc/time/mktime.c (mktime): Use new type of __tzrule.offset.
1553         * libc/time/mktm_r.c: Ditto.
1554         * libc/time/gettzinfo.c: Ditto.
1555         * libc/time/strftime.c (strftime): Fix '%x' to deal with negative
1556         years.  Fix '%z' to use long, not int.
1557
1558 2005-02-24  Ralf Corsepious  <ralf.corsepius@rtems.org>
1559
1560         * libm/common/s_fpclassify.c: Use __uint32_t instead of int to
1561         manipulate float values in integer form.
1562         * libm/common/sf_round.c: Ditto.
1563
1564 2005-02-24  Ralf Corsepious  <ralf.corsepius@rtems.org>
1565
1566         * libc/include/sys/types.h [__rtems__]: Include new
1567         header file machine/_types.h.
1568         * libc/include/machine/types.h: Ditto.
1569         * libc/sys/rtems/machine/_types.h: New file.
1570
1571 2005-02-23  Corinna Vinschen  <corinna@vinschen.de>
1572
1573         * libc/include/time.h (_timezone): Change to long also for Cygwin.
1574         (timezone): Drop cast from definition.
1575
1576 2005-02-23  Jeff Johnston  <jjohnstn@redhat.com>
1577
1578         * libc/include/time.h [!CYGWIN](_timezone): Change to long.
1579         (__tzrule_type, __tzinfo_type): New types.
1580         (__gettzinfo): New function.
1581         * libc/sys/linux/include/time.h: Ditto.
1582         * libc/time/Makefile.am: Add gettzinfo.c.
1583         * libc/time/Makefile.in: Regenerated.
1584         * libc/time/local.h: Moved __tzrule_type to time.h.
1585         * libc/time/mktime.c: Call __gettzinfo to reference
1586         __tznorth, __tzyear, and __tzrule array.
1587         * libc/time/mktm_r.c: Ditto.
1588         * libc/time/strftime.c: Ditto.
1589         * libc/time/tzset_r.c: Ditto.  Also remove definition
1590         of __tzrule which is now in gettzinfo.c.  Change _timezone
1591         references to not cast to time_t.
1592         * libc/time/gettzinfo.c: New file.
1593
1594 2005-02-23  Corinna Vinschen  <corinna@vinschen.de>
1595
1596         * libc/include/sys/unistd.h: Define getpeereid for Cygwin.
1597
1598 2005-02-22  Corinna Vinschen  <corinna@vinschen.de>
1599
1600         * libc/include/sys/unistd.h: Define fdatasync also for Cygwin.
1601
1602 2005-02-16  Eric Blake  <ebb9@byu.net>
1603
1604         * libc/time/time.tex: Improve the documentation.
1605         * libc/time/strftime.c: Improve the documentation.
1606         (iso_year_adjust): New helper function.
1607         (strftime): Simplify '%E' and '%O'. Change '%c' to use
1608         recursion. Fix '%C', '%y', and '%Y' to deal with years with more
1609         than 4 characters.  Combine '%d' and '%e'. Implement '%D', '%F',
1610         '%g', '%G', '%n', '%R', '%t', '%T', '%u', '%V', '%X', and '%z'.
1611         Avoid core dumps on valid inputs (maxsize == 0, or
1612         tim_p->tm_isdst > 1).
1613
1614 2005-02-08  Corinna Vinschen  <corinna@vinschen.de>
1615
1616         * libc/include/pwd.h (struct passwd): Change pw_uid and pw_gid
1617         members to uid_t and gid_t according to SUSv3.
1618         * libc/include/sys/time.h (utimes):  Change second parameter
1619         to const according to SUSv3.
1620
1621 2005-02-07  Antony King  <antony.king@st.com>
1622
1623         * libc/stdio/clearerr.c (clearerr): Ensure CHECK_INIT() is
1624         called before _flockfile to prevent lock object use before
1625         initialisation. _REENT_SMALL_CHECK_INIT() and CHECK_INIT()
1626         take a struct _reent * instead of a FILE *.
1627         * libc/stdio/fclose.c (_fclose_r): Ditto.
1628         * libc/stdio/feof.c (feof): Ditto.
1629         * libc/stdio/ferror.c (ferror): Ditto.
1630         * libc/stdio/fflush.c (fflush): Ditto.
1631         * libc/stdio/fgetc.c (fgetc): Ditto.
1632         * libc/stdio/fgets.c (fgets): Ditto.
1633         * libc/stdio/fileno.c (fileno): Ditto.
1634         * libc/stdio/fputc.c (fputc): Ditto.
1635         * libc/stdio/fputs.c (fputs): Ditto.
1636         * libc/stdio/fread.c (fread): Ditto.
1637         * libc/stdio/freopen.c (_freopen_r): Ditto.
1638         * libc/stdio/fseek.c (_fseek_r): Ditto.
1639         * libc/stdio/ftell.c (_ftell_r): Ditto.
1640         * libc/stdio/fwrite.c (fwrite): Ditto.
1641         * libc/stdio/getc.c (getc): Ditto.
1642         * libc/stdio/getdelim.c (__getdelim): Ditto.
1643         * libc/stdio/putc.c (putc): Ditto.
1644         * libc/stdio/setvbuf.c (setvbuf): Ditto.
1645         * libc/stdio/ungetc.c (_ungetc_r): Ditto.
1646         * libc/stdio/vfprintf.c (_VFPRINTF_R): Ditto.
1647         * libc/stdio64/freopen64.c (_freopen64_r): Ditto.
1648         * libc/stdio64/fseeko64.c (_fseeko64_r): Ditto.
1649         * libc/stdio64/ftello64.c (_ftello64_r): Ditto.
1650         * libc/stdio/local.h (CHECK_INIT): Argument is now a struct
1651         _reent * instead of a FILE * and so replace incorrect use of
1652         _REENT with argument.
1653         * libc/sys/arm/syscalls.c (CHECK_INIT): Ditto.
1654         * libc/stdio/getchar.c (getchar): _REENT_SMALL_CHECK_INIT() and
1655         CHECK_INIT() take a struct _reent * instead of a FILE *.
1656         * libc/stdio/iprintf.c (iprintf, _iprintf_r): Ditto.
1657         * libc/stdio/iscanf.c (iscanf, _iscanf_r): Ditto.
1658         * libc/stdio/perror.c (perror): Ditto.
1659         * libc/stdio/printf.c (printf, _printf_r): Ditto.
1660         * libc/stdio/putchar.c (putchar): Ditto.
1661         * libc/stdio/puts.c (puts): Ditto.
1662         * libc/stdio/refill.c (__srefill): Ditto.
1663         * libc/stdio/scanf.c (scanf, _scanf_r): Ditto.
1664         * libc/stdio/vfscanf.c (VFSCANF, _VFSCANF_R): Ditto.
1665         * libc/stdio/viprintf.c (viprintf, _viprintf_r): Ditto.
1666         * libc/stdio/viscanf.c (viscanf, _viscanf_r): Ditto.
1667         * libc/stdio/vprintf.c (vprintf, _vprintf_r): Ditto.
1668         * libc/stdio/vscanf.c (vscanf, _vscanf_r): Ditto.
1669         * libc/stdio/wbuf.c (__swbuf): Ditto.
1670         * libc/stdio/wsetup.c (__swsetup): Ditto.
1671         * libc/stdlib/mallocr.c (malloc_stats): Ditto.
1672         * libc/stdlib/mstats.c (_mstats_r): Ditto.
1673         * libc/include/sys/reent.h (_REENT_SMALL_CHECK_INIT): Ditto.
1674         * libc/machine/powerpc/vfscanf.c (vfscanf): Ditto.
1675         * libc/stdio/fgetpos.c (_fgetpos_r): Removed unnecessary calls
1676         to _flockfile and _funlockfile; rely on locking in _ftell_r.
1677         * libc/stdio64/fgetpos64.c (_fgetpos64_r): Ditto (_ftello64_r).
1678         * libc/machine/powerpc/vfprintf.c (__sbprintf): Removed unnecessary
1679         initialision of _data field in FILE structure.
1680         * libc/machine/powerpc/vfprintf.c (VFPRINTF): Added CHECK_INIT() call.
1681
1682 2005-02-07  Jeff Johnston  <jjohnstn@redhat.com>
1683
1684         * libc/stdio/findfp.c (__sinit): Protect with new lock.
1685         (__sinit_lock): New lock.
1686         (__sinit_lock_acquire, __sinit_lock_release): New functions.
1687         * libc/stdio/local.h: Add reference to new __sinit locking
1688         functions.
1689
1690 2005-02-07  Jeff Johnston  <jjohnstn@redhat.com>
1691
1692         * libc/include/math.h (isfinite, isnormal, isunordered): Change
1693         input variable names to avoid mixups with nesting macros.
1694
1695 2005-01-27  Hans-Peter Nilsson  <hp@axis.com>
1696
1697         * configure.host: Add support for cris-*-* and crisv32-*-*.
1698         * libc/include/machine/ieeefp.h: Ditto.
1699         * libc/include/machine/setjmp.h: Ditto.
1700         * libc/machine/cris/configure.in, libc/machine/cris/Makefile.am,
1701         libc/machine/cris/libcdtor.c, libc/machine/cris/setjmp.c,
1702         libc/machine/cris/memmove.c, libc/machine/cris/memcpy.c,
1703         libc/machine/cris/memset.c, libc/machine/cris/include/pthread.h,
1704         libc/machine/cris/sys/signal.h, libc/machine/cris/sys/fcntl.h,
1705         libc/machine/cris/sys/errno.h, libc/machine/cris/aclocal.m4,
1706         libc/machine/cris/configure, libc/machine/cris/Makefile.in: New
1707         files.
1708
1709 2005-01-27  Hans-Peter Nilsson  <hp@axis.com>
1710
1711         * testsuite/newlib.string/memmove1.c: New test.
1712
1713 2005-01-27  Hans-Peter Nilsson  <hp@axis.com>
1714
1715         * testsuite/include/check.h: Include stdlib.h.
1716
1717 2005-01-27  Hans-Peter Nilsson  <hp@axis.com>
1718
1719         * Makefile.am (stmp-targ-include): Support include header files
1720         from machine directories.
1721         (install-data-local): Ditto.
1722         * Makefile.in: Regenerate.
1723
1724 2005-01-24  Jeff Johnston  <jjohnstn@redhat.com>
1725
1726         * libc/include/string.h: Remove Linux-specific declaration of
1727         strsignal and add #include <sys/string.h>.
1728         * libc/include/sys/string.h: New file.
1729         * libc/include/sys/linux/sys/string.h: New file with strsignal
1730         declaration deleted above.
1731
1732 2005-01-20  Jeff Johnston  <jjohnstn@redhat.com>
1733
1734         * libc/time/strftime.c (strftime): Change %r and %x to be compliant
1735         to POSIX standard for "C" locale.  Allow %E and %O modifiers
1736         to be ignored as long as they precede valid specifiers according
1737         to POSIX.
1738
1739 2005-01-19  Shaun Jackman  <sjackman@gmail.com>
1740
1741         * libc/stdlib/setenv_r.c (_setenv_r): Call tzset() if the TZ
1742         environment variable is set.
1743
1744 2005-01-19  Shaun Jackman  <sjackman@gmail.com>
1745
1746         * tzset_r.c (_tzname): Add a comma.
1747
1748 2005-01-18  Aldy Hernandez  <aldyh@redhat.com>
1749
1750         * libc/machine/powerpc/vfprintf.c: Use _REENT when calling
1751         _VFPRINTF_R.
1752
1753 2005-01-07  Paul Brook  <paul@codesourcery.com>
1754                                                                                 
1755         * configure.in: Add test for .init_array.
1756         * configure: Regenerate.
1757         * newlib.hin: Add HAVE_INITFINI_ARRAY.
1758         * libc/misc/Makefile.am: Add init.c
1759         * libc/misc/Makefile.in: Regenerate.
1760         * libc/misc/init.c: New file.
1761         * libc/sys/arm/crt0.S: Call __libc_{init,fini}_array instead of
1762         _init/_fini if they exist.
1763                                                                                 
1764 2005-01-06  Jeff Johnston  <jjohnstn@redhat.com>
1765
1766         * libc/stdlib/strtod.c (_strtod_r): Add NaN support.
1767         * (strtof): Ditto.
1768         * libc/stdio/vfscanf.c (__svfscanf_r): Ditto.
1769         * Makefile.am (MATHOBJS_IN_LIBC): Add s_nan and sf_nan
1770         functions for use by strtod and strtof.
1771         * Makefile.in: Regenerated.
1772                                                                                 
1773 2005-01-06  Hans-Peter Nilsson  <hp@axis.com>
1774                                                                                 
1775         * libc/stdio/ftell.c (ftell_r): Add parenthesis for __SWR
1776         bit-test in combination with NULL test.
1777                                                                                 
1778 2005-01-06  Hans-Peter Nilsson  <hp@axis.com>
1779                                                                                 
1780         * README: Fix typo of LGPL.  Change "license" to "copyright".
1781                                                                                 
1782 2004-12-17  Jeff Johnston  <jjohnstn@redhat.com>
1783
1784         * NEWS: Update with 1.13.0 info.
1785         * README: Ditto.
1786         * acinclude.m4: Change version number to 1.13.0.
1787         * aclocal.m4: Regenerated.
1788         * configure: Ditto.
1789         * doc/aclocal.m4: Ditto.
1790         * doc/configure: Ditto.
1791         * libc/*/aclocal.m4: Ditto.
1792         * libc/*/configure: Ditto.
1793         * libc/libc.texinfo: Ditto.
1794         * libm/*/aclocal.m4: Ditto.
1795         * libm/*/configure: Ditto.
1796         * libm/libm.texinfo: Ditto.
1797         * libc/sys/linux/shared.ld: Add VERS_1.13.
1798
1799 2004-12-17  Christian Groessler  <chris@groessler.org>
1800
1801         * libc/machine/z8k/memcmp.S: New file.
1802         * libc/machine/z8k/memcpy.S: Ditto.
1803         * libc/machine/z8k/memmove.S: Ditto.
1804         * libc/machine/z8k/memset.S: Ditto.
1805         * libc/machine/z8k/Makefile.am: Add new files.
1806         * libc/machine/z8k/Makefile.in: Regenerated.
1807         * libc/machine/z8k/setjmp.S: Fix indirect register usage in Z8002
1808         part.  Implement Z8002 stdcall version.
1809
1810 2004-12-13  Jeff Johnston  <jjohnstn@redhat.com>
1811
1812         * libc/stdio/fread.c (fread): For unbuffered I/O, attempt
1813         a low-level read if we don't get the full amount of bytes so
1814         EOF or error flags will be set.
1815
1816 2004-12-09  Alex Mogilnikov  <alx@intellectronika.ru>
1817
1818         * libc/time/tzset_r (_tzset_r): Properly skip over
1819         '/' when it is detected.
1820
1821 2004-12-08  Alex Mogilnikov  <alx@intellectronika.ru>
1822
1823         * libc/time/tzset_r (_tzset_r): Fix loop.
1824
1825 2004-12-08  Alex Mogilnikov  <alx@intellectronika.ru>
1826
1827         * libc/time/mktm_r (_mktm_r): Fix overflow calculation for
1828         m_day.
1829         (__tzcalc_limits): Fix reference to month array to be zero-based.
1830
1831 2004-12-07  Jeff Johnston  <jjohnstn@redhat.com>
1832
1833         * libc/sys/linux/sys/unistd.h: Add prototypes for ftruncate, truncate,
1834         and usleep.
1835
1836 2004-12-03  Jeff Johnston  <jjohnstn@redhat.com>
1837
1838         * Makefile.am (libc_la_LDFLAGS): Add -lgcc to handle any
1839         libgcc dependencies.
1840         (libm_la_LDFLAGS): Ditto.
1841         * Makefile.in: Regenerated.
1842
1843 2004-12-03  Shaun Jackman  <sjackman@gmail.com>
1844
1845         * libc/sys/linux/linuxthreads/Makefile.am (install-data-local): Fix
1846         our link to use readlink so as to preserve any relative link created
1847         by install-toollibLIBRARIES.
1848         * libc/sys/linux/linuxthreads/Makefile.in: Regenerated.
1849
1850 2004-12-02  Shaun Jackman  <sjackman@gmail.com>
1851
1852         * libc/sys/linux/stdlib/glob.c: Include <sys/types.h> which defines
1853         time_t before including sys/stat.h, which uses it.
1854         * libc/sys/linux/sys/stat.h: Include <sys/types.h> and
1855         <linux/time.h> just prior to definition of __KERNEL__ so as to
1856         allow building on Debian Linux where otherwise, mktime would
1857         be redefined.
1858
1859 2004-11-26  Paul Brook  <paul@codesourcery.com>
1860
1861         * libc/sys/arm/crt0.S (_start): Add .cantunwind annotation.
1862                                                                                 
1863 2004-11-24  Jeff Johnston  <jjohnstn@redhat.com>
1864
1865         * libc/include/stdlib.h (putenv, _putenv_r): Change to remove
1866         const for value string parameter to match Single Unix and glibc.
1867         * libc/stdlib/putenv.c: Ditto.
1868         * libc/stdlib/putenv_r.c: Ditto.
1869
1870 2004-11-24  Jeff Johnston  <jjohnstn@redhat.com>
1871
1872         * libc/stdio/Makefile.am: Fix missing vfscanf.
1873         * libc/stdio/Makefile.in: Regenerated.
1874                                                                                 
1875 2004-11-23  Jeff Johnston  <jjohnstn@redhat.com>
1876                                                                                 
1877         * libc/include/stdio.h: Add new iprintf and iscanf variants.  Also
1878         do some reordering.
1879         * libc/machine/powerpc/vfscanf.c: Remove __sccl function.
1880         * libc/stdio/Makefile.am: Add support for new iprintf and iscanf
1881         family functions.
1882         * libc/stdio/Makefile.in: Regenerated.
1883         * libc/stdio/fiprintf.c: Remove doc to siprintf.c.
1884         * libc/stdio/iprintf.c: Ditto.
1885         * libc/stdio/local.h (__svfiscanf_r): New prototype.
1886         * libc/stdio/siprintf.c: Add docs for various iprintf family functions.
1887         * libc/stdio/sniprintf.c: Move docs to siprintf.c.
1888         * libc/stdio/stdio.tex: Add new functions.
1889         * libc/stdio/vfscanf.c: Split out __sccl function to separate
1890         file and add special name defines so this file can be used
1891         to build vfiscanf.o.
1892         * libc/stdio/asiprintf.c: New file.
1893         * libc/stdio/fiscanf.c: Ditto.
1894         * libc/stdio/iscanf.c: Ditto.
1895         * libc/stdio/sccl.c: Ditto.
1896         * libc/stdio/siscanf.c: Ditto.
1897         * libc/stdio/vasiprintf.c: Ditto.
1898         * libc/stdio/viprintf.c: Ditto.
1899         * libc/stdio/viscanf.c: Ditto.
1900         * libc/stdio/vsiprintf.c: Ditto.
1901         * libc/stdio/vsiscanf.c: Ditto.
1902         * libc/stdio/vsniprintf.c: Ditto.
1903
1904 2004-11-19  Shaun Jackman  <sjackman@gmail.com>
1905                                                                                 
1906         * libc/include/stdio.h: Add sniprintf.
1907         * libc/stdio/Makefile.am: Add sniprintf.c.
1908         * libc/stdio/Makefile.in: Regenerated.
1909         * libc/stdio/sniprintf.c: New file.
1910         * libc/stdio/stdio.tex: Add sniprintf.
1911                                                                                 
1912 2004-11-17  Christopher Faylor  <cgf@timesys.com>
1913
1914         * libc/stdio/refill.c (__srefill): Try again after EOF on Cygwin.  Clear
1915         EOF flag if successful.
1916
1917 2004-10-28  Christopher Faylor  <cgf@timesys.com>
1918
1919         * libc/include/sys/signal.h: Move <signal.h> include to bottom of file
1920         so that all relevant definitions have been performed for use in the
1921         include.
1922
1923 2004-10-26  Jason Tishler  <jason@tishler.net>
1924
1925         * libc/stdio/fread.c (fread): Fix return value for unbuffered
1926         fread.
1927
1928 2004-10-25  Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1929
1930         * libc/include/machine/setjmp.h: Add AVR support.
1931         * libc/sys/rtems/crt0.S [__AVR__]: Add __stack.
1932
1933 2004-10-08  Jeff Johnston  <jjohnstn@redhat.com>
1934                                                                                 
1935         * libc/include/sys/signal.h: If <signal.h> didn't include
1936         this header file, include <signal.h> to account for
1937         applications that take advantage that the two header
1938         files are the same in glibc.
1939                                                                                 
1940 2004-10-05  Tomer Levi  <Tomer.Levi@nsc.com>
1941
1942         * configure.host: Add support for crx.
1943         * libc/include/machine/ieeefp.h: Ditto.
1944         * libc/include/machine/setjmp.h: Ditto.
1945         * libc/machine/crx/Makefile.am: New file.
1946         * libc/machine/crx/configure.in: Ditto.
1947         * libc/machine/crx/setjmp.S: Ditto.
1948         * libc/machine/crx/getenv.c: Ditto.
1949         * libc/machine/crx/aclocal.m4: Generate.
1950         * libc/machine/crx/configure: Ditto.
1951         * libc/machine/crx/Makefile.in: Ditto.
1952         * libc/machine/crx/sys/asm.h: New file.
1953         * libc/machine/crx/sys/libh.h: Ditto.
1954         * libc/machine/crx/sys/syscall.h: Ditto.
1955
1956 2004-10-05  Jeff Johnston  <jjohnstn@redhat.com>
1957
1958         * Makefile.am (stmp-targ-include): Support sys header files
1959         from machine directories.
1960         * Makefile.in: Regenerated.
1961
1962 2004-10-04  Jeff Johnston  <jjohnstn@redhat.com>
1963
1964         * libc/stdio/vfscanf.c (__svfscanf_r): For int conversions,
1965         count skipped zero characters as part of the nread count for %n.
1966         * libc/machine/powerpc/vfscanf.c: Ditto.
1967
1968 2004-09-24  Jeff Johnston  <jjohnstn@redhat.com>
1969
1970         * libc/stdio/local.h: Include <stdlib.h>.
1971
1972 2004-09-24  Corinna Vinschen  <corinna@vinschen.de>
1973
1974         * libc/stdio/fread.c (fread): Include <malloc.h>.
1975
1976 2004-09-22  Jeff Johnston  <jjohnstn@redhat.com>
1977
1978         * libc/stdio/fread.c (fread):  For non-space-optimized case,
1979         add special code for unbuffered files to use user buffer and
1980         only require one low-level system read.
1981
1982 2004-09-21  Ian Lance Taylor  <ian@wasabisystems.com>
1983
1984         * libc/machine/xscale/setjmp.S: New file, copied from
1985         libc/machine/arm/setjmp.S.
1986         * libc/machine/xscale/Makefile.am (lib_a_SOURCES): Add setjmp.S.
1987         * libc/machine/xscale/Makefile.in: Regenerate.
1988
1989 2004-09-16  Antony King  <antony.king@st.com>
1990
1991         * libc/include/sys/lock.h: Replaced empty {} with (0) to conform
1992         with locking API.
1993         * libc/include/sys/stdio.h: (_flockfile)[!_SINGLE_THREAD]: Add 
1994         check for__SSTR in _flags and if set, skip lock request.
1995         (_funlockfile)[!SINGLE_THREAD]: Ditto.
1996         * libc/stdio/local.h (CHECK_INIT): Added check that _REENT is
1997         not NULL.
1998         * libc/stdio/siprintf.c (siprintf, _siprintf_r): Added missing
1999         initialisation of _file to -1 in local FILE.
2000         * libc/stdio/snprintf.c (snprintf, _snprintf_r): Ditto.
2001         * libc/stdio/sscanf.c (sscanf, _sscanf_r): Ditto.
2002         * libc/stdio/vsnprintf.c (vsnprintf, _vsnprintf_r): Ditto.
2003         * libc/stdio/vsscanf.c (_vsscanf_r): Ditto.
2004         * libc/stdio/sscanf.c (sscanf, _sscanf_r): Added __SSTR flag to
2005         _flags in local FILE to prevent locking.
2006         * libc/stdio/vsscanf.c (_vsscanf_r): Ditto.
2007
2008 2004-09-16  Antony King  <antony.king@st.com>
2009
2010         * libc/stdio/fwalk.c (_fwalk): Remove check for _GLOBAL_REENT
2011         and only walk the reentrancy parameter.
2012         (_fwalk_reent): Ditto.
2013         * libc/stdlib/exit.c: Remove out of date _REENT_ONLY check.
2014
2015 2004-09-16  Antony King  <antony.king@st.com>
2016
2017         * libc/stdio64/freopen64.c: Remove casting of fp lock to
2018         _LOCK_RECURSIVE_T.
2019
2020 2004-09-16  Antony King  <antony.king@st.com>
2021
2022         * libc/time/tzlock.c: Add default stubs that use generic
2023         locking code.
2024
2025 2004-09-16  Antony King  <antony.king@st.com>
2026
2027         * libc/ctype/ctype.tex: Added missing documentation.
2028         * libc/stdio/stdio.tex Ditto.
2029         * libc/stdlib/stdlib.tex Ditto.
2030         * libc/string/strings.tex Ditto.
2031         * libc/time/time.tex: Ditto.
2032         * libc/stdio/setbuffer.c: Removed setlinebuf documentation.
2033
2034 2004-09-15  Corinna Vinschen  <vinschen@redhat.com>
2035
2036         * libc/reent/impure.c (reent_data): Define as alias to impure_data
2037         when building for Cygwin.
2038         * libc/include/sys/reent.h (_GLOBAL_REENT): Revert definition to
2039         _global_impure_ptr.
2040
2041 2004-09-15  Jeff Johnston  <jjohnstn@redhat.com>
2042
2043         * configure.host: Reverting 2004-09-14 change as fix has occurred on
2044         Cygwin side.
2045         * configure.in: Ditto.
2046         * libc/configure.in: Ditto.
2047         * libc/sys/configure.in: Ditto.
2048         * configure: Ditto.
2049         * libc/configure: Ditto.
2050         * libc/sys/configure: Ditto.
2051         * libc/include/sys/reent.h: Ditto.
2052         * libc/stdlib/__atexit.c: Ditto.
2053         * libc/stdlib/__call_atexit.c: Ditto.
2054         * libc/stdlib/cxa_atexit.c: Ditto.
2055         * libc/stdlib/cxa_finalize.c: Ditto.
2056         * libc/sys/cygwin/Makefile.am: Removed again.
2057         * libc/sys/cygwin/Makefile.in: Ditto.
2058         * libc/sys/cygwin/aclocal.m4: Ditto.
2059         * libc/sys/cygwin/configure: Ditto.
2060         * libc/sys/cygwin/configure.in: Ditto.
2061         * libc/sys/cygwin/dummy.c: Ditto.
2062         * libc/sys/cygwin/sys/reent.h: Ditto.
2063
2064 2004-09-14  Jeff Johnston  <jjohnstn@redhat.com>
2065
2066         * configure.host: Add Cygwin sys directory.
2067         * configure.in: Do not set CRT0 for cygwin.
2068         * libc/configure.in: Ditto.
2069         * libc/sys/configure.in: Ditto.
2070         * configure: Regenerated.
2071         * libc/configure: Ditto.
2072         * libc/sys/configure: Ditto.
2073         * libc/include/sys/reent.h: Add __REENT_HAS_CXA_SUPPORT flag.
2074         * libc/stdlib/__atexit.c: Keep cxa support protected by new
2075         __REENT_HAS_CXA_SUPPORT flag.
2076         * libc/stdlib/__call_atexit.c: Ditto.
2077         * libc/stdlib/cxa_atexit.c: Ditto.
2078         * libc/stdlib/cxa_finalize.c: Ditto.
2079         * libc/sys/cygwin/Makefile.am: New file.
2080         * libc/sys/cygwin/Makefile.in: Ditto.
2081         * libc/sys/cygwin/aclocal.m4: Ditto.
2082         * libc/sys/cygwin/configure: Ditto.
2083         * libc/sys/cygwin/configure.in: Ditto.
2084         * libc/sys/cygwin/dummy.c: Ditto.
2085         * libc/sys/cygwin/sys/reent.h: Ditto.  This file is stabilized
2086         version of reent.h.
2087
2088 2004-09-13 Artem B. Bityuckiy  <dedekind@oktetlabs.ru>
2089
2090         * libc/iconv/iconv.tex: Updated with new content.
2091         * libc/iconv/lib/iconvnls.c: Reference ICONV_DEFAULT_NLSPATH
2092         instead of NLS_DEFAULT_NLSPATH.
2093         * libc/iconv/lib/iconvnls.h: Fix typo.
2094         * libc/include/sys/iconvnls.h: New file.
2095
2096 2004-09-09  Paul Brook  <paul@codesourcery.com>
2097
2098         * libc/include/sys/reent.h (struct _on_exit_args): Add _dso_handle
2099         and _is_cxa.
2100         (struct _atexit): Add _next when _REENT_SMALL.
2101         (struct _reent): Add _atexit0 when _REENT_SMALL.
2102         (_REENT_INIT_PTR): Adjust.
2103         * libc/stdlib/Makefile.am (GENERAL_SOURCES): Add __atexit.c and
2104         __call_exit.c.
2105         (EXTENDED_SOURCES): Add cxa_atexit.c and cxa_finalize.c.
2106         * libc/stdlib/Makefile.in: Regenerate.
2107         * libc/stdlib/__atexit.c: New file.
2108         * libc/stdlib/__call_atexit.c: New file.
2109         * libc/stdlib/atexit.h: Remove old definitions.  Add new.
2110         * libc/stdlib/atexit.c (atexit): Use __register_exitproc.
2111         * libc/stdlib/cxa_atexit.c: New file.
2112         * libc/stdlib/cxa_finalize.c: New file.
2113         * libc/stdlib/exit.c (exit): Use __call_exitprocs.
2114         * libc/stdlib/on_exit.c (on_exit): Use __register_exitproc.
2115         2004-09-09  Jeff Johnston  <jjohnstn@redhat.com>
2116         * libc/reent/reent.c [_REENT_SMALL]: Fix reference to
2117         _on_exit_args_ptr.
2118
2119 2004-08-23  Jeff Johnston  <jjohnstn@redhat.com>
2120
2121         * libc/include/sys/unistd.h (getpass): Change prototype to use
2122         const instead of __const.
2123
2124 2004-08-16  Nathan Sidwell  <nathan@codesourcery.com>
2125
2126         * libc/stdio/vfscanf.c (_NO_LONGLONG): Move out of FLOATING_POINT
2127         #if.
2128
2129 2004-08-12  Jeff Johnston  <jjohnstn@redhat.com>
2130
2131         * libc/sys/linux/sys/types.h (u64): New typedef to allow building
2132         on linux systems with glibc 2.3.3 installed.
2133         * libc/sys/linux/dl/dl-runtime.c: Fix prototypes for fixup and
2134         profile_fixup so newlib can build on fc3 system.
2135  
2136 2004-07-30  Alexandre Oliva  <aoliva@redhat.com>
2137
2138         Introduce SH2a support.
2139         2004-03-16  Corinna Vinschen  <vinschen@redhat.com>
2140         * libc/include/machine/ieeefp.h: Define _DOUBLE_IS_32BITS for
2141         __SH2A_SINGLE_ONLY__, too.
2142         * libc/machine/sh/asm.h: Define DELAYED_BRANCHES for __SH2A__, too.
2143         2004-02-24  Corinna Vinschen  <vinschen@redhat.com>
2144         * libc/sys/sh/crt0.S (start_l): Support sh2a-nofpu.  Fix comments.
2145         2004-02-10  DJ Delorie  <dj@redhat.com>
2146         * libc/sys/sh/crt0.S (start_l): Support sh2a.
2147
2148 2004-07-29  Jeff Johnston  <jjohnstn@redhat.com>
2149
2150         * libc/time/strptime.c: Correct full-name of "March" typo.
2151
2152 2004-07-16  Anil Paranjpe  <anilp1@kpitcummins.com>
2153
2154         * configure.host (h8300*-*-*): Default long long printing support. 
2155
2156 2004-07-16  Jeff Johnston  <jjohnstn@redhat.com>
2157
2158         * libc/stdio/fvwrite.c (_sfvwrite):  For asprintf family
2159         calls, if realloc fails, free up buffer as it is no longer
2160         used.
2161
2162 2004-07-07  Artem B. Bityuckiy  <dedekind@oktetlabs.ru>
2163
2164         * libc/iconv/iconv.tex: Updated to represent recent changes.
2165         * libc/iconv/lib/iconv.c: Documentation updated.
2166
2167 2004-07-07  Nick Clifton  <nickc@redhat.com>
2168
2169         * configure.host (newlib_cflags): Define PREFER_SIZE_OVER_SPEED
2170         for xStormy16.
2171
2172 2004-07-06  Chris Demetriou  <cgd@broadcom.com>
2173
2174         * configure.host (mips*-*-elf*): Default long long printing
2175         support.
2176
2177 2004-07-05  Jeff Johnston  <jjohnstn@redhat.com>
2178
2179         * libc/Makefile.am (libc.dvi): Add target and specify
2180         same dependencies as libc.info.
2181         * libc/Makefile.in: Regenerated.
2182         * libm/Makefile.am (libm.dvi): Add target and specify
2183         same dependencies as libm.info.
2184         * libm/Makefile.in: Regenerated.
2185
2186 2004-06-29  Artem B. Bityuckiy  <dedekind@oktetlabs.ru>
2187
2188         * acinclude.m4: Move --enable-newlib-iconv option back here.
2189         * configure.in: Remove --enable-newlib-iconv option.  Don't
2190         tie iconv support to --enable-newlib-mb.
2191         * aclocal.m4: Regenerated.
2192         * configure: Ditto.
2193         * doc/aclocal.m4, doc/configure: Ditto.
2194         * iconvdata/aclocal.m4, iconvdata/configure: Ditto.
2195         * libm/*/aclocal.m4: Ditto.
2196         * libm/*/configure: Ditto.
2197         * libc/*/aclocal.m4: Ditto.
2198         * libc/*/configure: Ditto.
2199
2200 2004-06-25  Artem B. Bityuckiy  <dedekind@oktetlabs.ru>
2201
2202         * acinclude.m4: Move iconv options into configure.in.
2203         * aclocal.m4: Regenerated.
2204         * configure: Ditto.
2205         * configure.in: Add iconv options.
2206         * newlib.hin: Add new iconv encodings and remove deleted ones.
2207         * doc/aclocal.m4: Regenerated.
2208         * doc/configure: Ditto.
2209         * iconvdata/aclocal.m4: Ditto.
2210         * iconvdata/configure: Ditto.
2211         * libc/iconv: Design change.  New size-optimized ccs format.
2212         * libc/iconv/AUTHORS: Removed.
2213         * libc/iconv/COPYING: Ditto.
2214         * libc/iconv/README.ORIGINAL: Ditto.
2215         * libc/iconv/README.TODO: Ditto.
2216         * libc/iconv/charset.aliases: Ditto.
2217         * libc/iconv/encoding.aliases: New file.
2218         * libc/iconv/Makefile.am: Updated.
2219         * libc/iconv/Makefile.in: Regenerated.
2220         * libc/iconv/iconv.tex: Updated.
2221         * libc/iconv/ccs/Makefile.am: Ditto.
2222         * libc/iconv/ccs/Makefile.in: Regenerated.
2223         * libc/iconv/ccs/big5.c: Updated.
2224         * libc/iconv/ccs/cns11643_plane1.c: Ditto.
2225         * libc/iconv/ccs/cns11643_plane14.c: Ditto.
2226         * libc/iconv/ccs/cns11643_plane2.c: Ditto.
2227         * libc/iconv/ccs/cp775.c: Ditto.
2228         * libc/iconv/ccs/cp850.c: Ditto.
2229         * libc/iconv/ccs/cp852.c: Ditto.
2230         * libc/iconv/ccs/cp855.c: Ditto.
2231         * libc/iconv/ccs/cp866.c: Ditto.
2232         * libc/iconv/ccs/iso_8859_1.c: Ditto.
2233         * libc/iconv/ccs/README.CCS.SOURCES: Removed.
2234         * libc/iconv/ccs/gb_2312_80.c: Ditto.
2235         * libc/iconv/ccs/iconv_mktbl: Ditto.
2236         * libc/iconv/ccs/jis_x0201.c: Ditto.
2237         * libc/iconv/ccs/jis_x0208_1983.c: Ditto.
2238         * libc/iconv/ccs/shift_jis.c: Ditto.
2239         * libc/iconv/ccs/us_ascii.c: Ditto.
2240         * libc/iconv/ccs/ccs.h: New file.
2241         * libc/iconv/ccs/ccsbi.c: Ditto.
2242         * libc/iconv/ccs/ccsbi.h: Ditto.
2243         * libc/iconv/ccs/ccsnames.h: Ditto.
2244         * libc/iconv/ccs/iso_8859_10.c: Ditto.
2245         * libc/iconv/ccs/iso_8859_11.c: Ditto.
2246         * libc/iconv/ccs/iso_8859_13.c: Ditto.
2247         * libc/iconv/ccs/iso_8859_14.c: Ditto.
2248         * libc/iconv/ccs/iso_8859_3.c: Ditto.
2249         * libc/iconv/ccs/iso_8859_6.c: Ditto.
2250         * libc/iconv/ccs/iso_8859_7.c: Ditto.
2251         * libc/iconv/ccs/iso_8859_8.c: Ditto.
2252         * libc/iconv/ccs/iso_8859_9.c: Ditto.
2253         * libc/iconv/ccs/iso_ir_111.c: Ditto.
2254         * libc/iconv/ccs/jis_x0201_1976.c: Ditto.
2255         * libc/iconv/ccs/jis_x0208_1990.c: Ditto.
2256         * libc/iconv/ccs/koi8_ru.c: Ditto.
2257         * libc/iconv/ccs/koi8_uni.c: Ditto.
2258         * libc/iconv/ccs/mktbl.pl: Ditto.
2259         * libc/iconv/ccs/win_1250.c: Ditto.
2260         * libc/iconv/ccs/win_1251.c: Ditto.
2261         * libc/iconv/ccs/win_1252.c: Ditto.
2262         * libc/iconv/ccs/win_1253.c: Ditto.
2263         * libc/iconv/ccs/win_1254.c: Ditto.
2264         * libc/iconv/ccs/win_1255.c: Ditto.
2265         * libc/iconv/ccs/win_1256.c: Ditto.
2266         * libc/iconv/ccs/win_1257.c: Ditto.
2267         * libc/iconv/ccs/win_1258.c: Ditto.
2268         * libc/iconv/ccs/iso_8859_15.c: Updated.
2269         * libc/iconv/ccs/iso_8859_2.c: Ditto.
2270         * libc/iconv/ccs/iso_8859_4.c: Ditto.
2271         * libc/iconv/ccs/iso_8859_5.c: Ditto.
2272         * libc/iconv/ccs/jis_x0212_1990.c: Ditto.
2273         * libc/iconv/ccs/koi8_r.c: Ditto.
2274         * libc/iconv/ccs/koi8_u.c: Ditto.
2275         * libc/iconv/ccs/ksx1001.c: Ditto.
2276         * libc/iconv/ccs/binary/gb_2312_80.cct: Removed.
2277         * libc/iconv/ccs/binary/jis_x0201.cct: Ditto.
2278         * libc/iconv/ccs/binary/shift_jis.cct: Ditto.
2279         * libc/iconv/ccs/binary/us_ascii.cct: Ditto.
2280         * libc/iconv/ccs/binary/jis_x0208_1983.cct: Ditto.
2281         * libc/iconv/ccs/binary/Makefile.am: Updated.
2282         * libc/iconv/ccs/binary/Makefile.in: Regenerated.
2283         * libc/iconv/ccs/binary/big5.cct: Updated.
2284         * libc/iconv/ccs/binary/cns11643_plane1.cct: Ditto.
2285         * libc/iconv/ccs/binary/cns11643_plane14.cct: Ditto.
2286         * libc/iconv/ccs/binary/cns11643_plane2.cct: Ditto.
2287         * libc/iconv/ccs/binary/cp775.cct: Updated.: Ditto.
2288         * libc/iconv/ccs/binary/cp850.cct: Ditto.: Ditto.
2289         * libc/iconv/ccs/binary/cp852.cct: Ditto.: Ditto.
2290         * libc/iconv/ccs/binary/cp855.cct: Ditto.: Ditto.
2291         * libc/iconv/ccs/binary/cp866.cct: Ditto.: Ditto.
2292         * libc/iconv/ccs/binary/iso_8859_1.cct: Ditto.
2293         * libc/iconv/ccs/binary/iso_8859_15.cct: Ditto.
2294         * libc/iconv/ccs/binary/iso_8859_4.cct: Ditto.
2295         * libc/iconv/ccs/binary/iso_8859_5.cct: Ditto.
2296         * libc/iconv/ccs/binary/iso_8859_2.cct: Ditto.
2297         * libc/iconv/ccs/binary/jis_x0212_1990.cct: Ditto.
2298         * libc/iconv/ccs/binary/koi8_r.cct: Ditto.
2299         * libc/iconv/ccs/binary/koi8_u.cct: Ditto.
2300         * libc/iconv/ccs/binary/ksx1001.cct: Ditto.
2301         * libc/iconv/ccs/binary/iso_8859_10.cct: New file.
2302         * libc/iconv/ccs/binary/iso_8859_11.cct: Ditto.
2303         * libc/iconv/ccs/binary/iso_8859_13.cct: Ditto.
2304         * libc/iconv/ccs/binary/iso_8859_14.cct: Ditto.
2305         * libc/iconv/ccs/binary/iso_8859_3.cct: Ditto.
2306         * libc/iconv/ccs/binary/iso_8859_6.cct: Ditto.
2307         * libc/iconv/ccs/binary/iso_8859_7.cct: Ditto.
2308         * libc/iconv/ccs/binary/iso_8859_8.cct: Ditto.
2309         * libc/iconv/ccs/binary/iso_8859_9.cct: Ditto.
2310         * libc/iconv/ccs/binary/iso_ir_111.cct: Ditto.
2311         * libc/iconv/ccs/binary/jis_x0201_1976.cct: Ditto.
2312         * libc/iconv/ccs/binary/jis_x0208_1990.cct: Ditto.
2313         * libc/iconv/ccs/binary/koi8_ru.cct: Ditto.
2314         * libc/iconv/ccs/binary/koi8_uni.cct: Ditto.
2315         * libc/iconv/ccs/binary/win_1250.cct: Ditto.
2316         * libc/iconv/ccs/binary/win_1251.cct: Ditto.
2317         * libc/iconv/ccs/binary/win_1252.cct: Ditto.
2318         * libc/iconv/ccs/binary/win_1253.cct: Ditto.
2319         * libc/iconv/ccs/binary/win_1254.cct: Ditto.
2320         * libc/iconv/ccs/binary/win_1255.cct: Ditto.
2321         * libc/iconv/ccs/binary/win_1256.cct: Ditto.
2322         * libc/iconv/ccs/binary/win_1257.cct: Ditto.
2323         * libc/iconv/ccs/binary/win_1258.cct: Ditto.
2324         * libc/iconv/ces/Makefile.am: Updated.
2325         * libc/iconv/ces/Makefile.in: Regenerated.
2326         * libc/iconv/ces/ucs-2-internal.c: Updated.
2327         * libc/iconv/ces/ucs-4-internal.c: Ditto.
2328         * libc/iconv/ces/utf-16.c: Ditto.
2329         * libc/iconv/ces/utf-8.c: Ditto.
2330         * libc/iconv/ces/cesbi.c: New file.
2331         * libc/iconv/ces/cesbi.h: Ditto.
2332         * libc/iconv/ces/cesdeps.h: Ditto.
2333         * libc/iconv/ces/euc.c: Ditto.
2334         * libc/iconv/ces/mkdeps.pl: Ditto.
2335         * libc/iconv/ces/table-pcs.c: Ditto.
2336         * libc/iconv/ces/table.c: Ditto.
2337         * libc/iconv/ces/ucs-2.c: Ditto.
2338         * libc/iconv/ces/ucs-4.c: Ditto.
2339         * libc/iconv/ces/us-ascii.c: Ditto.
2340         * libc/iconv/ces/euc-jp.c: Removed.
2341         * libc/iconv/ces/euc-kr.c: Ditto.
2342         * libc/iconv/ces/euc-tw.c: Ditto.
2343         * libc/iconv/ces/gb2312.c: Ditto.
2344         * libc/iconv/ces/iso-10646-ucs-2.: Ditto.c
2345         * libc/iconv/ces/iso-10646-ucs-4.c: Ditto.
2346         * libc/iconv/lib/Makefile.am: Updated.
2347         * libc/iconv/lib/Makefile.in: Regenerated.
2348         * libc/iconv/lib/endian.h: Updated.
2349         * libc/iconv/lib/iconv.c: Ditto.
2350         * libc/iconv/lib/local.h: Ditto.
2351         * libc/iconv/lib/aliases.c: Removed.
2352         * libc/iconv/lib/bialiasesi.c: Ditto.
2353         * libc/iconv/lib/biccs.c: Ditto.
2354         * libc/iconv/lib/bices.c: Ditto.
2355         * libc/iconv/lib/ccs.c: Ditto.
2356         * libc/iconv/lib/ces.c: Ditto.
2357         * libc/iconv/lib/ces_euc.c: Ditto.
2358         * libc/iconv/lib/ces_iso2022.c: Ditto.
2359         * libc/iconv/lib/ces_table.c: Ditto.
2360         * libc/iconv/lib/converter.c: Ditto.
2361         * libc/iconv/lib/deps.h: Ditto.
2362         * libc/iconv/lib/loaddata.c: Ditto.
2363         * libc/iconv/lib/aliasesbi.c: New file.
2364         * libc/iconv/lib/aliasesi.c: Ditto.
2365         * libc/iconv/lib/conv.h: Ditto.
2366         * libc/iconv/lib/encnames.h: Ditto.
2367         * libc/iconv/lib/encoding.deps: Ditto.
2368         * libc/iconv/lib/iconvnls.c: Ditto.
2369         * libc/iconv/lib/iconvnls.h: Ditto.
2370         * libc/iconv/lib/nullconv.c: Ditto.
2371         * libc/iconv/lib/ucsconv.c: Ditto.
2372         * libc/iconv/lib/ucsconv.h: Ditto.
2373         * libc/include/iconv.h: Update copyright.
2374         * libc/*/aclocal.m4: Regenerated.
2375         * libc/*/configure: Ditto.
2376         * libm/*/aclocal.m4: Ditto.
2377         * libm/*/configure: Ditto.
2378
2379 2004-06-22  Alexandre Oliva  <aoliva@redhat.com>
2380
2381         * libc/include/machine/setjmp.h [__H8300__] (_JBTYPE): Define,
2382         instead of typedefing jmp_buf.
2383
2384         2003-07-02  Richard Sandiford  <rsandifo@redhat.com>
2385         * libc/machine/h8300/Makefile.am (lib_a_SOURCES): Add h8sx_strcpy.S.
2386         * libc/machine/h8300/defines.h (LEN): New macro.
2387         * libc/machine/h8300/memcpy.S: Add h8sx version.
2388         * libc/machine/h8300/memset.S: Likewise.
2389         * libc/machine/h8300/strcmp.S: Likewise.
2390         * libc/machine/h8300/setjmp.S: Use h8sx move instructions.
2391         * libc/machine/h8300/h8sx_strcpy.S: New file.
2392         2003-06-30  Richard Sandiford  <rsandifo@redhat.com>
2393         * libc/include/machine/ieeefp.h: Extend __H8300S__ handling to
2394         __H8300SX__.
2395         * libc/include/machine/setjmp.h: Likewise.
2396         * libc/include/sys/config.h: Likewise.
2397         * libc/machine/h8300/defines.h: Likewise.
2398         * libc/machine/h8300/setjmp.S: Likewise.
2399         * libc/machine/h8300/strcmp.S: Likewise.
2400         * libc/sys/h8300hms/close.S: Likewise.
2401         * libc/sys/h8300hms/fstat.S: Likewise.
2402         * libc/sys/h8300hms/lseek.S: Likewise.
2403         * libc/sys/h8300hms/read.S: Likewise.
2404         * libc/sys/h8300hms/write.S: Likewise.
2405         * libc/sys/h8300hms/crt0.S: Likewise.
2406         * libc/machine/h8300/setarch.h: Use .h8300sx or .h8300sxn if
2407         __H8300SX__ is defined.
2408         * libc/sys/h8300hms/setarch.h: Likewise.
2409
2410 2004-06-17  Jeff Johnston  <jjohnstn@redhat.com>
2411
2412         * libc/include/sys/reent.h (_GLOBAL_REENT): Back
2413         out change which set _GLOBAL_REENT to _global_impure_ptr until
2414         we understand why Cygwin breaks because of it.
2415
2416 2004-06-14  Jeff Johnston  <jjohnstn@redhat.com>
2417
2418         * libc/sys/linux/machine/i386/syscall.h: For now, set up
2419         __syscall_return macro for systems with vsyscall.
2420
2421 2004-06-11  Antony King  <antony.king@st.com>
2422
2423         * libc/include/sys/_types.h: Include <sys/lock.h> and change
2424         _flock_t to be of type _LOCK_RECURSIVE_T.
2425         * libc/include/sys/reent.h: (_REENT_INIT): Reformat.
2426         (_REENT_INIT_PTR): Ditto.  Use memset where appropriate.
2427         (_global_impure_ptr): New declaration.
2428         (_GLOBAL_REENT): Change to be _global_impure_ptr.
2429         * libc/include/sys/stdio.h: Include <sys/lock.h> and
2430         <sys/reent.h>.
2431         (_flockfile)[!_SINGLE_THREAD]: Add code for lock call.
2432         (_funlockfile)[!SINGLE_THREAD]: Ditto.
2433         * libc/reent/impure.c: Set _global_impure_ptr to _impure_ptr.
2434         * libc/stdio/fclose.c: Remove casting of fp lock to
2435         _LOCK_RECURSIVE_T.
2436         * libc/stdio/findfp.c: Ditto.
2437         * libc/stdio/fopen.c: Ditto.
2438         * libc/stdio/freopen.c: Ditto.
2439         * libc/stdio/vfprintf.c: Ditto.
2440         * libc/stdio64/fopen64.c: Ditto.
2441         * libc/stdlib/envlock.c: Add default stubs that use generic
2442         locking code.
2443         * libc/stdlib/mlock.c: Ditto.
2444
2445         Jeff Johnston  <jjohnstn@redhat.com>
2446         * libc/sys/linux/sys/_types.h (__flock_mutex_t): New subtype.
2447         (_flock_t): Change to be a struct containing a single member
2448         named mutex which is of type __flock_mutex_t.
2449
2450 2004-06-09  Jeff Johnston  <jjohnstn@redhat.com>
2451
2452         * libc/sys/linux/Makefile.am: Change siglist.inc to be generated
2453         from /usr/include/asm/signal.h instead of kernel sources.  Also
2454         default max to 32 if not found in header file.
2455         * libc/sys/linux/Makefile.in: Regenerated.
2456         * libc/sys/linux/machine/i386/socketcall.h: Fix for Fedora Core 2
2457         systems where __syscall_return is not defined.
2458         * libc/sys/linux/machine/i386/syscall.h: Change for Fedora Core 2
2459         systems to use syscall() function instead of assembler interrupt.
2460
2461 2004-06-09  Toralf Lund  <toralf@procaptura.com>
2462
2463         * libc/sys/arm/setjmp.S, libc/sys/arm/access.c: Move
2464         files from libc/sys/arm to libc/machine/arm.
2465         * libc/machine/arm/Makefile.am, libc/machine/arm/Makefile.in: Add
2466         library build support for files moved from libc/sys/arm.
2467         * libc/sys/arm/Makefile.am, libc/sys/arm/Makefile.in:  Remove
2468         references to access and setjmp.
2469         * configure.host: Add checks for newlib_may_supply_syscalls to
2470         determine whether or not to use sys/arm directory and use
2471         special compiler flags: ARM_RDI_MONITOR and ARM_RDP_MONITOR.
2472        
2473 2004-06-02  Jeff Johnston  <jjohnstn@redhat.com>
2474
2475         * libc/stdio/vfscanf.c (__svfscanf_r): For CT_INT conversions,
2476         reset digit flags appropriately after we have discovered "0x".
2477         * libc/machine/powerpc/vfscanf.c (__svfscanf_r): Ditto.
2478
2479 2004-05-27  Jeff Johnston  <jjohnstn@redhat.com>
2480
2481         * libc/stdio/vfprintf.c (_VFPRINTF): Move file locking
2482         from here ...
2483         (_VFPRINTF_R): ... to here so all I/O printf routines
2484         are covered.
2485
2486 2004-05-26  Jeff Johnston  <jjohnstn@redhat.com>
2487
2488         * libc/search/hash_buf.c: Protect MAX and MIN macros from
2489         redefinition.
2490         * libc/search/hash.c: Ditto.
2491
2492 2004-05-25  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2493
2494         * newlib.hin: (_WANT_IO_POS_ARGS): New define.
2495         (_WANT_IO_LONG_LONG): Ditto.
2496         (_WANT_IO_LONG_DOUBLE): Ditto.
2497         * configure.in: Add new configuration options
2498         --enable-newlib-io-long-long and --enable-newlib-io-long-double
2499         which tie to new defines in newlib.hin.
2500         * configure: Regenerated.
2501         * configure.host: Add checks for new configuration options.  Also
2502         fix up check for --enable-newlib-io-pos-args so configuration
2503         option will override any default for a given platform.
2504         Remove defining compiler flags for the _WANT_IO* options.
2505         * libc/stdio/vfprintf.c: Change to use new newlib.hin defines
2506         instead of looking for old compiler flags.
2507         * libc/stdio/vfscanf.c: Ditto.
2508         * libc/stdio/vfieeefp.h: Ditto.
2509         * libc/machine/powerpc/vfprintf.c: Ditto.
2510         * libc/machine/powerpc/vfscanf.c: Ditto.
2511
2512 2004-05-25  Jeff Johnston  <jjohnstn@redhat.com>
2513
2514         * testsuite/include/check.h: Add include of <stdio.h>.
2515
2516 2004-05-17  Corinna Vinschen  <corinna@vinschen.de>
2517
2518         * libc/include/grp.h: Declare getgrnam_r and getgrgid_r also on Cygwin.
2519
2520 2004-05-11  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2521
2522         * libc/stdio/vfprintf.c (VFPRINTF_R): Use _free_r instead
2523         of free.
2524
2525 2004-05-07  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2526
2527         * libc/stdio/iprintf.c (_iprintf_r): Fix old-style argument
2528         list for reentrant pointer.  Call _vfiprintf_r.
2529         * libc/stdio/siprintf.c (_siprintf_r): New function.
2530         * libc/stdio/vfprintf.c (__sbprintf): Add reetrant struct
2531         pointer argument.  Change all callers.  Call _VFPRINTF_R.
2532         * libc/include/stdio.h (_siprintf_r, _vfiprintf_r): New
2533         prototypes.
2534
2535 2004-05-07  Jeff Johnston  <jjohnstn@redhat.com>
2536
2537         * libc/include/sys/param.h: Remove endian info and include
2538         <machine/endian.h> instead.
2539         * libc/include/machine/endian.h: New file.
2540         * libc/include/machine/param.h: Ditto.
2541         * libc/machine/arm/machine/endian.h: Ditto.
2542         * libc/machine/arm/machine/param.h: Ditto.
2543         * libc/sys/arm/sys/param.h: Removed.
2544         * libc/sys/sysvi386/sys/param.h: Ditto.
2545         * libc/sys/rtems/sys/param.h: Modified to include <machine/endian.h>.
2546
2547 2004-05-03  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2548
2549         * libc/stdio/vfprintf.c (_VFPRINTF_R): Set error flag when
2550         multibyte functions return failure for %C, %S, %lc, and %ls
2551         format specifiers.
2552
2553 2004-05-03  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2554
2555         * testsuite/include/check.h (CHECK): Add flush of stdout.
2556
2557 2004-05-03  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2558
2559         * libc/include/stdio.h (_ungetc_r): New prototype.
2560         * libc/stdio/ungetc.c (_ungetc_r): New reentrant function.
2561         (__submore): Add reentrant struct pointer argument.
2562         (ungetc): Change to call _ungetc_r.
2563
2564 2004-04-28  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2565
2566         * libc/stdio/local.h (_fwalk_reent): Specify prototype of
2567         function pointer argument.
2568         * libc/stdio/fwalk.c (_fwalk, _fwalk_reent): Change prototypes
2569         to specify function pointer arguments.
2570         (__fwalk, __fwalk_reent): Ditto.
2571
2572 2004-04-26  Aldy Hernandez  <aldyh@redhat.com>
2573
2574         * libc/machine/powerpc/vfscanf.c (__svfscanf_r): Fix typo in
2575         CT_INT case.
2576
2577 2004-04-23  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2578
2579         * configure.in: Define _MB_CAPABLE if mb supported.
2580         * configure: Regenerated.
2581         * configure.host: Remove manual setting of MB_CAPABLE compiler
2582         flag.
2583         * newlib.hin: Add _MB_CAPABLE flag.
2584         * libc/ctype/iswalpha.c, libc/ctype/iswblank.c: Include <newlib.h>
2585         and check for _MB_CAPABLE flag instead of MB_CAPABLE.
2586         * libc/ctype/iswcntrl.c, libc/ctype/iswprint.c: Ditto.
2587         * libc/ctype/iswpunct.c, libc/ctype/iswspace.c: Ditto.
2588         * libc/ctype/jp2uc.c: Ditto.
2589         * libc/ctype/towlower.c, libc/ctype/towupper.c: Ditto.
2590         * libc/locale/locale.c: Ditto
2591         * libc/machine/powerpc/vfscanf.c: Ditto
2592         * libc/stdio/vfprintf.c, libc/stdio/vfscanf.c: Ditto
2593         * libc/stdlib/mblen.c: Ditto
2594         * libc/stdlib/mblen_r.c, libc/stdlib/mbrlen.c: Ditto
2595         * libc/stdlib/mbrtowc.c, libc/stdlib/mbsrtowcs.c: Ditto
2596         * libc/stdlib/mbstowcs.c, libc/stdlib/mbtowc.c: Ditto
2597         * libc/stdlib/mbtowc_r.c, libc/stdlib/wcrtomb.c: Ditto
2598         * libc/stdlib/wcsrtombs.c, libc/stdlib/wcstombs.c: Ditto
2599         * libc/stdlib/wctomb.c, libc/sys/linux/intl/dcigettext.c: Ditto
2600         * libc/sys/linux/intl/explodename.c: Ditto
2601         * libc/sys/linux/intl/finddomain.c: Ditto
2602         * libc/sys/linux/intl/l10nflist.c: Ditto
2603         * libc/sys/linux/intl/loadmsgcat.c: Ditto
2604         * libc/sys/linux/intl/localealias.c: Ditto
2605
2606 2004-04-23  Jeff Johnston  <jjohnstn@redhat.com>
2607
2608         * libc/machine/powerpc/vfscanf.c (NNZDIGITS): New define.
2609         (__svfscanf_r): In integer conversions, leave out leading zeroes
2610         which are not part of a base prefix.
2611         Keep track of width truncation to fit into buf, not counting left-out
2612         zeroes against width till the truncation has been compensated for.
2613         This is based on Joern's patch of 04/21 for libc/stdio/vfscanf.c.
2614
2615 2004-04-23  Jeff Johnston  <jjohnstn@redhat.com>
2616
2617         * libc/include/stdio.h: (_ftell_r, _fseek_r): New prototypes.
2618
2619 2004-04-23  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2620
2621         * libc/stdio/asprintf.c libc/stdio/clearerr.c,
2622         libc/stdio/fclose.c libc/stdio/fcloseall.c libc/stdio/fdopen.c,
2623         libc/stdio/feof.c libc/stdio/ferror.c libc/stdio/fflush.c,
2624         libc/stdio/fgetc.c libc/stdio/fgetpos.c libc/stdio/fgets.c,
2625         libc/stdio/fileno.c libc/stdio/findfp.c libc/stdio/fiprintf.c,
2626         libc/stdio/flags.c libc/stdio/fopen.c libc/stdio/fprintf.c,
2627         libc/stdio/fputc.c libc/stdio/fputs.c libc/stdio/fread.c,
2628         libc/stdio/freopen.c libc/stdio/fscanf.c libc/stdio/fseek.c,
2629         libc/stdio/fseeko.c libc/stdio/fsetpos.c libc/stdio/ftell.c,
2630         libc/stdio/ftello.c libc/stdio/fvwrite.c libc/stdio/fwalk.c,
2631         libc/stdio/fwrite.c libc/stdio/getc.c libc/stdio/getc_u.c,
2632         libc/stdio/getchar.c libc/stdio/getchar_u.c,
2633         libc/stdio/getdelim.c libc/stdio/getline.c libc/stdio/gets.c,
2634         libc/stdio/getw.c libc/stdio/iprintf.c libc/stdio/local.h,
2635         libc/stdio/makebuf.c libc/stdio/mktemp.c libc/stdio/perror.c,
2636         libc/stdio/printf.c libc/stdio/putc.c libc/stdio/putc_u.c,
2637         libc/stdio/putchar.c libc/stdio/putchar_u.c libc/stdio/puts.c,
2638         libc/stdio/putw.c libc/stdio/refill.c libc/stdio/remove.c,
2639         libc/stdio/rename.c libc/stdio/rewind.c libc/stdio/rget.c,
2640         libc/stdio/scanf.c libc/stdio/setbuf.c libc/stdio/setbuffer.c,
2641         libc/stdio/setlinebuf.c libc/stdio/setvbuf.c,
2642         libc/stdio/siprintf.c libc/stdio/snprintf.c,
2643         libc/stdio/sprintf.c libc/stdio/sscanf.c libc/stdio/stdio.c,
2644         libc/stdio/tmpfile.c libc/stdio/tmpnam.c libc/stdio/ungetc.c,
2645         libc/stdio/vasprintf.c libc/stdio/vfieeefp.h,
2646         libc/stdio/vfprintf.c libc/stdio/vfscanf.c,
2647         libc/stdio/vprintf.c libc/stdio/vscanf.c,
2648         libc/stdio/vsnprintf.c libc/stdio/vsprintf.c,
2649         libc/stdio/vsscanf.c libc/stdio/wbuf.c,
2650         libc/stdio/wsetup.c: Perform minor formatting changes.  Move
2651         copyright notices to top of file, ensure that <_ansi.h> is
2652         included, be consistent with open parentheses, use _DEFUN macro,
2653         include "local.h" where needed, and remove various compiler
2654         warnings.
2655
2656 2004-04-21  J"orn Rennecke <joern.rennecke@superh.com>
2657
2658         * libc/stdio/vfscanf.c (NNZDIGITS): New define.
2659         (__svfscanf_r): In integer conversions, leave out leading zeroes
2660         which are not part of a base prefix.
2661         Keep track of width truncation to fit into buf, not counting left-out
2662         zeroes against width till the truncation has been compensated for.
2663
2664 2004-04-20  Corinna Vinschen  <corinna@vinschen.de>
2665
2666         * libc/include/sys/unistd.h (ttyname_r): Add missing comma.
2667
2668 2004-04-20  Corinna Vinschen  <corinna@vinschen.de>
2669
2670         * libc/include/sys/unistd.h (ttyname_r): Add declaration for Cygwin.
2671
2672 2004-04-10  Corinna Vinschen  <corinna@vinschen.de>
2673
2674         * libc/include/sys/unistd.h (sync): Define void on Cygwin according
2675         to SUSv3.
2676
2677 2004-04-08  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2678
2679         * libc/stdio/fclose.c (_fclose_r): New function.
2680         * libc/stdio/freopen.c (_freopen_r): Call _fclose_r.
2681         * libc/stdio/fcloseall.c (_fcloseall_r): Call _fwalk_reent.
2682         * libc/stdio64/freopen64.c (_freopen64_r): Use _fclose_r.
2683         * libc/include/stdio.h (_fclose_r): New prototype.
2684         * libc/stdio/fopen.c: Fix typo in comment.
2685
2686 2004-04-08  Jeff Johnston  <jjohnstn@redhat.com>
2687
2688         * libc/stdio/fwalk.c (_fwalk_reent): New version of _fwalk
2689         to handle _r reentrant functions.
2690
2691 2004-04-08  Eric Christopher  <echristo@redhat.com>
2692
2693         * libc/include/machine/setjmp.h: Fix endif locations.
2694
2695 2004-04-01  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2696
2697         * libc/time/strptime.c: Add standard includes to avoid
2698         warning messages at compilation time.
2699
2700 2004-04-01  Jeff Johnston  <jjohnstn@redhat.com>
2701
2702         * libc/stdio/vfscanf.c (__svfscanf_r): Add locking/unlocking
2703         of file.
2704
2705 2004-03-30  Jeff Johnston  <jjohnstn@redhat.com>
2706
2707         * libc/machine/h8300/Makefile.am: Reformat slightly.
2708         * libc/machine/h8300/Makefile.in: Regenerate.
2709
2710 2004-03-30  Thomas Pfaff  <tpfaff@gmx.net>
2711
2712         * libc/stdio/findfp.c (__fp_lock_all): Add call to
2713         __sfp_lock_acquire.
2714         (__fp_unlock_all): Add call to __sfp_lock_release. 
2715
2716 2004-03-25  Thomas Pfaff  <tpfaff@gmx.net>
2717
2718         * libc/stdio/fclose.c (fclose): Protect file pointer list when
2719         releasing a file.
2720          * libc/stdio/fcloseall.c (_fcloseall_r): Close all files via
2721         fwalk.
2722         * libc/stdio/fdopen.c (_fdopen_r): Add calls to
2723         _flockfile/_funlockfile.
2724         * libc/stdio/findfp.c: Move __sfp_lock. Change __sfp_lock type
2725         to recursive.
2726         Change __lock_acquire/__lock_release calls for __sfp_lock to
2727         __sfp_lock_acquire/__sfp_lock_release throughout.
2728         (std): Make sure that file lock is only initialized once.
2729         (__sfp): Move _file initialization. Initialize file lock.
2730         (__sfp_lock_acquire): New function.
2731         (__sfp_lock_release): Ditto.
2732         (__fp_lock_all): Remove __sfp_lock_acquire call.
2733         (__fp_unlock_all): Remove __sfp_lock_release call.
2734         * libc/stdio/fopen.c (_fopen_r): Protect file pointer list.
2735         Add calls to _flockfile/_funlockfile. Remove
2736         __lock_init_recursive call.
2737         * libc/stdio/freopen.c (_freopen_r): Protect file pointer list.
2738         * libc/stdio/fwalk.c (__fwalk): New static function.
2739         (_fwalk): Protect file pointer list. Use __fwalk to walk through
2740         file pointers.
2741         * libc/stdio/local.h: Add defines for
2742         __sfp_lock_acquire/__sfp_lock_release when
2743         single threaded. Add function prototypes otherwise.
2744         * libc/stdio64/fdopen64.c (_fdopen64_r): Add calls to
2745         _flockfile/_funlockfile.
2746         * libc/stdio/fopen64.c (_fopen64_r): Protect file pointer list.
2747         Add calls to _flockfile/_funlockfile. Remove
2748          __lock_init_recursive call.
2749         * libc/stdio/freopen64.c (_freopen64_r): Protect file pointer
2750         list. 
2751
2752 2004-03-25  Jeff Johnston  <jjohnstn@redhat.com>
2753
2754         * libc/sys/linux/sys/lock.h: Turn on __USE_GNU flag if not already
2755         defined.  Change __LOCK_RECURSIVE_INIT to be __LOCK_INIT_RECURSIVE.
2756         * libc/sys/linux/dl/dl-support.c: Change __LOCK_RECURSIVE_INIT
2757         to be __LOCK_INIT_RECURSIVE.
2758
2759 2004-03-11  Kazu Hirata  <kazu@cs.umass.edu>
2760
2761         * libc/sys/h8300hms/Makefile.am (lib_a_SOURCES): Replace
2762         _exit.c with _exit.S.
2763         * libc/sys/h8300hms/Makefile.in: Regenerate.
2764         * libc/sys/h8300hms/_exit.c: Remove.
2765         * libc/sys/h8300hms/_exit.S: New.
2766
2767 2004-03-09  Thomas Pfaff  <tpfaff@gmx.net>
2768
2769         * libc/stdio/findfp.c (__sfp): Rename lock to __sfp_lock.
2770         Change __sfp_lock to static global.
2771         (__fp_lock): New static function.
2772         (__fp_unlock): Ditto.
2773         (__fp_lock_all): New function.
2774         (__fp_unlock_all): Ditto. 
2775
2776 2004-02-10  Christopher Faylor  <cgf@redhat.com>
2777
2778         * libm/mathfp/er_gamma.c (gamma): Add new non-reentrant function.
2779         * libm/mathfp/er_lgamma.c (lgamma): Ditto.
2780         * libm/mathfp/erf_gamma.c (gammaf): Ditto.
2781         * libm/mathfp/erf_lgamma.c (lgammaf): Ditto.
2782
2783 2004-02-09  Christopher Faylor  <cgf@redhat.com>
2784
2785         * libc/include/time.h (TIMER_RELTIME): New define.
2786
2787 2004-02-09  Jeff Johnston  <jjohnstn@redhat.com>
2788
2789         * libc/stdlib/Makefile.am: Add mallstatsr to LIBADD_OBJS.
2790         * libc/stdlib/Makefile.in: Regenerated.
2791
2792 2004-02-08  Christopher Faylor  <cgf@redhat.com>
2793
2794         * libc/include/sys/features.h: Add _POSIX_TIMERS define for __CYGWIN__.
2795         * libc/include/sys/reent.h (__getreent): Protect against possibly being
2796         defined.
2797         * libc/include/sys/unistd.h (fdatasync): Don't define for __CYGWIN__.
2798
2799 2004-02-05  Paul Brook  <paul@codesourcery.com>
2800
2801         * libc/include/machine/ieeefp.h[__arm__][__VFP_FP__]: Set 
2802         IEEE_{BIG,LITTLE} based on __ARMEL__ flag.
2803
2804 2004-02-02  Jeff Johnston  <jjohnstn@redhat.com>
2805
2806         * NEWS: Update with 1.12.0 info.
2807         * README: Ditto.
2808         * acinclude.m4: Change version number to 1.12.0.
2809         * aclocal.m4: Regenerated.
2810         * configure: Ditto.
2811         * doc/aclocal.m4: Ditto.
2812         * doc/configure: Ditto.
2813         * libc/*/aclocal.m4: Ditto.
2814         * libc/*/configure: Ditto.
2815         * libc/libc.texinfo: Ditto.
2816         * libm/*/aclocal.m4: Ditto.
2817         * libm/*/configure: Ditto.
2818         * libm/libm.texinfo: Ditto.
2819         * libc/sys/linux/shared.ld: Add VERS_1.12.
2820
2821 2004-02-02  Joel Sherrill  <joel@oarcorp.com>
2822
2823         * configure.host: Add support for tic4x.
2824         * libc/include/machine/ieeefp.h: Ditto.
2825         * libc/include/machine/setjmp.h: Ditto.
2826         * libc/machine/tic4x/Makefile.am: New file.
2827         * libc/machine/tic4x/configure.in: Ditto.
2828         * libc/machine/tic4x/setjmp.S: Ditto.
2829         * libc/machine/tic4x/aclocal.m4: Generated.
2830         * libc/machine/tic4x/configure: Ditto.
2831         * libc/machine/tic4x/Makefile.in: Ditto.
2832
2833 2004-01-30  Jeff Johnston  <jjohnstn@redhat.com>
2834
2835         * libc/stdio/fwalk.c (_fwalk.c): Don't traverse the
2836         file chain on the passed in reentrancy struct if it
2837         is _GLOBAL_REENT.
2838
2839 2004-01-30  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2840             Jeff Johnston  <jjohnstn@redhat.com>
2841
2842         * libc/iconv/iconv.tex: Updated with more information.
2843
2844 2004-01-30  Thomas Pfaff  <tpfaff@gmx.net>
2845             Jeff Johnston  <jjohnstn@redhat.com>
2846
2847         * libc/stdio/fwalk.c (_fwalk): Traverse the given reentrancy
2848         struct for std streams and traverse the global reeentrancy
2849         struct for all other streams.
2850
2851 2004-01-27  Jeff Johnston  <jjohnstn@redhat.com>
2852
2853         * libc/stdlib/atexit.c: Protect global atexit list with a
2854         lock when newlib is multithreaded.
2855
2856 2004-01-27  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2857
2858         * configure.in: Add support to generate iconv converter flags
2859         for newlib.h
2860         * newlib.hin: Add iconv converter flags.
2861         * configure: Regenerated.
2862         * libc/Makefile.in: Ditto.
2863         * libc/configure.in: Moved iconv converter parsing logic to
2864         top level newlib configure.in.
2865         * libc/configure: Regenerated.
2866         * libc/iconv/Makefile.in: Ditto.
2867         * libc/iconv/README.TODO
2868         * libc/iconv/charset.aliases: Remove wrong BE aliases for
2869         UCS2/UCS4/UTF8.
2870         * libc/iconv/ccs/Makefile.am: Remove C flag setting now that
2871         newlib.h can be used.
2872         * libc/iconv/ces/Makefile.am: Ditto.
2873         * libc/iconv/lib/Makefile.am: Ditto.
2874         * libc/iconv/ccs/Makefile.in: Regenerated.
2875         * libc/iconv/ces/Makefile.in: Ditto.
2876         * libc/iconv/lib/Makefile.in: Ditto.
2877         * libc/iconv/ccs/README.CCS.SOURCES: Updated.
2878         * libc/iconv/ccs/iconv_mktbl: Don't write junk strings to binaries.
2879         * libc/iconv/ccs/big5.c: Switch to use new underscored flags
2880         defined in newlib.h.
2881         * libc/iconv/ccs/cns11643_plane1.c: Ditto.
2882         * libc/iconv/ccs/cns11643_plane14.c: Ditto.
2883         * libc/iconv/ccs/cns11643_plane2.c: Ditto.
2884         * libc/iconv/ccs/cp775.c: Ditto.
2885         * libc/iconv/ccs/cp850.c: Ditto.
2886         * libc/iconv/ccs/cp852.c: Ditto.
2887         * libc/iconv/ccs/cp855.c: Ditto.
2888         * libc/iconv/ccs/cp866.c: Ditto.
2889         * libc/iconv/ccs/gb_2312_80.c: Ditto.
2890         * libc/iconv/ccs/iso_8859_1.c: Ditto.
2891         * libc/iconv/ccs/iso_8859_15.c: Ditto.
2892         * libc/iconv/ccs/iso_8859_2.c: Ditto.
2893         * libc/iconv/ccs/iso_8859_4.c: Ditto.
2894         * libc/iconv/ccs/iso_8859_5.c: Ditto.
2895         * libc/iconv/ccs/jis_x0201.c: Ditto.
2896         * libc/iconv/ccs/jis_x0208_1983.c: Ditto.
2897         * libc/iconv/ccs/jis_x0212_1990.c: Ditto.
2898         * libc/iconv/ccs/koi8_r.c: Ditto.
2899         * libc/iconv/ccs/koi8_u.c: Ditto.
2900         * libc/iconv/ccs/ksx1001.c: Ditto.
2901         * libc/iconv/ccs/shift_jis.c: Ditto.
2902         * libc/iconv/ccs/us_ascii.c: Ditto.
2903         * libc/iconv/ccs/binary/big5.cct: Newly generated.
2904         * libc/iconv/ccs/binary/cns11643_plane1.cct: Ditto.
2905         * libc/iconv/ccs/binary/cns11643_plane14.cct: Ditto.
2906         * libc/iconv/ccs/binary/cns11643_plane2.cct: Ditto.
2907         * libc/iconv/ccs/binary/cp775.cct: Ditto.
2908         * libc/iconv/ccs/binary/cp850.cct: Ditto.
2909         * libc/iconv/ccs/binary/cp852.cct: Ditto.
2910         * libc/iconv/ccs/binary/cp855.cct: Ditto.
2911         * libc/iconv/ccs/binary/cp866.cct: Ditto.
2912         * libc/iconv/ccs/binary/gb_2312_80.cct: Ditto.
2913         * libc/iconv/ccs/binary/iso_8859_1.cct: Ditto.
2914         * libc/iconv/ccs/binary/iso_8859_15.cct: Ditto.
2915         * libc/iconv/ccs/binary/iso_8859_2.cct: Ditto.
2916         * libc/iconv/ccs/binary/iso_8859_4.cct: Ditto.
2917         * libc/iconv/ccs/binary/iso_8859_5.cct: Ditto.
2918         * libc/iconv/ccs/binary/jis_x0201.cct: Ditto.
2919         * libc/iconv/ccs/binary/jis_x0208_1983.cct: Ditto.
2920         * libc/iconv/ccs/binary/jis_x0212_1990.cct: Ditto.
2921         * libc/iconv/ccs/binary/koi8_r.cct: Ditto.
2922         * libc/iconv/ccs/binary/koi8_u.cct: Ditto.
2923         * libc/iconv/ccs/binary/ksx1001.cct: Ditto.
2924         * libc/iconv/ccs/binary/shift_jis.cct: Ditto.
2925         * libc/iconv/ccs/binary/us_ascii.cct: Ditto.
2926         * libc/iconv/lib/bialiasesi.c: Sync with charset.aliases.
2927         * libc/iconv/ces/euc-jp.c: Use newlib.h macros.
2928         * libc/iconv/ces/euc-kr.c: Ditto.
2929         * libc/iconv/ces/euc-tw.c: Ditto.
2930         * libc/iconv/ces/gb2312.c: Ditto.
2931         * libc/iconv/ces/iso-10646-ucs-2.c: Ditto.
2932         * libc/iconv/ces/iso-10646-ucs-4.c: Ditto.
2933         * libc/iconv/ces/ucs-2-internal.c: Ditto.
2934         * libc/iconv/ces/ucs-4-internal.c: Ditto.
2935         * libc/iconv/ces/utf-16.c: Ditto.
2936         * libc/iconv/ces/utf-8.c: Ditto.
2937         * libc/iconv/lib/aliases.c: Ditto.
2938         * libc/iconv/lib/biccs.c: Ditto.
2939         * libc/iconv/lib/bices.c: Ditto.
2940         * libc/iconv/lib/ccs.c: Ditto.
2941         * libc/iconv/lib/ces.c: Ditto.
2942         * libc/iconv/lib/ces_euc.c: Ditto.
2943         * libc/iconv/lib/ces_iso2022.c: Ditto.
2944         * libc/iconv/lib/ces_table.c: Ditto.
2945         * libc/iconv/lib/converter.c: Ditto.
2946         * libc/iconv/lib/deps.h: Ditto.
2947         * libc/iconv/lib/endian.h: Ditto.
2948         * libc/iconv/lib/iconv.c: Ditto.
2949         * libc/iconv/lib/loaddata.c: Ditto.
2950         * libc/iconv/lib/local.h: Include newlib.h.
2951         * libc/argz/Makefile.in: Regenerated.
2952         * libc/ctype/Makefile.in: Ditto.
2953         * libc/errno/Makefile.in: Ditto.
2954         * libc/iconv/ccs/binary/Makefile.in: Ditto.
2955         * libc/locale/Makefile.in: Ditto.
2956         * libc/misc/Makefile.in: Ditto.
2957         * libc/posix/Makefile.in: Ditto.
2958         * libc/reent/Makefile.in: Ditto.
2959         * libc/search/Makefile.in: Ditto.
2960         * libc/signal/Makefile.in: Ditto.
2961         * libc/stdio/Makefile.in: Ditto.
2962         * libc/stdio64/Makefile.in: Ditto.
2963         * libc/stdlib/Makefile.in: Ditto.
2964         * libc/string/Makefile.in: Ditto.
2965         * libc/syscalls/Makefile.in: Ditto.
2966         * libc/time/Makefile.in: Ditto.
2967         * libc/unix/Makefile.in: Ditto.
2968         * testsuite/newlib.iconv/iconv.exp: New file.
2969         * testsuite/newlib.iconv/iconvjp.c: Ditto.
2970         * testsuite/newlib.iconv/iconvnm.c: Ditto.
2971         * testsuite/newlib.iconv/iconvru.c: Ditto.
2972
2973 2004-01-23  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
2974
2975         * acinclude.m4 (--enable-newlib-iconv): New configuration option.
2976         (--enable-newlib-builtin-converters): Ditto.
2977         * configure.in: Add code to set _ICONV_ENABLED flag.
2978         Set _MB_LEN_MAX to 1 if not mb enabled.
2979         * configure: Regenerated.
2980         * aclocal.m4: Ditto.
2981         * Makefile.in: Ditto.
2982         * newlib.hin: Add _ICONV_ENABLED flag.
2983         * libc/Makefile.am: Add support for iconv.
2984         * libc/configure.in: Ditto.
2985         * libc/Makefile.in: Regenerated.
2986         * libc/aclocal.m4: Ditto.
2987         * libc/configure: Ditto.
2988         * libc/libc.texinfo: Add iconv documentation.
2989         * libc/iconv/AUTHORS, libc/iconv/COPYING, libc/iconv/Makefile.am,
2990         libc/iconv/Makefile.in, libc/iconv/README.ORIGINAL,
2991         libc/iconv/README.TODO, libc/iconv/charset.aliases,
2992         libc/iconv/iconv.tex, libc/iconv/ccs/Makefile.am,
2993         libc/iconv/ccs/Makefile.in, libc/iconv/ccs/README.CCS.SOURCES,
2994         libc/iconv/ccs/big5.c, libc/iconv/ccs/cns11643_plane1.c,
2995         libc/iconv/ccs/cns11643_plane14.c, libc/iconv/ccs/cns11643_plane2.c,
2996         libc/iconv/ccs/cp775.c, libc/iconv/ccs/cp850.c,
2997         libc/iconv/ccs/cp852.c, libc/iconv/ccs/cp855.c,
2998         libc/iconv/ccs/cp866.c, libc/iconv/ccs/gb_2312_80.c,
2999         libc/iconv/ccs/iconv_mktbl, libc/iconv/ccs/iso_8859_1.c,
3000         libc/iconv/ccs/iso_8859_15.c, libc/iconv/ccs/iso_8859_2.c,
3001         libc/iconv/ccs/iso_8859_4.c, libc/iconv/ccs/iso_8859_5.c,
3002         libc/iconv/ccs/jis_x0201.c, libc/iconv/ccs/jis_x0208_1983.c,
3003         libc/iconv/ccs/jis_x0212_1990.c, libc/iconv/ccs/koi8_r.c,
3004         libc/iconv/ccs/koi8_u.c, libc/iconv/ccs/ksx1001.c,
3005         libc/iconv/ccs/shift_jis.c, libc/iconv/ccs/us_ascii.c,
3006         libc/iconv/ccs/binary/Makefile.am, libc/iconv/ccs/binary/Makefile.in,
3007         libc/iconv/ccs/binary/big5.cct,
3008         libc/iconv/ccs/binary/cns11643_plane1.cct,
3009         libc/iconv/ccs/binary/cns11643_plane14.cct,
3010         libc/iconv/ccs/binary/cns11643_plane2.cct,
3011         libc/iconv/ccs/binary/cp775.cct, libc/iconv/ccs/binary/cp850.cct,
3012         libc/iconv/ccs/binary/cp852.cct, libc/iconv/ccs/binary/cp855.cct,
3013         libc/iconv/ccs/binary/cp866.cct, libc/iconv/ccs/binary/gb_2312_80.cct,
3014         libc/iconv/ccs/binary/iso_8859_1.cct,
3015         libc/iconv/ccs/binary/iso_8859_15.cct,
3016         libc/iconv/ccs/binary/iso_8859_2.cct,
3017         libc/iconv/ccs/binary/iso_8859_4.cct,
3018         libc/iconv/ccs/binary/iso_8859_5.cct,
3019         libc/iconv/ccs/binary/jis_x0201.cct,
3020         libc/iconv/ccs/binary/jis_x0208_1983.cct,
3021         libc/iconv/ccs/binary/jis_x0212_1990.cct,
3022         libc/iconv/ccs/binary/koi8_r.cct, libc/iconv/ccs/binary/koi8_u.cct,
3023         libc/iconv/ccs/binary/ksx1001.cct,
3024         libc/iconv/ccs/binary/shift_jis.cct,
3025         libc/iconv/ccs/binary/us_ascii.cct,
3026         libc/iconv/ces/Makefile.am, libc/iconv/ces/Makefile.in,
3027         libc/iconv/ces/euc-jp.c, libc/iconv/ces/euc-kr.c,
3028         libc/iconv/ces/euc-tw.c, libc/iconv/ces/gb2312.c,
3029         libc/iconv/ces/iso-10646-ucs-2.c, libc/iconv/ces/iso-10646-ucs-4.c,
3030         libc/iconv/ces/ucs-2-internal.c, libc/iconv/ces/ucs-4-internal.c,
3031         libc/iconv/ces/utf-16.c, libc/iconv/ces/utf-8.c,
3032         libc/iconv/lib/Makefile.am, libc/iconv/lib/Makefile.in,
3033         libc/iconv/lib/aliases.c, libc/iconv/lib/bialiasesi.c,
3034         libc/iconv/lib/biccs.c, libc/iconv/lib/bices.c,
3035         libc/iconv/lib/ccs.c, libc/iconv/lib/ces.c,
3036         libc/iconv/lib/ces_euc.c, libc/iconv/lib/ces_iso2022.c,
3037         libc/iconv/lib/ces_table.c, libc/iconv/lib/converter.c,
3038         libc/iconv/lib/deps.h, libc/iconv/lib/endian.h,
3039         libc/iconv/lib/iconv.c, libc/iconv/lib/loaddata.c,
3040         libc/iconv/lib/local.h, libc/include/iconv.h: New files.
3041         * libc/sys/linux/include/iconv.h: Ditto.
3042         * libc/include/sys/_types.h (_iconv_t): Added.
3043         * doc/aclocal.m4: Regenerated.
3044         * doc/configure: Ditto.
3045         * doc/Makefile.in: Ditto.
3046         * iconvdata/Makefile.in: Ditto.
3047         * iconvdata/aclocal.m4: Ditto.
3048         * iconvdata/configure: Ditto.
3049         * libc/*aclocal.m4: Ditto.
3050         * libc/*Makefile.in: Ditto.
3051         * libc/*configure: Ditto.
3052         * libm/*aclocal.m4: Ditto.
3053         * libm/*Makefile.in: Ditto.
3054         * libm/*configure: Ditto.
3055
3056 2004-01-22  Thomas Pfaff  <tpfaff@gmx.net>
3057
3058         * libc/stdio/findfp.c (__sfp): Protect global FILE pointer list
3059         by a lock when newlib is multithreaded. 
3060
3061 2004-01-21  Jeff Johnston  <jjohnstn@redhat.com>
3062
3063         * libc/stdlib/mbrtowc.c (_mbrtowc_r): Fix case where s is null
3064         pointer to match C99 spec.
3065         * libc/stdlib/mbsrtowcs.c (_mbsrtowc_r): Fix to ignore len when
3066         dst is NULL.  Also fix to not alter src pointer when dst is NULL
3067         and call _mbrtowc_r instead of _mbtowc_r.
3068         * libc/stdlib/wcsrtombs.c (_wcsrtombs_r): Call _wcrtomb_r instead
3069         of _wctomb_r.
3070
3071 2004-01-19  Thomas Pfaff  <tpfaff@gmx.net>
3072
3073         * libc/stdio/fclose.c (fclose): Release FILE as the last step.
3074         * libc/stdio/freopen.c (freopen): Ditto.
3075
3076 2004-01-16  Christopher Faylor  <cgf@redhat.com>
3077
3078         * libc/stdio/vfprintf.c: Add sys/lock.h include.
3079
3080 2004-01-16  Thomas Pfaff  <tpfaff@gmx.net>
3081
3082         * libc/stdio/findfp.c (__sfp): Remove unnecessary memset.
3083         * libc/stdio/vfprintf.c (__sbprintf): Ditto.
3084         Add calls to __lock_init_recursive and __lock_close_recursive
3085         instead.
3086
3087 2004-01-15  Thomas Pfaff  <tpfaff@gmx.net>
3088
3089         * libc/stdio/fclose.c: Include sys/lock.h.
3090         (fclose): Destroy lock when file is closed.
3091         * libc/stdio/findfp.c (__sfp): Initialize file pointers _lock
3092         member.
3093         * libc/stdio/freopen.c: Include sys/lock.h.
3094         (_freopen_r): Destroy lock when file is closed.
3095         * libc/stdio/vfprintf.c (__sbprintf): Initialize file pointers
3096         _lock member.
3097
3098 2004-01-08  Joel Sherrill  <joel@oarcorp.com>
3099
3100         * libc/ctype/iswctype.c, include/sys/reent.h, libc/stdlib/a64l.c:
3101         Remove warnings.
3102
3103 2004-01-08  Joel Sherrill  <joel@oarcorp.com>
3104
3105         * libc/sys/rtems/sys/queue.h: New file.
3106         * libc/include/sys/signal.h: Reflect renumbering of signals to
3107         fit into 32-bit mask.
3108         * libc/include/sys/unistd.h: Add fdatasync() prototype.
3109         * libc/sys/rtems/crt0.c: Add more symbols which may be implicitly
3110         required.  In particular, add the reentrant variants of libc calls.
3111         * libc/sys/rtems/sys/dirent.h: Add scandir() prototype.
3112
3113 2004-01-06  Mark Mitchell  <mark@codesourcery.com>
3114
3115         * libc/sys/arm/syscalls.c (unistd.h): Include it.
3116         (remap_handle): Use STDIN_FILENO instead of __sfileno(stdin).
3117         Similarly for stdout and stderr.
3118
3119 2004-01-06  Jeff Johnston  <jjohnstn@redhat.com>
3120
3121         * libc/libc.texinfo: Correct escape character for @ sign
3122         so file will be processed by make info.  Update copyright years.
3123         * libm/libm.texinfo: Ditto.
3124
3125 2003-12-05  Jeff Johnston  <jjohnstn@redhat.com>
3126
3127         * libc/include/sys/stat.h: No longer include stat-dj.h.
3128         * libc/include/sys/stat-dj.h: Removed.
3129
3130 2003-12-05  Jeff Johnston  <jjohnstn@redhat.com>
3131
3132         * libc/include/wchar.h: Include <sys/reent.h>.
3133
3134 2003-12-05  Christopher Faylor  <cgf@redhat.com>
3135
3136         * libc/stdlib/mbrlen.c: Change include order to prevent compiler errors
3137         when defining _mbrtowc.
3138         * libc/stdlib/mbsinit.c: Ditto.
3139         * libc/stdlib/mbsrtowcs.c: Ditto.
3140         * libc/stdlib/wcrtomb.c: Ditto.
3141         * libc/stdlib/wcsrtombs.c: Ditto.
3142         * libc/stdlib/wctob.c: Ditto.
3143
3144 2003-12-05  Christopher Faylor  <cgf@redhat.com>
3145
3146         * libc/stdlib/mbrlen.c: Change include order to prevent compiler
3147         errors when defining _mbrtowc.
3148         * libc/stdlib/mbsinit.c: Ditto.
3149         * libc/stdlib/mbsrtowcs.c: Ditto.
3150
3151 2003-12-05  Christopher Faylor  <cgf@redhat.com>
3152
3153         * libc/stdlib/mbrtowc.c: Change include order to prevent compiler
3154         errors when defining _mbrtowc.
3155
3156 2003-12-04  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
3157
3158         * libc/stdio/vfprintf.c (_VFPRINTF_R): Use _r versions
3159         of mb routines for %lc and %ls support.
3160         * libc/stdio/vfscanf.c (_svfscanf_r): Add %lc, %C,
3161         %ls, and %S support.  Remove CYGNUS_NEC markers and
3162         code within.
3163
3164 2003-12-04  Jeff Johnston  <jjohnstn@redhat.com>
3165
3166         * libc/include/wchar.h: Add prototypes for _mbrtowc_r,
3167         _wcrtomb_r, and _wcsrtombs_r.
3168
3169 2003-12-01  Corinna Vinschen  <corinna@vinschen.de>
3170
3171         * libc/include/sys/fcntl.h: Don't define struct flock when on
3172         Cygwin.  This is done in winsup/cygwin/include/cygwin/types.h now.
3173
3174 2003-11-28  Christopher Faylor  <cgf@redhat.com>
3175
3176         * libc/include/sys/signal.h: Use system specific signal file when
3177         building on cygwin.
3178
3179 2003-11-27  Jeff Johnston  <jjohnstn@redhat.com>
3180
3181         * libc/include/stdlib.h (_atoi_r): New prototype.
3182         * libc/stdlib/atoi.c (_atoi_r): New reentrant function.
3183
3184 2003-11-27  Jeff Johnston  <jjohnstn@redhat.com>
3185
3186         * libc/include/stdlib.h (_atoll_r, _atol_r): New prototypes.
3187         * libc/stdlib/atol.c (_atol_r): New reentrant function.
3188         * libc/stdlib/atoll.c (_atoll_r): Ditto.
3189
3190 2003-11-27  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
3191             Jeff Johnston  <jjohnstn@redhat.com>
3192
3193         * libc/include/stdlib.h (lldiv_t): New type.
3194         (atoll, llabs, lldiv): New prototypes.
3195         * libc/stdlib/Makefile.am: Add support for atoll, llabs, and lldiv.
3196         * libc/stdlib/stdlib.tex: Ditto.
3197         * libc/stdlib/Makefile.in: Regenerated.
3198         * libc/stdlib/atoll.c: New file.
3199         * libc/stdlib/llabs.c: Ditto.
3200         * libc/stdlib/lldiv.c: Ditto.
3201
3202 2003-11-26  Corinna Vinschen  <corinna@vinschen.de>
3203
3204         * libc/include/fcntl.h: Declare syscalls only when building newlib.
3205         * libc/include/unistd.h: Ditto.
3206         * libc/include/stat.h: Ditto.  Also declare struct stat64.
3207
3208 2003-11-24  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
3209
3210         * libc/stdio/vfprintf.c (_VFPRINTF_R): Fix check for 'C' format
3211         specifier to use ch instead of *fmt.
3212
3213 2003-11-21  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
3214
3215         * libc/stdio/vfprintf.c (_VFPRINTF_R, get_arg): Move mb-specific
3216         code within checks for MB_CAPABLE.  For non-mb-capable platforms,
3217         use simple byte logic.
3218
3219 2003-11-21  Jeff Johnston  <jjohnstn@redhat.com>
3220
3221         * libc/stdio/vfscanf.c (__svfscanf_r)[!_NO_LONGDBL]: Don't use
3222         _strtold routine for processing floats and doubles since it
3223         is not as fast as _strtod_r.
3224
3225 2003-11-20 Dhananjay Deshpande <dhananjayd@kpitcummins.com> 
3226
3227         * libc/machine/h8300/defines.h : Correct pointer register defines 
3228         for normal mode.
3229         * libc/machine/h8300/memcpy.S : Use add/sub instead of adds/subs 
3230         for normal mode.
3231         * libc/machine/h8300/reg_memcpy.S : Likewise.
3232         * libc/machine/h8300/reg_memset.S : Likewise.
3233         * libc/machine/h8300/strcmp.S : Likewise.
3234
3235 2003-11-19  Nicholas Wourms  <nwourms@netscape.net>
3236
3237         * configure.host: Enable positional arguments for printf
3238         family for Cygwin.
3239         * libc/stdio/vfprintf.c (_VFPRINTF_R): Remove extraneous
3240         pointer reference for quad_ptr_t.
3241
3242 2003-11-19  Jeff Johnston  <jjohnstn@redhat.com>
3243
3244         * libc/stdio/scanf.c: Don't include local.h more than once.
3245
3246 2003-11-18  Corinna Vinschen  <corinna@vinschen.de>
3247
3248         * libc/include/sys/fcntl.h: Declare _open64.
3249         * libc/include/sys/stat.h: Declare _fstat64.
3250         * libc/include/sys/unistd.h: Declare _lseek64.
3251
3252 2003-11-17  Corinna Vinschen  <corinna@vinschen.de>
3253
3254         * libc/include/stdlib.h (getprogname): Declare for Cygwin.
3255         (setprogname): Ditto.
3256
3257 2003-11-10  Jeff Johnston  <jjohnstn@redhat.com>
3258
3259         * libc/machine/powerpc/ufix64toa.c (_ufix64to_r): Fix shifts
3260         to use (Ebits + 1) which accounts for the sign-bit.
3261
3262 2003-11-07  Jeff Johnston  <jjohnstn@redhat.com>
3263
3264         * configure.host: Remove -DLOOSE_KERNEL_NAMES flag for linux 
3265         x86 build.
3266         * iconvdata/Makefile.am: Make dependent on newlib's configure.host
3267         and set up default flags to pass to aclocal.
3268         * iconvdata/Makefile.in: Regenerated.
3269         * libc/sys/linux/Makefile.am: Add _ELIX_LEVEL_4 getlogin, getpwnam,
3270         and getpwuid routines.
3271         * libc/sys/linux/Makefile.in: Regenerated.
3272         * libc/sys/linux/getlogin.c: New stub file to allow x86-linux
3273         applications to link with newlib's shared libc library.
3274         * libc/sys/linux/getpwnam.c: Ditto.
3275         * libc/sys/linux/getpwuid.c: Ditto.
3276         * libc/sys/linux/sys/types.h: Include <features.h> and supply types
3277         that were formerly supplied by /usr/include/linux/types.h with
3278         kernel types.
3279         * testsuite/newlib.wctype/twctype.c: Fix testcase to properly
3280         test _ELIX_LEVEL macro.
3281
3282 2003-11-07  Jeff Johnston  <jjohnstn@redhat.com>
3283
3284         * libc/stdio/vfprintf.c (_VFPRINTF_R): Fix typos that should be
3285         referring to _NO_LONGLONG macro.
3286
3287 2003-11-06  Jeff Johnston  <jjohnstn@redhat.com>
3288
3289         * libc/sys/linux/linuxthreads/td_init.c: Replace function name
3290         in LOG() macro so this will compile on gcc 3.4 and up.
3291         * libc/sys/linux/linuxthreads/td_log.c: Ditto.
3292         * libc/sys/linux/linuxthreads/td_ta_clear_event.c: Ditto.
3293         * libc/sys/linux/linuxthreads/td_ta_delete.c: Ditto.
3294         * libc/sys/linux/linuxthreads/td_ta_enable_stats.c: Ditto.
3295         * libc/sys/linux/linuxthreads/td_ta_event_addr.c: Ditto.
3296         * libc/sys/linux/linuxthreads/td_ta_event_getmsg.c: Ditto.
3297         * libc/sys/linux/linuxthreads/td_ta_get_nthreads.c: Ditto.
3298         * libc/sys/linux/linuxthreads/td_ta_get_ph.c: Ditto.
3299         * libc/sys/linux/linuxthreads/td_ta_get_stats.c: Ditto.
3300         * libc/sys/linux/linuxthreads/td_ta_map_id2thr.c: Ditto.
3301         * libc/sys/linux/linuxthreads/td_ta_map_lwp2thr.c: Ditto.
3302         * libc/sys/linux/linuxthreads/td_ta_new.c: Ditto.
3303         * libc/sys/linux/linuxthreads/td_ta_reset_stats.c: Ditto.
3304         * libc/sys/linux/linuxthreads/td_ta_set_event.c: Ditto.
3305         * libc/sys/linux/linuxthreads/td_ta_setconcurrency.c: Ditto.
3306         * libc/sys/linux/linuxthreads/td_ta_thr_iter.c: Ditto.
3307         * libc/sys/linux/linuxthreads/td_ta_tsd_iter.c: Ditto.
3308         * libc/sys/linux/linuxthreads/td_thr_clear_event.c: Ditto.
3309         * libc/sys/linux/linuxthreads/td_thr_dbresume.c: Ditto.
3310         * libc/sys/linux/linuxthreads/td_thr_dbsuspend.c: Ditto.
3311         * libc/sys/linux/linuxthreads/td_thr_event_enable.c: Ditto.
3312         * libc/sys/linux/linuxthreads/td_thr_event_getmsg.c: Ditto.
3313         * libc/sys/linux/linuxthreads/td_thr_get_info.c: Ditto.
3314         * libc/sys/linux/linuxthreads/td_thr_getfpregs.c: Ditto.
3315         * libc/sys/linux/linuxthreads/td_thr_getgregs.c: Ditto.
3316         * libc/sys/linux/linuxthreads/td_thr_getxregs.c: Ditto.
3317         * libc/sys/linux/linuxthreads/td_thr_getxregsize.c: Ditto.
3318         * libc/sys/linux/linuxthreads/td_thr_set_event.c: Ditto.
3319         * libc/sys/linux/linuxthreads/td_thr_setfpregs.c: Ditto.
3320         * libc/sys/linux/linuxthreads/td_thr_setgregs.c: Ditto.
3321         * libc/sys/linux/linuxthreads/td_thr_setprio.c: Ditto.
3322         * libc/sys/linux/linuxthreads/td_thr_setsigpending.c: Ditto.
3323         * libc/sys/linux/linuxthreads/td_thr_setxregs.c: Ditto.
3324         * libc/sys/linux/linuxthreads/td_thr_sigsetmask.c: Ditto.
3325         * libc/sys/linux/linuxthreads/td_thr_tsd.c: Ditto.
3326         * libc/sys/linux/linuxthreads/td_thr_validate.c: Ditto.
3327
3328 2003-11-05  Jeff Johnston  <jjohnstn@redhat.com>
3329             Artem B. Bityuckiy  <abitytsky@softminecorp.com>
3330
3331         * libc/stdio/vfprintf.c (_VFPRINTF_R): Add support for
3332         %ls, %S, %lc, and %C format specifiers.
3333         (get_arg): Ditto.
3334         * libc/stdio/sprintf.c: Add documentation regarding new
3335         format specifiers added in vfprintf.c.
3336
3337 2003-11-05  Jeff Johnston  <jjohnstn@redhat.com>
3338
3339         * libc/stdlib/wcsrtombs.c (_wcsrtombs_r): Numerous fixes
3340         to make code work as specified in standard.
3341
3342 2003-10-23  Jeff Johnston  <jjohnstn@redhat.com>
3343
3344         * configure.in: Use absolute newlib basedir when forming
3345         CC_FOR_NEWLIB include options.
3346         * configure: Regenerated.
3347
3348 2003-10-23  Artem B. Bityuckiy  <abitytsky@softminecorp.com>
3349
3350         * libc/string/wcsnlen.c: New file.
3351         * libc/include/wchar.h: Add wcsnlen prototype.
3352         * libc/string/Makefile.am: Add wcsnlen support.
3353         * libc/string/Makefile.in: Regenerated.
3354         * libc/string/wcstrings.tex: Add wcsnlen documentation.
3355
3356 2003-10-22  Richard Sandiford  <rsandifo@redhat.com>
3357
3358         * libc/stdlib/exit.c (exit): Handle null _GLOBAL_REENT->_atexits.
3359
3360 2003-10-20  Bob Wilson  <bob.wilson@acm.org>
3361
3362         * libc/locale/locale.c: Use double quotes in code.
3363         * libc/locale/locale.tex: Likewise.
3364         * libc/libc.texinfo: Hyphenate "floating-point".
3365         * libc/machine/necv70/necv70.tex: Likewise.
3366         * libc/stdio/sprintf.c: Likewise.
3367         * libc/stdio/sscanf.c: Likewise.
3368         * libc/stdlib/atof.c: Likewise.
3369         * libc/stdlib/ldtoa.c: Fix comment typo.
3370         * libc/stdlib/div.c: Use @ifnottex instead of @ifinfo.
3371         * libc/stdlib/ldiv.c: Likewise.
3372         * libm/common/s_expm1.c: Likewise.
3373         * libm/common/s_ilogb.c: Hyphenate "floating-point".  Use "nonzero".
3374         * libm/common/s_infinity: Hyphenate "double- and single-precision".
3375         * libm/common/s_nan.c: Likewise.  Also correct the FUNCTION summary.
3376         * libm/common/s_nextafter.c: Fix typo.  Hyphenate "double-precision"
3377         and "floating-point".
3378         * libm/common/s_scalbn.c: Correct the FUNCTION summary.
3379         * libm/math/e_pow.c: Fix comment typo.
3380         * libm/math/math.tex: Hyphenate "single-precision" and "floating-point".
3381         * libm/math/s_asinh.c: Use @ifnottex instead of @ifinfo.
3382         * libm/math/s_atan.c: Likewise.
3383         * libm/math/s_frexp.c: Likewise.  Also use "nonzero".
3384         * libm/math/s_isnan.c: Hyphenate "single-precision" and
3385         "floating-point".  Use "nonzero".
3386         * libm/math/s_ldexp.c: Use @ifnottex instead of @ifinfo.
3387         * libm/math/w_acos.c: Likewise.
3388         * libm/math/w_acosh.c: Likewise.
3389         * libm/math/w_asin.c: Likewise.
3390         * libm/math/w_atan2.c: Likewise.
3391         * libm/math/w_atanh.c: Likewise.
3392         * libm/math/w_cosh.c: Likewise.
3393         * libm/math/w_exp.c: Likewise.
3394         * libm/math/w_exp2.c: Likewise.  Add missing @end and missing @tex
3395         version of 2^x in the description.
3396         * libm/math/w_fmod.c: Use @ifnottex instead of @ifinfo.
3397         * libm/math/w_gamma.c: Likewise.
3398         * libm/math/w_hypot.c: Likewise.
3399         * libm/math/w_j0.c: Likewise.
3400         * libm/math/w_sinh.c: Likewise.
3401         * libm/math/w_pow.c: Replace "exp1.0nt" with "exponent".
3402         * libm/mathfp/mathfp.tex: Hyphenate "single-precision" and
3403         "floating-point".
3404         * libm/mathfp/e_acosh.c: Use @ifnottex instead of @ifinfo.
3405         * libm/mathfp/e_atanh.c: Likewise.
3406         * libm/mathfp/e_hypot.c: Likewise.
3407         * libm/mathfp/er_lgamma.c: Likewise.
3408         * libm/mathfp/s_acos.c: Likewise.
3409         * libm/mathfp/s_asine.c: Likewise.
3410         * libm/mathfp/s_asinh.c: Likewise.
3411         * libm/mathfp/s_atan.c: Likewise.
3412         * libm/mathfp/s_atan2.c: Likewise.
3413         * libm/mathfp/s_atangent.c: Likewise.
3414         * libm/mathfp/s_cosh.c: Likewise.
3415         * libm/mathfp/s_exp.c: Likewise.
3416         * libm/mathfp/s_fmod.c: Likewise.
3417         * libm/mathfp/s_frexp.c: Likewise.  Also use "nonzero".
3418         * libm/mathfp/s_isnan.c: Hyphenate "single-precision" and
3419         "floating-point".  Use "nonzero".
3420         * libm/math/s_pow.c: Replace "exp1.0nt" with "exponent".
3421         * libm/mathfp/s_ldexp.c: Use @ifnottex instead of @ifinfo.
3422         * libm/mathfp/s_sineh.c: Likewise.
3423         * libm/mathfp/w_jn.c: Likewise.
3424
3425 2003-10-15  Alexandre Oliva  <aoliva@redhat.com>
3426
3427         * Makefile.am: Add $(MAKE) comments to multido and multiclean
3428         lines, to enable parallel make.
3429         * Makefile.in: Rebuilt.
3430
3431 2003-10-14  Christopher Faylor  <cgf@redhat.com>
3432
3433         * libc/time/clock.c: Clarify documentation of return value when no
3434         measurement is available.
3435
3436 2003-09-29  Ian Lance Taylor  <ian@wasabisystems.com>
3437
3438         * libm/configure.in: Check libm_machine_dir, not machine_dir.
3439         * libm/configure: Regenerate.
3440         * libm/Makefile.in: Ditto.
3441
3442 2003-09-29  J"orn Rennecke <joern.rennecke@superh.com>
3443
3444         * libc/machine/sh/strncpy.S: New file.
3445         * libc/machine/sh/Makefile.am: Add entry & rule for new file.
3446         * libc/machine/sh/Makefile.in: Regenerate.
3447
3448 2003-09-11  James E Wilson  <wilson@specifixinc.com>
3449
3450         * MAINTAINERS: Update my e-mail address.
3451
3452 2003-09-10  Corinna Vinschen  <corinna@vinschen.de>
3453
3454         * libc/include/sys/unistd.h: Declare function daemon for Cygwin.
3455
3456 2003-09-09  Jeff Johnston  <jjohnstn@redhat.com>
3457
3458         * libc/machine/powerpc/fix64.h: Fix typo for _simdldcheck
3459         prototype.
3460         * libc/machine/powerpc/simdldtoa.c: Remove prototype for
3461         _simdldcheck().  Also add unsigned cast for index variable in
3462         for loop using sizeof operators.
3463         * libc/machine/powerpc/strtoufix32.c: Remove unused variable.
3464         * libc/machine/powerpc/strtosfix64.c: Fix call to _simdldcheck.
3465         * libc/machine/powerpc/strtoufix64.c (_strtoufix64_r): Ditto
3466         plus fix shift calculation for determining if there is a
3467         carry from word2.
3468
3469 2003-09-09  Corinna Vinschen  <corinna@vinschen.de>
3470
3471         * libc/include/grp.h: Don't define setgrfile, group_from_gid and
3472         setgroupent for Cygwin.
3473
3474 2003-09-05  Jeff Johnston  <jjohnstn@redhat.com>
3475
3476         * libc/stdlib/exit.c (exit): Setting of struct _atexit ptr p
3477         is different for _REENT_SMALL than when using regular reent
3478         struct.
3479
3480 2003-09-05  Ben Elliston  <bje@wasabisystems.com>
3481
3482         * libc/ctype/wctype.c (_DEFUN): Remove empty default case, as
3483         modern versions of GCC issue a warning.
3484
3485         * libc/machine/xscale/memcmp.c (memcmp): Strip trailing whitespace
3486         after continuation characters that induces a warning from modern
3487         versions of GCC.
3488
3489 2003-09-04  Ben Elliston  <bje@wasabisystems.com>
3490
3491         * libc/stdlib/mstats.c[_ELIX_LEVEL]: Fix guards.  #ifndef FOO ||
3492         FOO >= 2 is invalid; use #if !defined (FOO) || FOO >= 2 instead.
3493
3494 2003-09-02  Thomas Pfaff  <tpfaff@gmx.net>
3495
3496         * libc/stdlib/atexit.c: Rename _REENT to _GLOBAL_REENT throughout.
3497         * libc/stdlib/exit.c : Ditto.
3498         * libc/stdlib/on_exit.c: Ditto.
3499
3500 2003-08-27  Corinna Vinschen  <corinna@vinschen.de>
3501
3502         * libc/include/reent.h: Define stat64 as __stat64 when
3503         compiling newlib for Cygwin.
3504
3505 2003-08-26  Jeff Johnston  <jjohnstn@redhat.com>
3506
3507         * libc/include/sys/stat.h[__CYGWIN__]: Only define stat64 as
3508         __stat64 when compiling newlib.
3509
3510 2003-08-26  Jeff Johnston  <jjohnstn@redhat.com>
3511
3512         * libc/include/stdio.h: Allow the io64 function prototypes for
3513         Cygwin when compiling newlib.
3514         * libc/include/sys/stat.h[__CYGWIN__]: Define stat64 as __stat64
3515         to expose the Cygwin struct __stat64 type.
3516         * libc/stdio64/fseeko64.c: Use _fstat64_r and pass a struct stat64
3517         pointer.
3518         * libc/stdio64/tmpfile64.c(_tmpfile64_r): Call _fopen64_r.
3519
3520 2003-08-23  Christopher Faylor  <cgf@redhat.com>
3521
3522         * libc/stdio64/fseeko64.c (fseeko64_r): Rename second fseeko64_r
3523         definition to fseeko64.
3524
3525 2003-08-22  Jeff Johnston  <jjohnstn@redhat.com>
3526
3527         * libc/include/sys/reent.h: Add _GLOBAL_REENT macro.
3528         * libc/stdio: Globally remove/replace all references to fp->_data.
3529         Replace with _REENT or _GLOBAL_REENT where appropriate.
3530         * libc/stdio/asprintf.c: Ditto.
3531         * libc/stdio/fclose.c: Ditto.
3532         * libc/stdio/fvwrite.c: Ditto.
3533         * libc/stdio/makebuf.c: Ditto.
3534         * libc/stdio/refill.c: Ditto.
3535         * libc/stdio/local.h: Ditto.
3536         * libc/stdio/setvbuf.c: Ditto.
3537         * libc/stdio/sscanf.c: Ditto.
3538         * libc/stdio/stdio.c: Ditto.
3539         * libc/stdio/ungetc.c: Ditto.
3540         * libc/stdio/vfscanf.c: Ditto.
3541         * libc/stdio/vsscanf.c: Ditto.
3542         * libc/stdio/fopen.c: Ditto.  Also use _fseek_r in _fopen_r.
3543         * libc/stdio/vasprintf.c: Ditto.  Also call _vfprintf_r directly.
3544         * libc/stdio/vsnprintf.c: Ditto.
3545         * libc/stdio/vsprintf.c: Ditto.
3546         * libc/stdio/fcloseall.c(fcloseall): Use _GLOBAL_REENT macro
3547         instead of _REENT to walk file list.
3548         * libc/stdio/fflush.c: Ditto.
3549         * libc/stdio/fgetpos.c: Add reentrant version and have regular
3550         version call reentrant version with _REENT argument.
3551         * libc/stdio/fsetpos.c: Ditto.
3552         * libc/stdio/fseek.c: Ditto.
3553         * libc/stdio/fseeko.c: Ditto.
3554         * libc/stdio/ftell.c: Ditto.
3555         * libc/stdio/ftello.c: Ditto.
3556         * libc/stdio/freopen.c: Ditto.
3557         * libc/stdio/findfp.c: Use _GLOBAL_REENT pointer when adding
3558         new files to chain.  Also use _GLOBAL_REENT pointer for
3559         cleaning up.
3560         * libc/stdio/fiprintf.c: Reformatted to minimize duplicate code.
3561         * libc/stdio/siprintf.c: Ditto.
3562         * libc/stdio/iprintf.c: Ditto.
3563         * libc/stdio/fprintf.c: Ditto.
3564         * libc/stdio/printf.c: Ditto.
3565         * libc/stdio/snprintf.c: Call _vfprintf_r directly.
3566         * libc/stdio/sprintf.c: Ditto.
3567         * libc/stdio/vprintf.c: Ditto.  Also add _REENT_ONLY check.
3568         * libc/stdio/rewind.c: Call _fseek_r directly.
3569         * libc/stdio/tmpfile.c: Call _fopen_r and _remove_r directly.
3570         * libc/stdio/vfprintf.c (_VFPRINTF_R): Change _r routines to use
3571         data pointer.
3572         (get_arg): Add extra struct _reent pointer argument.
3573         * libc/stdio64/fgetpos64.c: Add _r versions, remove any reference
3574         to fp->_data.
3575         * libc/stdio64/fopen64.c: Ditto.
3576         * libc/stdio64/freopen64.c: Ditto.
3577         * libc/stdio64/fsetpos64.c: Ditto.
3578         * libc/stdio64/ftello64.c: Ditto.
3579         * libc/stdio64/local64.h: Ditto.
3580         * libc/stdio64/stdio64.c: Ditto.
3581         * libc/stdio64/fseeko64.c: Ditto plus use _fstat_r instead of
3582         _fstat64_r for the meantime.
3583
3584 2003-08-19  Jeff Johnston  <jjohnstn@redhat.com>
3585
3586         * libc/stdlib/mallocr.c (mALLOc, rEALLOc, mEMEALIGn): Enhance
3587         overflow detection.
3588         
3589 2003-08-13  Aldy Hernandez  <aldyh@redhat.com>
3590         
3591         * libc/machine/powerpc/machine/stdlib.h: Wrap SPE functions in
3592         extern "C".
3593
3594 2003-08-13  Jeff Johnston  <jjohnstn@redhat.com>
3595
3596         * libc/include/math.h: Add prototypes for __signbitf and
3597         __signbitd.
3598
3599 2003-07-31  Jeff Johnston  <jjohnstn@redhat.com>
3600
3601         * libc/ctype/iswalpha.c: Fix calls to __jp2uc to pass the
3602         correct type of conversion when dealing with EUCJP or SJIS.
3603         * libc/ctype/iswblank.c: Ditto.
3604         * libc/ctype/iswcntrl.c: Ditto.
3605         * libc/ctype/iswprint.c: Ditto.
3606         * libc/ctype/iswpunct.c: Ditto.
3607         * libc/ctype/iswspace.c: Ditto.
3608         * libc/ctype/towlower.c: Ditto.
3609         * libc/ctype/towupper.c: Ditto.
3610
3611 2003-07-31  Nick Clifton  <nickc@redhat.com>
3612
3613         * libc/sys/sysnecv850/crt0.S (_start): Allocate 4 slots on stack
3614         before calling main, in case it saves its argument registers.
3615         Remove reference to deleted v850ea port.
3616         * configure.host: Remove reference to deleted v850ea port.
3617         Do not use -mv850 when building for v850e target.  This
3618         prevents the ctbp system register from being initialised.
3619
3620 2003-07-29  Honda Hiroki  <hhonda@ipflex.com>
3621
3622         * libc/stdio/vfprintf.c: Set output size to 1 when
3623         we have %f format with precision 0 and # flag not specified.
3624
3625 2003-07-29  Alexandre Oliva  <aoliva@redhat.com>
3626
3627         * libc/machine/mn10300/setjmp.S: Never emit both .am33 and
3628         .am33_2.
3629
3630 2003-07-25  Christopher Faylor  <cgf@redhat.com>
3631
3632         * libc/stdio64/fdopen64.c: Include sys/lock.h.
3633
3634 2003-07-25  Christopher Faylor  <cgf@redhat.com>
3635
3636         * configure.host: Find cygwin include directory, when appropriate.
3637
3638 2003-07-24  Christopher Faylor  <cgf@redhat.com>
3639
3640         * libc/stdio64/fdopen64.c: New file.
3641         * libc/stdio64/Makefile.am (LIB_OBJS): Add fdopen64.o
3642         * libc/stdio64/Makefile.in: Regenerate.
3643         * libc/include/stdio.h (fdopen64): Define.
3644         * libc/include/stdio.h (_fdopen64_r): Ditto.
3645
3646 2003-07-10  Alexandre Oliva  <aoliva@redhat.com>
3647
3648         2000-04-27  Alexandre Oliva  <aoliva@cygnus.com>
3649         * libc/include/machine/setjmp.h (_JBLEN, AM33/2.0): Set to 26.
3650         * libc/machine/mn10300/setjmp.S (setjmp, longjmp): Save and
3651         restore callee-saved FP registers.
3652
3653 2003-07-10  J"orn Rennecke <joern.rennecke@superh.com>
3654
3655         * libc/include/sys/unistd.h (ftruncate, truncate): Also declare
3656         for __sh__.
3657         * libc/sys/sh/Makefile.am (lib_a_SOURCES): Add ftruncate.c and
3658         truncate.c.
3659         * libc/sys/sh/Makefile.in: Regenerate.
3660         * libc/sys/sh/sys/syscall.h: (SYS_truncate, SYS_ftruncate): Define.
3661         * libc/sys/sh/ftruncate.c: New file.
3662         * libc/sys/sh/truncate.c: Likewise.
3663
3664 2003-07-09  Alexandre Oliva  <aoliva@redhat.com>
3665
3666         * libc/include/math.h (nan, nanf): Update prototype to C99.
3667         * libm/common/s_nan.c (nan): Likewise.
3668         * libm/common/s_nanf.c (nanf, nan): Likewise.
3669         * libc/sys/linux/cmath/math_private.h (nan, nanf): Likewise.
3670
3671 2003-07-07  Jeff Johnston  <jjohnstn@redhat.com>
3672
3673         * libc/include/stdbool.h: Removed as this is defined by gcc.
3674
3675 2003-07-03  Shaun Jackman  <sjackman@pathwayconnect.com>
3676
3677         * libc/include/stdbool.h: New header file defined by C99.
3678
3679 2003-07-02  Jeff Johnston  <jjohnstn@redhat.com>
3680
3681         * libc/include/sys/types.h (int8_t): Make signed.
3682
3683 2003-07-02  Jeff Johnston  <jjohnstn@redhat.com>
3684
3685         * libc/sys/linux/include/mqueue.h: Add include of <sys/fcntl.h>.
3686
3687 2003-06-27  Jose Goncalves  <jose.goncalves@inov.pt>
3688
3689         * libc/sys/linux/mq_open.c (mq_open): Only set created flag
3690         on if we actually created the shared memory file exclusively.
3691
3692 2003-06-27  Joe Vornehm  <joev@mitre.org>
3693
3694         * libm/common/s_fpclassify.c (__fpclassifyf): Fix
3695         comparisons to account for unsigned internal value w.
3696
3697 2003-06-26  Jeff Johnston  <jjohnstn@redhat.com>
3698
3699         * libc/sys/linux/mq_open.c (mq_open): Must allocate rdbuf and
3700         wrbuf for a non-creating open.
3701
3702 2003-06-24  Kazu Hirata  <kazu@cs.umass.edu>
3703
3704         * libc/machine/h8300/setarch.h: New.
3705         * libc/machine/h8300/memcpy.S: Use it.
3706         * libc/machine/h8300/memset.S: Likewise.
3707         * libc/machine/h8300/reg_memcpy.S: Likewise.
3708         * libc/machine/h8300/reg_memset.S: Likewise.
3709         * libc/machine/h8300/setjmp.S: Likewise.
3710         * libc/machine/h8300/strcmp.S: Likewise.
3711
3712 2003-06-24  Richard Sandiford  <rsandifo@redhat.com>
3713
3714         * libc/sys/h8300hms/crt0.S (_start): Fix register sizes in call
3715         to atexit().
3716
3717 2003-06-20  Jeff Johnston  <jjohnstn@redhat.com>
3718
3719         * configure.host (iq2000): Add tabs.
3720
3721 2003-06-20  Jeff Johnston  <jjohnstn@redhat.com>
3722
3723         * libc/include/sys/reent.h (_REENT_INIT_PTR): Fix macros
3724         to handle latest on_exit change.
3725         * libc/sys/linux/Makefile.am: Remove special compilation
3726         for malloc.c and mcheck.c.
3727         * libc/sys/linux/Makefile.in: Regenerated.
3728         * libc/sys/linux/mntent.c: Add definition of _LIBC flag
3729         after including <features.h>.
3730         * libc/sys/linux/mcheck.c: Ditto.
3731         * libc/sys/linux/malloc.c: Ditto plus define _GNU_SOURCE
3732         for <features.h>.
3733         * libc/sys/linux/intl/Makefile.am: Remove -D_LIBC and
3734         add -DNOT_IN_libc to C flags.
3735         * libc/sys/linux/intl/Makefile.in: Regenerated.
3736         * libc/sys/linux/intl/config.h: Add definition of _LIBC.
3737         * libc/sys/linux/linuxthreads/semaphore.h: Include
3738         <bits/pthreadtypes.h>.
3739         * libc/sys/linux/sys/dirent.h: Define _LIBC and NOT_IN_libc after
3740         including <features.h>.
3741         * libc/sys/linux/sys/lock.h: Ditto.
3742
3743 2003-06-11  Nick Clifton  <nickc@redhat.com>
3744
3745         * libc/reent/reent.c (reclaim_reent): Fix typo in code to free
3746         _on_exit_args_ptr.
3747
3748 2003-06-10  Stan Cox  <scox@redhat.com>
3749             Anthony Green  <green@redhat.com>
3750         
3751         * configure.host: Add iq2000 support.
3752         * newlib/libc/include/machine/ieeefp.h: Ditto.
3753         * newlib/libc/include/machine/setjmp.h: Ditto.
3754         * libc/machine/iq2000, libc/machine/iq2000/setjmp.S,
3755         libc/machine/iq2000/aclocal.m4, libc/machine/iq2000/configure,
3756         libc/machine/iq2000/configure.in, libc/machine/iq2000/Makefile.am,
3757         libc/machine/iq2000/Makefile.in: New files.
3758
3759 2003-06-10  Richard Sandiford  <rsandifo@redhat.com>
3760
3761         * libc/sys/h8300hms/setarch.h: New file.
3762         * libc/sys/h8300hms/close.S, libc/sys/h8300hms/fstat.S,
3763         libc/sys/h8300hms/lseek.S, libc/sys/h8300hms/open.S,
3764         libc/sys/h8300hms/read.S, libc/sys/h8300hms/stat.S,
3765         libc/sys/h8300hms/write.S, libc/sys/h8300hms/crt0.S: Use it.
3766
3767 2003-06-06  Jeff Johnston  <jjohnstn@redhat.com>
3768
3769         * libc/argz/argz_add.c: Change to use _DEFUN macro for function
3770         definition.
3771         * libc/argz/argz_add_sep.c: Ditto.
3772         * libc/argz/argz_append.c libc/argz/argz_count.c: Ditto.
3773         * libc/argz/argz_create.c libc/argz/argz_create_sep.c: Ditto.
3774         * libc/argz/argz_delete.c libc/argz/argz_extract.c: Ditto.
3775         * libc/argz/argz_insert.c libc/argz/argz_next.c: Ditto.
3776         * libc/argz/argz_replace.c libc/argz/argz_stringify.c: Ditto.
3777         * libc/argz/envz_add.c libc/argz/envz_entry.c: Ditto.
3778         * libc/argz/envz_get.c libc/argz/envz_merge.c: Ditto.
3779         * libc/argz/envz_remove.c libc/argz/envz_strip.c: Ditto.
3780         * libc/locale/nl_langinfo.c libc/misc/ffs.c: Ditto.
3781         * libc/posix/closedir.c libc/posix/creat.c: Ditto.
3782         * libc/posix/execl.c libc/posix/execle.c: Ditto.
3783         * libc/posix/execlp.c libc/posix/execve.c: Ditto.
3784         * libc/posix/isatty.c libc/posix/opendir.c: Ditto.
3785         * libc/posix/popen.c libc/posix/readdir.c: Ditto.
3786         * libc/posix/readdir_r.c libc/posix/rewinddir.c: Ditto.
3787         * libc/posix/scandir.c libc/posix/seekdir.c: Ditto.
3788         * libc/posix/telldir.c libc/search/hcreate.c: Ditto.
3789         * libc/search/tdelete.c libc/search/tdestroy.c: Ditto.
3790         * libc/search/tfind.c libc/search/tsearch.c: Ditto.
3791         * libc/search/twalk.c libc/signal/signal.c: Ditto.
3792
3793 2003-06-05  Nick Clifton  <nickc@redhat.com>
3794         
3795         * libc/include/sys/reent.h (struct _on_exit_args): New
3796         structure containing fields used by the on_exit() function.
3797         (struct _atexit): Include struct _on_exit_args.  For
3798         _REENT_SMALL do his via a pointer that is initialised when
3799         needed.
3800         * libc/reent/reent.c (_reclaim_reent): Free the _on_exit_args
3801         structure, if one has been allocated.
3802         * libc/stdlib/atexit.c (atexit): Update indirection to
3803         _fntypes field.
3804         * libc/stdlib/on_exit.c (on_exit): Indirect via the
3805         _on_exit_args structure.  For _REENT_SMALL, allocate a
3806         structure if one does not exist.
3807         * libc/stdlib/exit.c (exit): Indirect via the _on_exit_args
3808         structure.
3809
3810 2003-06-04  Jeff Johnston  <jjohnstn@redhat.com>
3811
3812         * libc/sys/linux/net/Makefile.am: Remove extraneous markers.
3813         * libc/sys/linux/net/Makefile.in: Regenerated.
3814
3815 2003-06-03  Jeff Johnston  <jjohnstn@redhat.com>
3816
3817         * libc/reent/execr.c: Use _DEFUN macro for function declaration.
3818         * libc/reent/fcntlr.c: Ditto.
3819         * libc/reent/fstat64r.c: Ditto.
3820         * libc/reent/linkr.c: Ditto.
3821         * libc/reent/lseek64r.c: Ditto.
3822         * libc/reent/lseekr.c: Ditto.
3823         * libc/reent/openr.c: Ditto.
3824         * libc/reent/readr.c: Ditto.
3825         * libc/reent/reent.c: Ditto.
3826         * libc/reent/sbrkr.c: Ditto.
3827         * libc/reent/signalr.c: Ditto.
3828         * libc/reent/signgam.c: Ditto.
3829         * libc/reent/statr.c: Ditto.
3830         * libc/reent/timer.c: Ditto.
3831         * libc/reent/unlinkr.c: Ditto.
3832         * libc/reent/writer.c: Ditto.
3833         * libc/syscalls/sysclose.c: Ditto.
3834         * libc/syscalls/sysexecve.c: Ditto.
3835         * libc/syscalls/sysfcntl.c: Ditto.
3836         * libc/syscalls/sysfork.c: Ditto.
3837         * libc/syscalls/sysfstat.c: Ditto.
3838         * libc/syscalls/sysgetpid.c: Ditto.
3839         * libc/syscalls/sysgettod.c: Ditto.
3840         * libc/syscalls/syskill.c: Ditto.
3841         * libc/syscalls/syslink.c: Ditto.
3842         * libc/syscalls/syslseek.c: Ditto.
3843         * libc/syscalls/sysopen.c: Ditto.
3844         * libc/syscalls/sysread.c: Ditto.
3845         * libc/syscalls/syssbrk.c: Ditto.
3846         * libc/syscalls/sysstat.c: Ditto.
3847         * libc/syscalls/systimes.c: Ditto.
3848         * libc/syscalls/sysunlink.c: Ditto.
3849         * libc/syscalls/syswait.c: Ditto.
3850         * libc/syscalls/syswrite.c: Ditto.
3851
3852 2003-06-03  Till Straumann  <strauman@SLAC.Stanford.EDU>
3853
3854         * libc/time/tzset_r.c: Change local variables that are
3855         set via sscanf using the %h format specifier to be unsigned short
3856         instead of int.
3857
3858 2003-05-30  Kelley Cook  <kelleycook@wideopenwest.com>
3859
3860         * configure.host:  Allow i[34567]86 variant.
3861         * configure.in: Likewise.
3862         * README: Likewise to the docs.
3863         * configure: Regenerated.
3864         * Makefile.in: Ditto.
3865
3866 2003-05-28  Jeff Johnston  <jjohnstn@redhat.com>
3867             Tom Fitzsimmons  <fitzsim@redhat.com>
3868
3869         * configure.in: Add iconvdata support for x86 linux.
3870         * configure: Regenerated.
3871         * libc/sys/linux/Makefile.am: Add EL/IX level 3 network, dynamic 
3872         library, iconv, and linuxthreads support.
3873         * libc/sys/linux/configure.in: Ditto.
3874         * libc/sys/linux/Makefile.in: Regenerated.
3875         * libc/sys/linux/configure: Ditto.
3876         * iconvdata/EUC-JP.irreversible: New file.
3877         * iconvdata/Makefile.am: Ditto.
3878         * iconvdata/Makefile.in: Ditto.
3879         * iconvdata/SJIS.irreversible: Ditto.
3880         * iconvdata/aclocal.m4: Ditto.
3881         * iconvdata/configure: Ditto.
3882         * iconvdata/configure.in: Ditto.
3883         * iconvdata/dummy.c: Ditto.
3884         * iconvdata/euc-jp.c: Ditto.
3885         * iconvdata/gconv-modules: Ditto.
3886         * iconvdata/jis0201.c: Ditto.
3887         * iconvdata/jis0201.h: Ditto.
3888         * iconvdata/jis0208.c: Ditto.
3889         * iconvdata/jis0208.h: Ditto.
3890         * iconvdata/jis0212.c: Ditto.
3891         * iconvdata/jis0212.h: Ditto.
3892         * iconvdata/sjis.c: Ditto.
3893         * libc/include/errno.h: Protect definition of error_t.
3894         * libc/sys/linux/gethostid.c: New file.
3895         * libc/sys/linux/sethostid.c: Ditto.
3896         * libc/sys/linux/dl/Makefile.am: Ditto.
3897         * libc/sys/linux/dl/Makefile.in: Ditto.
3898         * libc/sys/linux/dl/abi-tag.h: Ditto.
3899         * libc/sys/linux/dl/atomicity.h: Ditto.
3900         * libc/sys/linux/dl/dl-addr.c: Ditto.
3901         * libc/sys/linux/dl/dl-cache.c: Ditto.
3902         * libc/sys/linux/dl/dl-cache.h: Ditto.
3903         * libc/sys/linux/dl/dl-close.c: Ditto.
3904         * libc/sys/linux/dl/dl-debug.c: Ditto.
3905         * libc/sys/linux/dl/dl-deps.c: Ditto.
3906         * libc/sys/linux/dl/dl-dst.h: Ditto.
3907         * libc/sys/linux/dl/dl-error.c: Ditto.
3908         * libc/sys/linux/dl/dl-fini.c: Ditto.
3909         * libc/sys/linux/dl/dl-init.c: Ditto.
3910         * libc/sys/linux/dl/dl-iteratephdr.c: Ditto.
3911         * libc/sys/linux/dl/dl-libc.c: Ditto.
3912         * libc/sys/linux/dl/dl-librecon.h: Ditto.
3913         * libc/sys/linux/dl/dl-load.c: Ditto.
3914         * libc/sys/linux/dl/dl-lookup.c: Ditto.
3915         * libc/sys/linux/dl/dl-lookupcfg.h: Ditto.
3916         * libc/sys/linux/dl/dl-minimal.c: Ditto.
3917         * libc/sys/linux/dl/dl-misc.c: Ditto.
3918         * libc/sys/linux/dl/dl-object.c: Ditto.
3919         * libc/sys/linux/dl/dl-open.c: Ditto.
3920         * libc/sys/linux/dl/dl-osinfo.h: Ditto.
3921         * libc/sys/linux/dl/dl-profile.c: Ditto.
3922         * libc/sys/linux/dl/dl-profstub.c: Ditto.
3923         * libc/sys/linux/dl/dl-reloc.c: Ditto.
3924         * libc/sys/linux/dl/dl-runtime.c: Ditto.
3925         * libc/sys/linux/dl/dl-support.c: Ditto.
3926         * libc/sys/linux/dl/dl-sym.c: Ditto.
3927         * libc/sys/linux/dl/dl-version.c: Ditto.
3928         * libc/sys/linux/dl/dlfcn.h: Ditto.
3929         * libc/sys/linux/dl/do-lookup.h: Ditto.
3930         * libc/sys/linux/dl/do-rel.h: Ditto.
3931         * libc/sys/linux/dl/dynamic-link.h: Ditto.
3932         * libc/sys/linux/dl/kernel-features.h: Ditto.
3933         * libc/sys/linux/dl/ldsodefs.h: Ditto.
3934         * libc/sys/linux/dl/libintl.h: Ditto.
3935         * libc/sys/linux/dl/trusted-dirs.h: Ditto.
3936         * libc/sys/linux/dl/unsecvars.h: Ditto.
3937         * libc/sys/linux/iconv/Makefile.am: Ditto.
3938         * libc/sys/linux/iconv/Makefile.in: Ditto.
3939         * libc/sys/linux/iconv/categories.def: Ditto.
3940         * libc/sys/linux/iconv/dummy-repertoire.c: Ditto.
3941         * libc/sys/linux/iconv/gconv.c: Ditto.
3942         * libc/sys/linux/iconv/gconv_builtin.c: Ditto.
3943         * libc/sys/linux/iconv/gconv_builtin.h: Ditto.
3944         * libc/sys/linux/iconv/gconv_cache.c: Ditto.
3945         * libc/sys/linux/iconv/gconv_charset.h: Ditto.
3946         * libc/sys/linux/iconv/gconv_close.c: Ditto.
3947         * libc/sys/linux/iconv/gconv_conf.c: Ditto.
3948         * libc/sys/linux/iconv/gconv_db.c: Ditto.
3949         * libc/sys/linux/iconv/gconv_dl.c: Ditto.
3950         * libc/sys/linux/iconv/gconv_int.h: Ditto.
3951         * libc/sys/linux/iconv/gconv_open.c: Ditto.
3952         * libc/sys/linux/iconv/gconv_simple.c: Ditto.
3953         * libc/sys/linux/iconv/gconv_trans.c: Ditto.
3954         * libc/sys/linux/iconv/hash-string.h: Ditto.
3955         * libc/sys/linux/iconv/iconv.c: Ditto.
3956         * libc/sys/linux/iconv/iconv.h: Ditto.
3957         * libc/sys/linux/iconv/iconv_charmap.c: Ditto.
3958         * libc/sys/linux/iconv/iconv_close.c: Ditto.
3959         * libc/sys/linux/iconv/iconv_open.c: Ditto.
3960         * libc/sys/linux/iconv/iconvconfig.c: Ditto.
3961         * libc/sys/linux/iconv/iconvconfig.h: Ditto.
3962         * libc/sys/linux/iconv/loadinfo.h: Ditto.
3963         * libc/sys/linux/iconv/localeinfo.h: Ditto.
3964         * libc/sys/linux/iconv/loop.c: Ditto.
3965         * libc/sys/linux/iconv/skeleton.c: Ditto.
3966         * libc/sys/linux/iconv/strtab.c: Ditto.
3967         * libc/sys/linux/include/dl-hash.h: Ditto.
3968         * libc/sys/linux/include/dlfcn.h: Ditto.
3969         * libc/sys/linux/include/fnmatch.h: Ditto.
3970         * libc/sys/linux/include/gconv.h: Ditto.
3971         * libc/sys/linux/include/glob.h: Ditto.
3972         * libc/sys/linux/include/hesiod.h: Ditto.
3973         * libc/sys/linux/include/ifaddrs.h: Ditto.
3974         * libc/sys/linux/include/libc_private.h: Ditto.
3975         * libc/sys/linux/include/link.h: Ditto.
3976         * libc/sys/linux/include/namespace.h: Ditto.
3977         * libc/sys/linux/include/netconfig.h: Ditto.
3978         * libc/sys/linux/include/netdb.h: Ditto.
3979         * libc/sys/linux/include/nsswitch.h: Ditto.
3980         * libc/sys/linux/include/regex.h: Ditto.
3981         * libc/sys/linux/include/resolv.h: Ditto.
3982         * libc/sys/linux/include/rune.h: Ditto.
3983         * libc/sys/linux/include/runetype.h: Ditto.
3984         * libc/sys/linux/include/semaphore.h: Ditto.
3985         * libc/sys/linux/include/setlocale.h: Ditto.
3986         * libc/sys/linux/include/un-namespace.h: Ditto.
3987         * libc/sys/linux/include/wordexp.h: Ditto.
3988         * libc/sys/linux/include/arpa/ftp.h: Ditto.
3989         * libc/sys/linux/include/arpa/inet.h: Ditto.
3990         * libc/sys/linux/include/arpa/nameser.h: Ditto.
3991         * libc/sys/linux/include/arpa/nameser_compat.h: Ditto.
3992         * libc/sys/linux/include/arpa/telnet.h: Ditto.
3993         * libc/sys/linux/include/arpa/tftp.h: Ditto.
3994         * libc/sys/linux/include/net/bpf.h: Ditto.
3995         * libc/sys/linux/include/net/bpf_compat.h: Ditto.
3996         * libc/sys/linux/include/net/bpfdesc.h: Ditto.
3997         * libc/sys/linux/include/net/bridge.h: Ditto.
3998         * libc/sys/linux/include/net/ethernet.h: Ditto.
3999         * libc/sys/linux/include/net/fddi.h: Ditto.
4000         * libc/sys/linux/include/net/if.h: Ditto.
4001         * libc/sys/linux/include/net/if_arc.h: Ditto.
4002         * libc/sys/linux/include/net/if_arp.h: Ditto.
4003         * libc/sys/linux/include/net/if_atm.h: Ditto.
4004         * libc/sys/linux/include/net/if_dl.h: Ditto.
4005         * libc/sys/linux/include/net/if_gif.h: Ditto.
4006         * libc/sys/linux/include/net/if_ieee80211.h: Ditto.
4007         * libc/sys/linux/include/net/if_llc.h: Ditto.
4008         * libc/sys/linux/include/net/if_media.h: Ditto.
4009         * libc/sys/linux/include/net/if_mib.h: Ditto.
4010         * libc/sys/linux/include/net/if_ppp.h: Ditto.
4011         * libc/sys/linux/include/net/if_pppvar.h: Ditto.
4012         * libc/sys/linux/include/net/if_slvar.h: Ditto.
4013         * libc/sys/linux/include/net/if_sppp.h: Ditto.
4014         * libc/sys/linux/include/net/if_stf.h: Ditto.
4015         * libc/sys/linux/include/net/if_tap.h: Ditto.
4016         * libc/sys/linux/include/net/if_tapvar.h: Ditto.
4017         * libc/sys/linux/include/net/if_tun.h: Ditto.
4018         * libc/sys/linux/include/net/if_tunvar.h: Ditto.
4019         * libc/sys/linux/include/net/if_types.h: Ditto.
4020         * libc/sys/linux/include/net/if_var.h: Ditto.
4021         * libc/sys/linux/include/net/if_vlan_var.h: Ditto.
4022         * libc/sys/linux/include/net/intrq.h: Ditto.
4023         * libc/sys/linux/include/net/iso88025.h: Ditto.
4024         * libc/sys/linux/include/net/net_osdep.h: Ditto.
4025         * libc/sys/linux/include/net/netisr.h: Ditto.
4026         * libc/sys/linux/include/net/pfil.h: Ditto.
4027         * libc/sys/linux/include/net/pfkeyv2.h: Ditto.
4028         * libc/sys/linux/include/net/ppp_comp.h: Ditto.
4029         * libc/sys/linux/include/net/ppp_defs.h: Ditto.
4030         * libc/sys/linux/include/net/radix.h: Ditto.
4031         * libc/sys/linux/include/net/raw_cb.h: Ditto.
4032         * libc/sys/linux/include/net/route.h: Ditto.
4033         * libc/sys/linux/include/net/slcompress.h: Ditto.
4034         * libc/sys/linux/include/net/slip.h: Ditto.
4035         * libc/sys/linux/include/net/zlib.h: Ditto.
4036         * libc/sys/linux/include/netinet/icmp6.h: Ditto.
4037         * libc/sys/linux/include/netinet/icmp_var.h: Ditto.
4038         * libc/sys/linux/include/netinet/if_atm.h: Ditto.
4039         * libc/sys/linux/include/netinet/if_ether.h: Ditto.
4040         * libc/sys/linux/include/netinet/igmp.h: Ditto.
4041         * libc/sys/linux/include/netinet/igmp_var.h: Ditto.
4042         * libc/sys/linux/include/netinet/in.h: Ditto.
4043         * libc/sys/linux/include/netinet/in_gif.h: Ditto.
4044         * libc/sys/linux/include/netinet/in_pcb.h: Ditto.
4045         * libc/sys/linux/include/netinet/in_systm.h: Ditto.
4046         * libc/sys/linux/include/netinet/in_var.h: Ditto.
4047         * libc/sys/linux/include/netinet/ip.h: Ditto.
4048         * libc/sys/linux/include/netinet/ip6.h: Ditto.
4049         * libc/sys/linux/include/netinet/ip_dummynet.h: Ditto.
4050         * libc/sys/linux/include/netinet/ip_ecn.h: Ditto.
4051         * libc/sys/linux/include/netinet/ip_encap.h: Ditto.
4052         * libc/sys/linux/include/netinet/ip_flow.h: Ditto.
4053         * libc/sys/linux/include/netinet/ip_fw.h: Ditto.
4054         * libc/sys/linux/include/netinet/ip_icmp.h: Ditto.
4055         * libc/sys/linux/include/netinet/ip_mroute.h: Ditto.
4056         * libc/sys/linux/include/netinet/ip_var.h: Ditto.
4057         * libc/sys/linux/include/netinet/ipprotosw.h: Ditto.
4058         * libc/sys/linux/include/netinet/tcp.h: Ditto.
4059         * libc/sys/linux/include/netinet/tcp_debug.h: Ditto.
4060         * libc/sys/linux/include/netinet/tcp_fsm.h: Ditto.
4061         * libc/sys/linux/include/netinet/tcp_seq.h: Ditto.
4062         * libc/sys/linux/include/netinet/tcp_timer.h: Ditto.
4063         * libc/sys/linux/include/netinet/tcp_var.h: Ditto.
4064         * libc/sys/linux/include/netinet/tcpip.h: Ditto.
4065         * libc/sys/linux/include/netinet/udp.h: Ditto.
4066         * libc/sys/linux/include/netinet/udp_var.h: Ditto.
4067         * libc/sys/linux/include/netinet6/ah.h: Ditto.
4068         * libc/sys/linux/include/netinet6/ah6.h: Ditto.
4069         * libc/sys/linux/include/netinet6/esp.h: Ditto.
4070         * libc/sys/linux/include/netinet6/esp6.h: Ditto.
4071         * libc/sys/linux/include/netinet6/esp_rijndael.h: Ditto.
4072         * libc/sys/linux/include/netinet6/icmp6.h: Ditto.
4073         * libc/sys/linux/include/netinet6/in6.h: Ditto.
4074         * libc/sys/linux/include/netinet6/in6_gif.h: Ditto.
4075         * libc/sys/linux/include/netinet6/in6_ifattach.h: Ditto.
4076         * libc/sys/linux/include/netinet6/in6_pcb.h: Ditto.
4077         * libc/sys/linux/include/netinet6/in6_prefix.h: Ditto.
4078         * libc/sys/linux/include/netinet6/in6_var.h: Ditto.
4079         * libc/sys/linux/include/netinet6/ip6.h: Ditto.
4080         * libc/sys/linux/include/netinet6/ip6_ecn.h: Ditto.
4081         * libc/sys/linux/include/netinet6/ip6_fw.h: Ditto.
4082         * libc/sys/linux/include/netinet6/ip6_mroute.h: Ditto.
4083         * libc/sys/linux/include/netinet6/ip6_var.h: Ditto.
4084         * libc/sys/linux/include/netinet6/ip6protosw.h: Ditto.
4085         * libc/sys/linux/include/netinet6/ipcomp.h: Ditto.
4086         * libc/sys/linux/include/netinet6/ipcomp6.h: Ditto.
4087         * libc/sys/linux/include/netinet6/ipsec.h: Ditto.
4088         * libc/sys/linux/include/netinet6/ipsec6.h: Ditto.
4089         * libc/sys/linux/include/netinet6/mld6_var.h: Ditto.
4090         * libc/sys/linux/include/netinet6/nd6.h: Ditto.
4091         * libc/sys/linux/include/netinet6/pim6.h: Ditto.
4092         * libc/sys/linux/include/netinet6/pim6_var.h: Ditto.
4093         * libc/sys/linux/include/netinet6/raw_ip6.h: Ditto.
4094         * libc/sys/linux/include/netinet6/scope6_var.h: Ditto.
4095         * libc/sys/linux/include/netinet6/tcp6_var.h: Ditto.
4096         * libc/sys/linux/include/netinet6/udp6_var.h: Ditto.
4097         * libc/sys/linux/include/netns/idp.h: Ditto.
4098         * libc/sys/linux/include/netns/idp_var.h: Ditto.
4099         * libc/sys/linux/include/netns/ns.h: Ditto.
4100         * libc/sys/linux/include/netns/ns_error.h: Ditto.
4101         * libc/sys/linux/include/netns/ns_if.h: Ditto.
4102         * libc/sys/linux/include/netns/ns_pcb.h: Ditto.
4103         * libc/sys/linux/include/netns/sp.h: Ditto.
4104         * libc/sys/linux/include/netns/spidp.h: Ditto.
4105         * libc/sys/linux/include/netns/spp_debug.h: Ditto.
4106         * libc/sys/linux/include/netns/spp_timer.h: Ditto.
4107         * libc/sys/linux/include/netns/spp_var.h: Ditto.
4108         * libc/sys/linux/include/rpc/Makefile: Ditto.
4109         * libc/sys/linux/include/rpc/auth.h: Ditto.
4110         * libc/sys/linux/include/rpc/auth_des.h: Ditto.
4111         * libc/sys/linux/include/rpc/auth_kerb.h: Ditto.
4112         * libc/sys/linux/include/rpc/auth_unix.h: Ditto.
4113         * libc/sys/linux/include/rpc/clnt.h: Ditto.
4114         * libc/sys/linux/include/rpc/clnt_soc.h: Ditto.
4115         * libc/sys/linux/include/rpc/clnt_stat.h: Ditto.
4116         * libc/sys/linux/include/rpc/des.h: Ditto.
4117         * libc/sys/linux/include/rpc/des_crypt.h: Ditto.
4118         * libc/sys/linux/include/rpc/nettype.h: Ditto.
4119         * libc/sys/linux/include/rpc/pmap_clnt.h: Ditto.
4120         * libc/sys/linux/include/rpc/pmap_prot.h: Ditto.
4121         * libc/sys/linux/include/rpc/pmap_rmt.h: Ditto.
4122         * libc/sys/linux/include/rpc/raw.h: Ditto.
4123         * libc/sys/linux/include/rpc/rpc.h: Ditto.
4124         * libc/sys/linux/include/rpc/rpc_com.h: Ditto.
4125         * libc/sys/linux/include/rpc/rpc_msg.h: Ditto.
4126         * libc/sys/linux/include/rpc/rpcb_clnt.h: Ditto.
4127         * libc/sys/linux/include/rpc/rpcb_prot.h: Ditto.
4128         * libc/sys/linux/include/rpc/rpcb_prot.x: Ditto.
4129         * libc/sys/linux/include/rpc/rpcent.h: Ditto.
4130         * libc/sys/linux/include/rpc/svc.h: Ditto.
4131         * libc/sys/linux/include/rpc/svc_auth.h: Ditto.
4132         * libc/sys/linux/include/rpc/svc_dg.h: Ditto.
4133         * libc/sys/linux/include/rpc/svc_soc.h: Ditto.
4134         * libc/sys/linux/include/rpc/types.h: Ditto.
4135         * libc/sys/linux/include/rpc/xdr.h: Ditto.
4136         * libc/sys/linux/intl/Makefile.am: Ditto.
4137         * libc/sys/linux/intl/Makefile.in: Ditto.
4138         * libc/sys/linux/intl/bindtextdom.c: Ditto.
4139         * libc/sys/linux/intl/catgets.c: Ditto.
4140         * libc/sys/linux/intl/catgetsinfo.h: Ditto.
4141         * libc/sys/linux/intl/config.h: Ditto.
4142         * libc/sys/linux/intl/dcgettext.c: Ditto.
4143         * libc/sys/linux/intl/dcigettext.c: Ditto.
4144         * libc/sys/linux/intl/dcngettext.c: Ditto.
4145         * libc/sys/linux/intl/dgettext.c: Ditto.
4146         * libc/sys/linux/intl/dngettext.c: Ditto.
4147         * libc/sys/linux/intl/explodename.c: Ditto.
4148         * libc/sys/linux/intl/finddomain.c: Ditto.
4149         * libc/sys/linux/intl/gettext.c: Ditto.
4150         * libc/sys/linux/intl/gettext.h: Ditto.
4151         * libc/sys/linux/intl/gettextP.h: Ditto.
4152         * libc/sys/linux/intl/hash-string.h: Ditto.
4153         * libc/sys/linux/intl/l10nflist.c: Ditto.
4154         * libc/sys/linux/intl/loadinfo.h: Ditto.
4155         * libc/sys/linux/intl/loadmsgcat.c: Ditto.
4156         * libc/sys/linux/intl/locale.alias: Ditto.
4157         * libc/sys/linux/intl/localealias.c: Ditto.
4158         * libc/sys/linux/intl/ngettext.c: Ditto.
4159         * libc/sys/linux/intl/open_catalog.c: Ditto.
4160         * libc/sys/linux/intl/plural.c: Ditto.
4161         * libc/sys/linux/intl/plural.y: Ditto.
4162         * libc/sys/linux/intl/stpcpy.c: Ditto.
4163         * libc/sys/linux/intl/textdomain.c: Ditto.
4164         * libc/sys/linux/linuxthreads/LICENSE: Ditto.
4165         * libc/sys/linux/linuxthreads/Makefile.am: Ditto.
4166         * libc/sys/linux/linuxthreads/Makefile.in: Ditto.
4167         * libc/sys/linux/linuxthreads/aclocal.m4: Ditto.
4168         * libc/sys/linux/linuxthreads/attr.c: Ditto.
4169         * libc/sys/linux/linuxthreads/barrier.c: Ditto.
4170         * libc/sys/linux/linuxthreads/bp-sym.h: Ditto.
4171         * libc/sys/linux/linuxthreads/cancel.c: Ditto.
4172         * libc/sys/linux/linuxthreads/condvar.c: Ditto.
4173         * libc/sys/linux/linuxthreads/config.h: Ditto.
4174         * libc/sys/linux/linuxthreads/configure: Ditto.
4175         * libc/sys/linux/linuxthreads/configure.in: Ditto.
4176         * libc/sys/linux/linuxthreads/defs.awk: Ditto.
4177         * libc/sys/linux/linuxthreads/ecmutex.c: Ditto.
4178         * libc/sys/linux/linuxthreads/events.c: Ditto.
4179         * libc/sys/linux/linuxthreads/getcpuclockid.c: Ditto.
4180         * libc/sys/linux/linuxthreads/getreent.c: Ditto.
4181         * libc/sys/linux/linuxthreads/internals.h: Ditto.
4182         * libc/sys/linux/linuxthreads/join.c: Ditto.
4183         * libc/sys/linux/linuxthreads/joinrace.c: Ditto.
4184         * libc/sys/linux/linuxthreads/kernel-features.h: Ditto.
4185         * libc/sys/linux/linuxthreads/libc-internal.h: Ditto.
4186         * libc/sys/linux/linuxthreads/libc-symbols.h: Ditto.
4187         * libc/sys/linux/linuxthreads/linuxthreads.texi: Ditto.
4188         * libc/sys/linux/linuxthreads/lockfile.c: Ditto.
4189         * libc/sys/linux/linuxthreads/manager.c: Ditto.
4190         * libc/sys/linux/linuxthreads/mq_notify.c: Ditto.
4191         * libc/sys/linux/linuxthreads/mutex.c: Ditto.
4192         * libc/sys/linux/linuxthreads/no-tsd.c: Ditto.
4193         * libc/sys/linux/linuxthreads/oldsemaphore.c: Ditto.
4194         * libc/sys/linux/linuxthreads/posix-timer.h: Ditto.
4195         * libc/sys/linux/linuxthreads/prio.c: Ditto.
4196         * libc/sys/linux/linuxthreads/proc_service.h: Ditto.
4197         * libc/sys/linux/linuxthreads/pt-machine.c: Ditto.
4198         * libc/sys/linux/linuxthreads/ptclock_gettime.c: Ditto.
4199         * libc/sys/linux/linuxthreads/ptclock_settime.c: Ditto.
4200         * libc/sys/linux/linuxthreads/ptfork.c: Ditto.
4201         * libc/sys/linux/linuxthreads/pthread.c: Ditto.
4202         * libc/sys/linux/linuxthreads/ptlongjmp.c: Ditto.
4203         * libc/sys/linux/linuxthreads/queue.h: Ditto.
4204         * libc/sys/linux/linuxthreads/reent.c: Ditto.
4205         * libc/sys/linux/linuxthreads/reqsyscalls.c: Ditto.
4206         * libc/sys/linux/linuxthreads/restart.h: Ditto.
4207         * libc/sys/linux/linuxthreads/rwlock.c: Ditto.
4208         * libc/sys/linux/linuxthreads/semaphore.c: Ditto.
4209         * libc/sys/linux/linuxthreads/semaphore.h: Ditto.
4210         * libc/sys/linux/linuxthreads/shlib-compat.h: Ditto.
4211         * libc/sys/linux/linuxthreads/signals.c: Ditto.
4212         * libc/sys/linux/linuxthreads/specific.c: Ditto.
4213         * libc/sys/linux/linuxthreads/spinlock.c: Ditto.
4214         * libc/sys/linux/linuxthreads/spinlock.h: Ditto.
4215         * libc/sys/linux/linuxthreads/sysctl.c: Ditto.
4216         * libc/sys/linux/linuxthreads/td_init.c: Ditto.
4217         * libc/sys/linux/linuxthreads/td_log.c: Ditto.
4218         * libc/sys/linux/linuxthreads/td_symbol_list.c: Ditto.
4219         * libc/sys/linux/linuxthreads/td_ta_clear_event.c: Ditto.
4220         * libc/sys/linux/linuxthreads/td_ta_delete.c: Ditto.
4221         * libc/sys/linux/linuxthreads/td_ta_enable_stats.c: Ditto.
4222         * libc/sys/linux/linuxthreads/td_ta_event_addr.c: Ditto.
4223         * libc/sys/linux/linuxthreads/td_ta_event_getmsg.c: Ditto.
4224         * libc/sys/linux/linuxthreads/td_ta_get_nthreads.c: Ditto.
4225         * libc/sys/linux/linuxthreads/td_ta_get_ph.c: Ditto.
4226         * libc/sys/linux/linuxthreads/td_ta_get_stats.c: Ditto.
4227         * libc/sys/linux/linuxthreads/td_ta_map_id2thr.c: Ditto.
4228         * libc/sys/linux/linuxthreads/td_ta_map_lwp2thr.c: Ditto.
4229         * libc/sys/linux/linuxthreads/td_ta_new.c: Ditto.
4230         * libc/sys/linux/linuxthreads/td_ta_reset_stats.c: Ditto.
4231         * libc/sys/linux/linuxthreads/td_ta_set_event.c: Ditto.
4232         * libc/sys/linux/linuxthreads/td_ta_setconcurrency.c: Ditto.
4233         * libc/sys/linux/linuxthreads/td_ta_thr_iter.c: Ditto.
4234         * libc/sys/linux/linuxthreads/td_ta_tsd_iter.c: Ditto.
4235         * libc/sys/linux/linuxthreads/td_thr_clear_event.c: Ditto.
4236         * libc/sys/linux/linuxthreads/td_thr_dbresume.c: Ditto.
4237         * libc/sys/linux/linuxthreads/td_thr_dbsuspend.c: Ditto.
4238         * libc/sys/linux/linuxthreads/td_thr_event_enable.c: Ditto.
4239         * libc/sys/linux/linuxthreads/td_thr_event_getmsg.c: Ditto.
4240         * libc/sys/linux/linuxthreads/td_thr_get_info.c: Ditto.
4241         * libc/sys/linux/linuxthreads/td_thr_getfpregs.c: Ditto.
4242         * libc/sys/linux/linuxthreads/td_thr_getgregs.c: Ditto.
4243         * libc/sys/linux/linuxthreads/td_thr_getxregs.c: Ditto.
4244         * libc/sys/linux/linuxthreads/td_thr_getxregsize.c: Ditto.
4245         * libc/sys/linux/linuxthreads/td_thr_set_event.c: Ditto.
4246         * libc/sys/linux/linuxthreads/td_thr_setfpregs.c: Ditto.
4247         * libc/sys/linux/linuxthreads/td_thr_setgregs.c: Ditto.
4248         * libc/sys/linux/linuxthreads/td_thr_setprio.c: Ditto.
4249         * libc/sys/linux/linuxthreads/td_thr_setsigpending.c: Ditto.
4250         * libc/sys/linux/linuxthreads/td_thr_setxregs.c: Ditto.
4251         * libc/sys/linux/linuxthreads/td_thr_sigsetmask.c: Ditto.
4252         * libc/sys/linux/linuxthreads/td_thr_tsd.c: Ditto.
4253         * libc/sys/linux/linuxthreads/td_thr_validate.c: Ditto.
4254         * libc/sys/linux/linuxthreads/testrtsig.h: Ditto.
4255         * libc/sys/linux/linuxthreads/thread_db.h: Ditto.
4256         * libc/sys/linux/linuxthreads/thread_dbP.h: Ditto.
4257         * libc/sys/linux/linuxthreads/timer_create.c: Ditto.
4258         * libc/sys/linux/linuxthreads/timer_delete.c: Ditto.
4259         * libc/sys/linux/linuxthreads/timer_getoverr.c: Ditto.
4260         * libc/sys/linux/linuxthreads/timer_gettime.c: Ditto.
4261         * libc/sys/linux/linuxthreads/timer_routines.c: Ditto.
4262         * libc/sys/linux/linuxthreads/timer_settime.c: Ditto.
4263         * libc/sys/linux/linuxthreads/tst-cancel.c: Ditto.
4264         * libc/sys/linux/linuxthreads/tst-context.c: Ditto.
4265         * libc/sys/linux/linuxthreads/tststack.c: Ditto.
4266         * libc/sys/linux/linuxthreads/unload.c: Ditto.
4267         * libc/sys/linux/linuxthreads/weaks.c: Ditto.
4268         * libc/sys/linux/linuxthreads/wrapsyscall.c: Ditto.
4269         * libc/sys/linux/linuxthreads/bits/initspin.h: Ditto.
4270         * libc/sys/linux/linuxthreads/bits/libc-lock.h: Ditto.
4271         * libc/sys/linux/linuxthreads/bits/libc-tsd.h: Ditto.
4272         * libc/sys/linux/linuxthreads/bits/local_lim.h: Ditto.
4273         * libc/sys/linux/linuxthreads/bits/posix_opt.h: Ditto.
4274         * libc/sys/linux/linuxthreads/bits/pthreadtypes.h: Ditto.
4275         * libc/sys/linux/linuxthreads/bits/sigthread.h: Ditto.
4276         * libc/sys/linux/linuxthreads/machine/Makefile.am: Ditto.
4277         * libc/sys/linux/linuxthreads/machine/Makefile.in: Ditto.
4278         * libc/sys/linux/linuxthreads/machine/aclocal.m4: Ditto.
4279         * libc/sys/linux/linuxthreads/machine/configure: Ditto.
4280         * libc/sys/linux/linuxthreads/machine/configure.in: Ditto.
4281         * libc/sys/linux/linuxthreads/machine/generic/generic-sysd: Ditto.ep.h
4282         * libc/sys/linux/linuxthreads/machine/i386/Makefile.am: Ditto.
4283         * libc/sys/linux/linuxthreads/machine/i386/Makefile.in: Ditto.
4284         * libc/sys/linux/linuxthreads/machine/i386/aclocal.m4: Ditto.
4285         * libc/sys/linux/linuxthreads/machine/i386/bp-asm.h: Ditto.
4286         * libc/sys/linux/linuxthreads/machine/i386/clone.S: Ditto.
4287         * libc/sys/linux/linuxthreads/machine/i386/configure: Ditto.
4288         * libc/sys/linux/linuxthreads/machine/i386/configure.in: Ditto.
4289         * libc/sys/linux/linuxthreads/machine/i386/i386-sysdep.S: Ditto.
4290         * libc/sys/linux/linuxthreads/machine/i386/i386-sysdep.h: Ditto.
4291         * libc/sys/linux/linuxthreads/machine/i386/pspinlock.c: Ditto.
4292         * libc/sys/linux/linuxthreads/machine/i386/pt-machine.h: Ditto.
4293         * libc/sys/linux/linuxthreads/machine/i386/sigcontextinfo.h: Ditto.
4294         * libc/sys/linux/linuxthreads/machine/i386/stackinfo.h: Ditto.
4295         * libc/sys/linux/linuxthreads/machine/i386/sysdep.S: Ditto.
4296         * libc/sys/linux/linuxthreads/machine/i386/sysdep.h: Ditto.
4297         * libc/sys/linux/linuxthreads/machine/i386/useldt.h: Ditto.
4298         * libc/sys/linux/machine/i386/dl-machine.h: Ditto.
4299         * libc/sys/linux/net/Makefile.am: Ditto.
4300         * libc/sys/linux/net/Makefile.in: Ditto.
4301         * libc/sys/linux/net/addr2ascii.3: Ditto.
4302         * libc/sys/linux/net/addr2ascii.c: Ditto.
4303         * libc/sys/linux/net/ascii2addr.c: Ditto.
4304         * libc/sys/linux/net/base64.c: Ditto.
4305         * libc/sys/linux/net/bindresvport.c: Ditto.
4306         * libc/sys/linux/net/byteorder.3: Ditto.
4307         * libc/sys/linux/net/ether_addr.c: Ditto.
4308         * libc/sys/linux/net/ethers.3: Ditto.
4309         * libc/sys/linux/net/getaddrinfo.3: Ditto.
4310         * libc/sys/linux/net/getaddrinfo.c: Ditto.
4311         * libc/sys/linux/net/gethostbydns.c: Ditto.
4312         * libc/sys/linux/net/gethostbyht.c: Ditto.
4313         * libc/sys/linux/net/gethostbyname.3: Ditto.
4314         * libc/sys/linux/net/gethostbynis.c: Ditto.
4315         * libc/sys/linux/net/gethostnamadr.c: Ditto.
4316         * libc/sys/linux/net/getifaddrs.3: Ditto.
4317         * libc/sys/linux/net/getifaddrs.c: Ditto.
4318         * libc/sys/linux/net/getipnodebyname.3: Ditto.
4319         * libc/sys/linux/net/getnameinfo.3: Ditto.
4320         * libc/sys/linux/net/getnameinfo.c: Ditto.
4321         * libc/sys/linux/net/getnetbydns.c: Ditto.
4322         * libc/sys/linux/net/getnetbyht.c: Ditto.
4323         * libc/sys/linux/net/getnetbynis.c: Ditto.
4324         * libc/sys/linux/net/getnetent.3: Ditto.
4325         * libc/sys/linux/net/getnetnamadr.c: Ditto.
4326         * libc/sys/linux/net/getproto.c: Ditto.
4327         * libc/sys/linux/net/getprotoent.3: Ditto.
4328         * libc/sys/linux/net/getprotoent.c: Ditto.
4329         * libc/sys/linux/net/getprotoname.c: Ditto.
4330         * libc/sys/linux/net/getservbyname.c: Ditto.
4331         * libc/sys/linux/net/getservbyport.c: Ditto.
4332         * libc/sys/linux/net/getservent.3: Ditto.
4333         * libc/sys/linux/net/getservent.c: Ditto.
4334         * libc/sys/linux/net/herror.c: Ditto.
4335         * libc/sys/linux/net/hesiod.3: Ditto.
4336         * libc/sys/linux/net/hesiod.c: Ditto.
4337         * libc/sys/linux/net/if_indextoname.3: Ditto.
4338         * libc/sys/linux/net/ifname.c: Ditto.
4339         * libc/sys/linux/net/inet.3: Ditto.
4340         * libc/sys/linux/net/inet6_option_s: Ditto.pace.3
4341         * libc/sys/linux/net/inet6_rthdr_space.3: Ditto.
4342         * libc/sys/linux/net/inet_addr.c: Ditto.
4343         * libc/sys/linux/net/inet_lnaof.c: Ditto.
4344         * libc/sys/linux/net/inet_makeaddr.c: Ditto.
4345         * libc/sys/linux/net/inet_net.3: Ditto.
4346         * libc/sys/linux/net/inet_net_ntop.c: Ditto.
4347         * libc/sys/linux/net/inet_net_pton.c: Ditto.
4348         * libc/sys/linux/net/inet_neta.c: Ditto.
4349         * libc/sys/linux/net/inet_netof.c: Ditto.
4350         * libc/sys/linux/net/inet_network.c: Ditto.
4351         * libc/sys/linux/net/inet_ntoa.c: Ditto.
4352         * libc/sys/linux/net/inet_ntop.c: Ditto.
4353         * libc/sys/linux/net/inet_pton.c: Ditto.
4354         * libc/sys/linux/net/innetgr-stub.c: Ditto.
4355         * libc/sys/linux/net/ip6opt.c: Ditto.
4356         * libc/sys/linux/net/iso_addr.3: Ditto.
4357         * libc/sys/linux/net/iso_addr.c: Ditto.
4358         * libc/sys/linux/net/issetugid-stub.c: Ditto.
4359         * libc/sys/linux/net/linkaddr.3: Ditto.
4360         * libc/sys/linux/net/linkaddr.c: Ditto.
4361         * libc/sys/linux/net/map_v4v6.c: Ditto.
4362         * libc/sys/linux/net/name6.c: Ditto.
4363         * libc/sys/linux/net/namespace.h: Ditto.
4364         * libc/sys/linux/net/ns.3: Ditto.
4365         * libc/sys/linux/net/ns_addr.c: Ditto.
4366         * libc/sys/linux/net/ns_name.c: Ditto.
4367         * libc/sys/linux/net/ns_netint.c: Ditto.
4368         * libc/sys/linux/net/ns_ntoa.c: Ditto.
4369         * libc/sys/linux/net/ns_parse.c: Ditto.
4370         * libc/sys/linux/net/ns_print.c: Ditto.
4371         * libc/sys/linux/net/ns_ttl.c: Ditto.
4372         * libc/sys/linux/net/nsap_addr.c: Ditto.
4373         * libc/sys/linux/net/nsdispatch.3: Ditto.
4374         * libc/sys/linux/net/nsdispatch.c: Ditto.
4375         * libc/sys/linux/net/nslexer.c: Ditto.
4376         * libc/sys/linux/net/nslexer.l: Ditto.
4377         * libc/sys/linux/net/nsparser.c: Ditto.
4378         * libc/sys/linux/net/nsparser.h: Ditto.
4379         * libc/sys/linux/net/nsparser.y: Ditto.
4380         * libc/sys/linux/net/rcmd.3: Ditto.
4381         * libc/sys/linux/net/rcmd.c: Ditto.
4382         * libc/sys/linux/net/rcmdsh.3: Ditto.
4383         * libc/sys/linux/net/rcmdsh.c: Ditto.
4384         * libc/sys/linux/net/recv.c: Ditto.
4385         * libc/sys/linux/net/res_comp.c: Ditto.
4386         * libc/sys/linux/net/res_config.h: Ditto.
4387         * libc/sys/linux/net/res_data.c: Ditto.
4388         * libc/sys/linux/net/res_debug.c: Ditto.
4389         * libc/sys/linux/net/res_init.c: Ditto.
4390         * libc/sys/linux/net/res_mkquery.c: Ditto.
4391         * libc/sys/linux/net/res_mkupdate.c: Ditto.
4392         * libc/sys/linux/net/res_query.c: Ditto.
4393         * libc/sys/linux/net/res_send.c: Ditto.
4394         * libc/sys/linux/net/res_update.c: Ditto.
4395         * libc/sys/linux/net/resolver.3: Ditto.
4396         * libc/sys/linux/net/rthdr.c: Ditto.
4397         * libc/sys/linux/net/send.c: Ditto.
4398         * libc/sys/linux/net/un-namespace.h: Ditto.
4399         * libc/sys/linux/net/vars.c: Ditto.
4400         * libc/sys/linux/stdlib/COPYRIGHT: Ditto.
4401         * libc/sys/linux/stdlib/Makefile.am: Ditto.
4402         * libc/sys/linux/stdlib/Makefile.in: Ditto.
4403         * libc/sys/linux/stdlib/cclass.h: Ditto.
4404         * libc/sys/linux/stdlib/cname.h: Ditto.
4405         * libc/sys/linux/stdlib/collate.c: Ditto.
4406         * libc/sys/linux/stdlib/collate.h: Ditto.
4407         * libc/sys/linux/stdlib/collcmp.c: Ditto.
4408         * libc/sys/linux/stdlib/engine.c: Ditto.
4409         * libc/sys/linux/stdlib/fnmatch.3: Ditto.
4410         * libc/sys/linux/stdlib/fnmatch.c: Ditto.
4411         * libc/sys/linux/stdlib/glob.3: Ditto.
4412         * libc/sys/linux/stdlib/glob.c: Ditto.
4413         * libc/sys/linux/stdlib/reallocf.c: Ditto.
4414         * libc/sys/linux/stdlib/regcomp.c: Ditto.
4415         * libc/sys/linux/stdlib/regerror.c: Ditto.
4416         * libc/sys/linux/stdlib/regex.3: Ditto.
4417         * libc/sys/linux/stdlib/regex2.h: Ditto.
4418         * libc/sys/linux/stdlib/regexec.c: Ditto.
4419         * libc/sys/linux/stdlib/regfree.c: Ditto.
4420         * libc/sys/linux/stdlib/utils.h: Ditto.
4421         * libc/sys/linux/stdlib/wordexp.c: Ditto.
4422         * libc/sys/linux/stdlib/wordfree.c: Ditto.
4423         * libc/sys/linux/sys/dlfcn.h: Ditto.
4424         * libc/sys/linux/sys/elfclass.h: Ditto.
4425         * libc/sys/linux/sys/event.h: Ditto.
4426         * libc/sys/linux/sys/ioccom.h: Ditto.
4427         * libc/sys/linux/sys/libc-tsd.h: Ditto.
4428         * libc/sys/linux/sys/link.h: Ditto.
4429         * libc/sys/linux/sys/lock.h: Ditto.
4430         * libc/sys/linux/sys/param.h: Ditto.
4431         * libc/sys/linux/sys/socket.h: Ditto.
4432         * libc/sys/linux/sys/sockio.h: Ditto.
4433
4434 2003-05-28  Dhananjay Deshpande  <dhananjayd@kpitcummins.com> 
4435
4436         * newlib/libc/machine/h8300/memcpy.S: Use .h8300hn and .h8300sn for 
4437         normal mode
4438         * newlib/libc/machine/h8300/memset.S: Likewise
4439         * newlib/lib/machine/h8300/reg_memcpy.S: Likewise
4440         * newlib/lib/machine/h8300/reg_memset.S: Likewise
4441         * newlib/lib/machine/h8300/setjmp.S: Likewise
4442         * newlib/lib/machine/h8300/strcmp.S: Likewise
4443         * newlib/lib/sys/h8300hms/crt0.S: Likewise
4444
4445 2003-05-13  Corinna Vinschen  <corinna@vinschen.de>
4446
4447         * libc/ctype/ctype_.c: Remove checks for deprecated __CYGWIN32__.
4448         * libc/include/stdio.h: Ditto.
4449         * libc/include/sys/config.h: Ditto.
4450         * libc/stdio/mktemp.c: Ditto.
4451
4452 2003-05-13  Corinna Vinschen  <corinna@vinschen.de>
4453
4454         * libc/locale/ldpart.c (__part_load_locale): Substitute
4455         __CYGWIN_USE_BIG_TYPES__ by __USE_INTERNAL_STAT64.
4456         * libc/search/hash.c (__hash_open): Ditto.
4457         (init_hash): Ditto.
4458         * libc/stdio/fseek.c (fseek): Ditto.
4459         * libc/stdio/makebuf.c (__smakebuf): Ditto.
4460         * libc/stdio/mktemp.c (_gettemp): Ditto.
4461
4462 2003-05-12  Corinna Vinschen  <corinna@vinschen.de>
4463
4464         * libc/include/stdio.h: Change one __CYGWIN__ to __CYGWIN32__.
4465
4466 2003-05-12  Corinna Vinschen  <corinna@vinschen.de>
4467
4468         * configure.host: Accomodate removing the libc/sys/cygwin dir.
4469         * libc/locale/ldpart.c (__part_load_locale): Use 64 bit stat call
4470         if __CYGWIN_USE_BIG_TYPES__ is set.
4471         * libc/search/hash.c (__hash_open): Ditto.
4472         (init_hash): Ditto.
4473         * libc/stdio/fseek.c (fseek): Ditto.
4474         * libc/stdio/makebuf.c (__smakebuf): Ditto.
4475         * libc/stdio/mktemp.c (_gettemp): Ditto.
4476         * libc/sys/cygwin/Makefile.am: Remove.
4477         * libc/sys/cygwin/Makefile.in: Remove.
4478         * libc/sys/cygwin/aclocal.m4: Remove.
4479         * libc/sys/cygwin/configure: Remove.
4480         * libc/sys/cygwin/configure.in: Remove.
4481         * libc/sys/cygwin/crt0.c: Move to winsup/cygwin directory.
4482         * libc/sys/cygwin/sys/dirent.h: Move to winsup/cygwin/include/sys
4483         directory.
4484         * libc/sys/cygwin/sys/param.h: Ditto.
4485         * libc/sys/cygwin/sys/utime.h: Ditto.
4486         * libc/sys/cygwin/sys/utmp.h: Ditto.
4487
4488 2003-05-11  Corinna Vinschen  <corinna@vinschen.de>
4489
4490         * libc/include/sys/types.h: Don't define key_t for Cygwin.
4491
4492 2003-05-10  Christopher Faylor  <cgf@redhat.com>
4493
4494         * libc/sys/cygwin/sys/dirent.h (struct dirent): Accommodate (slightly)
4495         64 bit inodes.
4496
4497 2003-05-09  Corinna Vinschen  <corinna@vinschen.de>
4498
4499         * libc/include/sys/config.h: Remove all Cygwin specific configuration.
4500         Include cygwin/config.h instead.
4501
4502 2003-04-16  Jeff Johnston  <jjohnstn@redhat.com>
4503
4504         * newlib/libc/machine/powerpc (ato*fix*.c,strto*fix*.c): Shield
4505         all code with #ifdef __SPE__ test.
4506         * newlib/libc/machine/powerpc (simdldtoa.c, ufix64toa.c): Ditto.
4507
4508 2003-04-15  Chris January <chris@atomice.net>
4509
4510         * newlib/libc/include/sys/unistd.h: add declaration for gethostid on
4511         Cygwin.
4512
4513 2003-04-09  J"orn Rennecke <joern.rennecke@superh.com>
4514
4515         * libc/machine/sh/memset.S: Avoid clobbering volatile
4516         objects following a tiny to-be-set array in the same quadword.
4517
4518 2001-04-09  Corinna Vinschen  <corinna@vinschen.de>
4519
4520         * libc/include/wchar.h: Add definitions for wcswidth and wcwidth.  
4521         * libc/string/Makefile.am: Add wcswidth.c and wcwidth.c
4522         * libc/string/Makefile.in: Regenerated.
4523         * libc/string/wcswidth.c: New file.
4524         * libc/string/wcwidth.c: New file.
4525         * libc/string/wcstrings.tex: Add wcswidth and wcwidth.
4526
4527 Thu Apr  3 14:01:16 2003  J"orn Rennecke <joern.rennecke@superh.com>
4528
4529         * libc/machine/sh/memset.S: Fix problem with alloco region
4530         exceeding destination region for length >= 88 bytes, start
4531         & 0x16 == 0, end & 0x1f == 18.
4532
4533 2001-04-03  Corinna Vinschen  <corinna@vinschen.de>
4534
4535         * libc/string/wcscoll.c: Fix comment.
4536
4537 2001-04-02  Corinna Vinschen  <corinna@vinschen.de>
4538
4539         * libc/include/wchar.h: Add definition for wcscoll.
4540         * libc/string/Makefile.am: Add wcscoll.c.
4541         * libc/string/Makefile.in: Regenerated.
4542         * libc/string/wcscoll.c: New file.
4543         * libc/string/wcstrings.tex: Add wcscoll.   
4544
4545 2003-04-01  Corinna Vinschen  <corinna@vinschen.de>
4546
4547         * libc/stdio/sscanf.c: Update flags description.
4548         * libc/stdio/vfscanf.c: Add CHAR flag value to denote 8 bit target
4549         type.
4550         (__svfscanf_r): Add 'hh' and 'll' handling.
4551
4552 2003-04-01  Corinna Vinschen  <corinna@vinschen.de>
4553
4554         * libc/sys/cygwin/sys/dirent.h (struct DIR): Change type of
4555         __d_position member to _off_t.
4556
4557 2003-03-20  Jeff Johnston  <jjohnstn@redhat.com>
4558
4559         * libc/stdio/vfscanf.c (__svfscanf_r): For floating point conversion,
4560         count all characters used to create number against maximum width.
4561         * libc/machine/powerpc/vfscanf.c (__svfscanf_r): Ditto.
4562
4563 2003-03-18  D.Venkatasubramanian  <dvenkat@noida.hcltech.com>
4564
4565         * libc/include/sys/h8300hms/crt0.S[__SIMULATOR__]: Add commandline
4566         support.
4567         * configure.host (h8300*-*-*): Added comment regarding -D__SIMULATOR__
4568         flag to support simulator only extensions.
4569
4570 2003-03-17  Bob Cassels  <bcassels@abinitio.com>
4571
4572         * libc/string/wcschr.c: (wcschr): Look for character first, 
4573         then for end of string, so you can do wcschr(x, '\0').
4574
4575 2003-03-10  Corinna Vinschen  <corinna@vinschen.de>     
4576
4577         * libc/include/stdio.h: Declare fgetpos, fsetpos, fseeko and ftello
4578         with internal (_fpos_t and _off_t) datatypes when compiling newlib.
4579         * libc/include/sys/unistd.h: Declare _lseek using _off_t.
4580         * libc/reent/lseekr.c (_lseek_r): Use _off_t instead of off_t.
4581         * libc/stdio/fseeko.c (fseeko): Ditto.
4582         * libc/stdio/ftello.c (ftello): Ditto.
4583         * libc/stdio/stdio.c (__swrite): Ditto.
4584         (__sseek): Ditto.
4585         * libc/stdio/fgetpos.c (fgetpos): Use _fpos_t instead of fpos_t.
4586         * libc/stdio/fseek.c (fseek): Ditto.
4587         * libc/stdio/fsetpos.c (fsetpos): Ditto.
4588         * libc/stdio/ftell.c (ftell): Ditto.
4589         * libc/stdio/local.h: Declare __sseek using _off_t.
4590
4591 2003-03-09  Corinna Vinschen  <corinna@vinschen.de>
4592
4593         * libc/reent/lseekr.c (lseek_r): Use _off_t instead of off_t.
4594
4595 2003-03-09  Corinna Vinschen  <corinna@vinschen.de>
4596
4597         * libc/include/sys/config.h: Define __CYGWIN_USE_BIG_TYPES__ for
4598         Cygwin.
4599
4600 2003-03-09  Corinna Vinschen  <corinna@vinschen.de>
4601
4602         * libc/include/pwd.h: Add guards to avoid type clashes when compiling
4603         Cygwin.
4604         * libc/include/sys/stat.h: Ditto.
4605         * libc/include/sys/unistd.h: Ditto.
4606         * libc/sys/cygwin/sys/dirent.h: Ditto.
4607
4608 2003-03-07  Christopher Faylor  <cgf@redhat.com>
4609
4610         * libc/include/sys/unistd.h: Guard getopt.h call to force only
4611         declaration of getopt and avoid getopt_long declaration.
4612         * libc/sys/cygwin/include/unistd.h: Remove.
4613
4614 2003-03-07  Corinna Vinschen  <corinna@vinschen.de>
4615
4616         * configure.host: Define stdio64_dir for Cygwin.
4617         * libc/include/stdio.h: Change definition of fpos_t to fulfill
4618         Cygwin 64bit file access requirements.
4619         Drop definition of f*64() functions when compiled for Cygwin.
4620         * libc/include/sys/config.h: Define __LARGE64_FILES for Cygwin.
4621         * libc/reent/lseek64r.c: Use _off64_t instead of off64_t.
4622         * libc/stdio64/local64.h: Use _fpos64_t instead of fpos64_t.
4623
4624 2003-03-07   Jeff Johnston  <jjohnstn@redhat.com>
4625
4626         * libc/include/sys/reent.h: Remove extraneous _sig_func
4627         declaration.
4628
4629 2003-02-25   D.Venkatasubramanian <dvenkat@noida.hcltech.com>
4630
4631         * libc/sys/h8300hms/Makefile.am: Add support for new files.
4632         * libc/sys/h8300hms/Makefile.in: Regenerated.
4633         * libc/sys/h8300hms/close.S: New file.
4634         * libc/sys/h8300hms/fstat.S: Ditto.
4635         * libc/sys/h8300hms/lseek.S: Ditto.
4636         * libc/sys/h8300hms/open.S: Ditto.
4637         * libc/sys/h8300hms/stat.S: Ditto.
4638         * libc/sys/h8300hms/read.S: New file to replace read.c.
4639         * libc/sys/h8300hms/read.c: Removed.
4640         * libc/sys/h8300hms/syscalls.c: Removed functions _open,
4641         _lseek, _close, _stat, _fstat.
4642         * libc/sys/h8300hms/write.S: New file to replace write.c.
4643         * libc/sys/h8300hms/write.c: Removed.
4644
4645 2003-02-20  Nick Clifton  <nickc@redhat.com>
4646
4647         * Add support for Cirrus Maverick ARM co-processor:
4648         
4649         2000-09-13  Aldy Hernandez  <aldyh@redhat.com>
4650
4651                 * libc/include/machine/ieeefp.h: Set IEEE_BIG_ENDIAN or
4652                 IEEE_LITTLE_ENDIAN depending on endian mode (cirrus).
4653
4654         2000-08-11  Aldy Hernandez  <aldyh@redhat.com>
4655
4656                 * configure.host: set sys_dir, syscall_dir, and
4657                 newlib_cflags for ep9312 host.
4658
4659         * configure.host: Restore alpha sorting of entries in case
4660         statements.
4661
4662 2003-02-19  Jeff Johnston  <jjohnstn@redhat.com>
4663
4664         * libc/stdlib/mallocr.c (unlink): Revert 02/18 fix.
4665
4666 2003-02-18  Christian Groessler  <chris@groessler.org>
4667
4668         * libc/machine/z8k/setjmp.S (_setjmp / _longjmp): Fix to
4669         support z8001 segmented mode.
4670
4671 2003-02-18  Earnie Boyd  <earnie@users.sf.net>
4672
4673         * libc/stdlib/mallocr.c (unlink): Don't assign a value to a pointer
4674         with a NULL value.
4675
4676 2003-02-10  Christopher Faylor  <cgf@redhat.com>
4677
4678         * libc/include/sys/types.h: Don't define __MS_types__ for Cygwin.
4679         Don't define some types under cygwin.
4680
4681 2003-02-07  Jeff Johnston  <jjohnstn@redhat.com>
4682
4683         * acinclude.m4 (--disable-newlib-supplied-syscalls): New configuration 
4684         option to allow disabling of syscalls being supplied in newlib.
4685         * aclocal.m4: Regenerated.
4686         * configure: Ditto.
4687         * configure.host: Add support of new configuration option and add
4688         -D__NO_SYSCALLS__ if newlib supplied syscalls are disabled.
4689         * doc/aclocal.m4: Regenerated.
4690         * doc/configure: Ditto.
4691         * libc/*aclocal.m4: Ditto.
4692         * libc/*configure: Ditto.
4693         * libm/*aclocal.m4: Ditto.
4694         * libm/*configure: Ditto.
4695         * libc/sys/arm/Makefile.am: Don't build syscalls.o if new option
4696         is disabled.
4697         * libc/sys/arm/Makefile.in: Regenerated.
4698
4699 2003-02-05  Jonathan Larmour  <jifl@eCosCentric.com>
4700
4701         * libc/stdio/vsprintf.c (vsprintf, _vsprintf_r): Set _file fd to
4702         -1 to be sure it cannot later match a valid file fd causing
4703         isatty() to return 1.
4704         * libc/stdio/asprintf.c (asprintf, _asprintf_r): Ditto.
4705         * libc/stdio/sprintf.c (sprintf, _sprintf_r): Ditto.
4706         * libc/stdio/vasprintf.c (vasprintf, _vasprintf_r): Ditto.
4707
4708 2003-02-03  Jeff Johnston  <jjohnstn@redhat.com>
4709
4710         * libc/stdlib/ldtoa.c (_ldtoa_r): Fix code to allocate the format
4711         buffer based on the precision, after we have processed the input value 
4712         in a local buffer and know its relative magnitude. 
4713
4714 2003-01-31  Michael Snyder  <msnyder@redhat.com>
4715
4716         * libc/sys/h8300hms/_exit.c (_exit, __exit):  Slip a magic cookie
4717         into registers r1 and r2, so that the simulator can distinguish
4718         this trap from a breakpoint trap.  Copied from libgloss.
4719
4720 2003-01-31  Michael Snyder  <msnyder@redhat.com>
4721
4722         * libc/sys/h8300hms/crt0.S (_start): Change local label
4723         from .loop to .Loop, so that ld and gdb will ignore it.
4724
4725 2003-01-29  Jason Tishler  <jason@tishler.net>
4726
4727         * libc/include/time.h: Declare nanosleep() under Cygwin.
4728
4729 2003-01-24  Nick Clifton  <nickc@redhat.com>
4730
4731         * Add sh2e support:
4732
4733         2002-04-02  Alexandre Oliva  <aoliva@redhat.com>
4734
4735                 * libc/machine/sh/asm.h: Added __SH2E__ next to __SH3E__.
4736                 * libc/machine/sh/setjmp.S: Likewise.
4737                 * libc/include/machine/ieeefp.h: Likewise.
4738
4739 2003-01-24  Corinna Vinschen  <corinna@vinschen.de>
4740
4741         * libc/include/sys/unistd.h: Add setregid and setreuid declarations
4742         for Cygwin.
4743
4744 2003-01-21 Anita Kulkarni  <anitak@kpit.com>
4745   
4746         * libc/time/difftime.c : Typecast the result to double.
4747
4748 2003-01-20  Christopher Faylor  <cgf@redhat.com>
4749
4750         * libc/include/sys/unistd.h: Add rresvport declaration for cygwin.
4751
4752 2003-01-18  Nick Clifton  <nickc@redhat.com>
4753
4754         * libc/include/machine/ieeefp.h : Define __IEEE_BIG_ENDIAN,
4755         __SMALL_BITFIELDS and _DOUBLE_IS_32BITS for IP2K.
4756
4757 2003-01-16  Joel Sherrill <joel@OARcorp.com>
4758
4759         * libc/sys/rtems/include/limits.h, libc/sys/rtems/sys/param.h,
4760         libc/sys/rtems/sys/syslimits.h: Update to be in sync with what 
4761         constants are defined in each file in the shared versions in
4762         libc/include.
4763         * libc/sys/rtems/crt0.c: Define extra symbols on SH and HP-PA to
4764         autoconf can link programs.
4765         * libc/include/machine/types.h: Explicitly specify signed on
4766         intXX_t types to ensure they are signed.
4767
4768 2003-01-14  Christopher Faylor  <cgf@redhat.com>
4769
4770         * libc/time/strftime.c (strftime): Add '%h' and '%l, %k' GNU
4771         extensions.
4772
4773 2003-01-08  Richard Sandiford  <rsandifo@redhat.com>
4774
4775         * configure.host (mips64vr-elf, mips64vrel-elf): New config.
4776
4777 2003-01-07  Charles Wilson  <cwilson@ece.gatech.edu>
4778
4779         * libc/stdio/sprintf.c: fix typo
4780         * libc/stdio/vfprintf.c: fix typo
4781
4782 2003-01-07  Jeff Johnston  <jjohnstn@redhat.com>
4783
4784         * configure.host: Support long double I/O for x86-linux.
4785         * libc/stdlib/ldtoa.c (_ldtoa_r): Fix code to allocate a buffer
4786         large enough to hold formatted result.
4787         * libc/machine/powerpc/simdldtoa.c (_simdldtoa_r): Ditto.
4788
4789 2003-01-06  Charles Wilson  <cwilson@ece.gatech.edu>
4790
4791         * Makefile.am: Add vasprintf.
4792         * Makefile.in: Regenerated.
4793
4794 2003-01-06  Charles Wilson  <cwilson@ece.gatech.edu>
4795
4796         * asprintf.c (_asprintf_r): insure both declarations
4797         are the same.
4798
4799 2002-12-28  Christopher Faylor  <cgf@redhat.com>
4800
4801         * libc/include/sys/unistd.h: Under cygwin, just include getopt.h rather
4802         than defining getopt directly.
4803
4804 2002-12-20  Jeff Johnston  <jjohnstn@redhat.com>
4805
4806         * NEWS: Update with 1.11.0 info.
4807         * README: Ditto.
4808         * acinclude.m4: Change version number to 1.11.0.
4809         * aclocal.m4: Regenerated.
4810         * configure: Ditto.
4811         * doc/aclocal.m4: Ditto.
4812         * doc/configure: Ditto.
4813         * libc/*/aclocal.m4: Ditto.
4814         * libc/*/configure: Ditto.
4815         * libc/libc.texinfo: Ditto.
4816         * libm/*/aclocal.m4: Ditto.
4817         * libm/*/configure: Ditto.
4818         * libm/libm.texinfo: Ditto.
4819         * libc/sys/linux/shared.ld: Add VERS_1.11.
4820
4821 2002-12-20  Jeff Johnston  <jjohnstn@redhat.com>
4822
4823         * libc/machine/i386/f_atan2.S: Change copyright from Cygnus
4824         Solutions to Red Hat Inc.
4825         * libc/machine/i386/f_atan2f.S: Ditto.
4826         * libc/machine/i386/f_exp.c: Ditto.
4827         * libc/machine/i386/f_expf.c: Ditto.
4828         * libc/machine/i386/f_frexp.S: Ditto.
4829         * libc/machine/i386/f_frexpf.S: Ditto.
4830         * libc/machine/i386/f_ldexp.S: Ditto.
4831         * libc/machine/i386/f_ldexpf.S: Ditto.
4832         * libc/machine/i386/f_log.S: Ditto.
4833         * libc/machine/i386/f_log10.S: Ditto.
4834         * libc/machine/i386/f_log10f.S: Ditto.
4835         * libc/machine/i386/f_logf.S: Ditto.
4836         * libc/machine/i386/f_pow.c: Ditto.
4837         * libc/machine/i386/f_powf.c: Ditto.
4838         * libc/machine/i386/f_tan.S: Ditto.
4839         * libc/machine/i386/f_tanf.S: Ditto.
4840         * libc/machine/i386/memchr.S: Ditto.
4841         * libc/machine/i386/memcmp.S: Ditto.
4842         * libc/machine/i386/memcpy.S: Ditto.
4843         * libc/machine/i386/memmove.S: Ditto.
4844         * libc/machine/i386/memset.S: Ditto.
4845         * libc/machine/i386/strchr.S: Ditto.
4846         * libc/machine/i386/strlen.S: Ditto.
4847         * libm/machine/i386/f_atan2.S: Ditto.
4848         * libm/machine/i386/f_atan2f.S: Ditto.
4849         * libm/machine/i386/f_exp.c: Ditto.
4850         * libm/machine/i386/f_expf.c: Ditto.
4851         * libm/machine/i386/f_frexp.S: Ditto.
4852         * libm/machine/i386/f_frexpf.S: Ditto.
4853         * libm/machine/i386/f_ldexp.S: Ditto.
4854         * libm/machine/i386/f_ldexpf.S: Ditto.
4855         * libm/machine/i386/f_log.S: Ditto.
4856         * libm/machine/i386/f_log10.S: Ditto.
4857         * libm/machine/i386/f_log10f.S: Ditto.
4858         * libm/machine/i386/f_logf.S: Ditto.
4859         * libm/machine/i386/f_pow.c: Ditto.
4860         * libm/machine/i386/f_powf.c: Ditto.
4861         * libm/machine/i386/f_tan.S: Ditto.
4862         * libm/machine/i386/f_tanf.S: Ditto.
4863
4864 2002-12-20  Jeff Johnston  <jjohnstn@redhat.com>
4865
4866         * libc/stdlib/environ.c: Update license to Red Hat.
4867         * libc/machine/hppa/setjmp.S: Ditto.
4868         * libm/test/Makefile.in: Ditto.
4869
4870 2002-12-19  Jeff Johnston  <jjohnstn@redhat.com>
4871
4872         * configure.host: Remove references to go32.
4873         * libc/sys/go32/*: Removed.
4874
4875 2002-12-16  Kazu Hirata  <kazu@cs.umass.edu>
4876
4877         * libc/include/sys/config.h: Change setting of INT_MAX
4878         and UINT_MAX, to use __INT_MAX__ for __H8300__, __H8300H__,
4879         __H8300S__.  Also consolidate flag settings for these
4880         platforms.
4881
4882 2002-12-10  Joel Sherrill  <joel@OARcorp.com>
4883
4884         * libc/include/machine/setjmp.h: Make sure _JBLEN is defined
4885         for i386-rtems targets.
4886
4887 2002-12-06  Jeff Johnston  <jjohnstn@redhat.com>
4888
4889         * libc/include/stdlib.h (strtof): New prototype (from C99).
4890         (strtodf): Changed from prototype to macro which redefines
4891         to strtof.
4892         * libc/stdlib/atof.c: Change documentation to refer to strtof
4893         instead of strtodf.
4894         * libc/stdlib/atoff.c (atoff): Change to call strtof instead of
4895         strtodf.
4896         * libc/stdlib/strtod.c (strtodf): Renamed to strtof.
4897         (strtof): New function.
4898         * libm/test/convert.c (test_strtodf): Renamed to test_strtof which
4899         calls strtof.
4900
4901 2002-11-27  Christopher Faylor  <cgf@redhat.com>
4902
4903         * libc/string/memset.c (memset): Fix comment.
4904
4905 2002-11-26  Christopher Faylor  <cgf@redhat.com>
4906
4907         * libc/string/memset.c (memset): Move initialization of 'd' earlier in
4908         function.
4909
4910 2002-11-25  Christopher Faylor  <cgf@redhat.com>
4911
4912         * libc/string/memset.c (memset): Minor optimization: Use new 'd'
4913         variable, introduced below, everywhere.
4914
4915 2002-11-25  Kazu Hirata  <kazu@cs.umass.edu>
4916
4917         * libc/string/memset.c (memset): Make it safe even if
4918         sizeof (int) = 2.
4919
4920 2002-11-22  Joe Buehler  <jbuehler@hekimian.com>
4921
4922         * configure.in: Change check for libc/include in ${CC} to
4923         use an intermediate value so as to work with different shells.
4924         * configure: Regenerated.
4925         * Makefile.in: Ditto.
4926
4927 2002-11-22  Vijay L. Khuspe  <vijayk1@kpit.com>
4928
4929         * libc/sys/h8300hms/read.c: Add support for normal mode
4930         architecture.
4931
4932 2002-11-20  Ryo Tsuruta  <ryo@kitanet.ne.jp>
4933
4934         * libc/machine/h8300/setjmp.S (setjmp, longjmp): Combine common
4935         code for __H8300H__ and __H8300S__.  Also return 32-bit return code
4936         when -mint32 is used.
4937
4938 2002-11-18  Nick Clifton  <nickc@redhat.com>
4939
4940         * libc/sys/arm/crt0.S: Add NULL to end of argv array.
4941
4942 2002-11-14  Jeff Johnston  <jjohnstn@redhat.com>
4943
4944         * testsuite/lib/passfail.exp (newlib_pass_fail): Changed to
4945         only issue one pass/fail message for a compile/link/execute.
4946         * testsuite/newlib.elix/elix.exp: New file.
4947         * testsuite/newlib.elix/tmmap.c: Ditto.
4948
4949 2002-11-06  Christopher Faylor  <cgf@redhat.com>
4950
4951         * libc/stdlib/malign.c: Don't compile if MALLOC_PROVIDED.
4952         * libc/stdlib/mlock.c: Ditto.
4953         * libc/stdlib/msize.c: Ditto.
4954         * libc/stdlib/msize.c: Ditto.
4955         * libc/stdlib/mtrim.c: Ditto.
4956         * libc/stdlib/valloc.c: Ditto.
4957
4958 2002-11-12  Jeff Johnston  <jjohnstn@redhat.com>
4959
4960         * libc/stdlib/ldtoa.c (e64toe): When checking the exponent
4961         for inf/nan, make sure that the check ignores the sign bit.
4962
4963 2002-11-07  Joel Sherrill <joel@OARcorp.com>
4964
4965         * libc/sys/rtems/machine: New directory.
4966         * libc/sys/rtems/machine/limits.h, libc/sys/rtems/machine/param.h,
4967         libc/sys/rtems/sys/param.h, libc/sys/rtems/sys/syslimits.h,
4968         libc/sys/rtems/sys/utime.h: New files added to make *-rtems newlib
4969         targets more BSD like when installed without requiring files to
4970         be overwritten at install point when RTEMS itself is installed.
4971         * Makefile.am: Pick up system dependent machine .h files such as
4972         might be found on a BSD-ish system.
4973         * Makefile.in: Regenerate.
4974         * libc/include/machine/types.h: When on an RTEMS target, define a
4975         few BSD flavor types. 
4976
4977 2002-11-06  Sergey Okhapkin  <sos@prospect.com.ru>
4978
4979         * include/utmp.h: Define WTMP_FILE.  Define and use UT_IDLEN.
4980
4981 2002-11-06  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
4982
4983         * libc/include/wchar.h: Use _{BEGIN,END}_STD_C instead of extern "C".
4984         * libc/include/wctype.h: Ditto.
4985
4986 2002-11-04  Jeff Johnston  <jjohnstn@redhat.com>
4987
4988         * libc/include/wchar.h: Add extern "C" specifier if C++.
4989         * libc/include/wctype.h: Ditto.
4990
4991 2002-10-18  Jeff Johnston  <jjohnstn@redhat.com>
4992
4993         * testsuite/newlib.wctype/tiswctype.c: New test case.
4994         * testsuite/newlib.wctype/twctrans.c: Ditto.
4995
4996 2002-10-18  Jeff Johnston  <jjohnstn@redhat.com>
4997
4998         * libc/sys/linux/machine/i386/include/endian.h: New file.
4999         * libc/sys/linux/machine/i386/include/param.h: Ditto.
5000
5001 2002-10-18  Jeff Johnston  <jjohnstn@redhat.com>
5002
5003         * libm/machine/i386/aclocal.m4: Regenerated.
5004         * libm/machine/i386/configure: Ditto.
5005
5006 2002-10-18  Jeff Johnston  <jjohnstn@redhat.com>
5007
5008         * testsuite/include/check.h: New header file to use with
5009         test cases.
5010         * testsuite/lib/newlib.exp: Add testsuite/include directory
5011         to list of header files to use.
5012         * testsuite/newlib.wctype/twctype.c: New test case for iswctype fns.
5013         * testsuite/newlib.wctype/wctype.exp: New file.
5014
5015 2002-10-11  Graham Stott  <graham.stott@btinternet.com>
5016             Richard Sandiford  <rsandifo@redhat.com>
5017
5018         * libc/include/sys/config.h (SIZE_T_SMALLER_THAN_LONG): Undefine.
5019         * libc/stdlib/mallocr.c (long_sub_size_t): Define in a way that
5020         doesn't require the SIZE_T_SMALLER_THAN_LONG macro.
5021
5022 2002-10-07      Joel Sherrill <joel@OARcorp.com>
5023
5024         * libc/sys/rtems/crt0.c: Add even more symbols so gcc() can link
5025         dummy programs.
5026
5027 2002-10-07      Joel Sherrill <joel@OARcorp.com>
5028
5029         * libc/include/pthread.h: Define PTHREAD_CANCELED.
5030
5031 2002-10-07      Joel Sherrill <joel@OARcorp.com>
5032
5033         * libc/machine/hppa/DEFS.h, libc/machine/hppa/pcc_prefix.s,
5034         libc/machine/hppa/setjmp.S, libc/machine/hppa/DEFS.h: Make this
5035         compile with current GNU tools.
5036
5037 2002-10-07  Jeff Johnston  <jjohnstn@redhat.com>
5038
5039         * Makefile.am: Add EXTRA_DIRS to allow future dependencies on
5040         the build library.
5041         * configure.in: Ditto.
5042         * Makefile.in: Regenerated.
5043         * configure: Ditto.
5044         * libc/sys/linux/Makefile.am: Add EXTRA_SUBDIRS and EXTRA_SUBLIBS
5045         for specifying configured libraries/directories.
5046         * libc/sys/linux/configure.in: Ditto.
5047         * libc/sys/linux/Makefile.in: Regenerated.
5048         * libc/sys/linux/configure: Ditto.
5049
5050 2002-10-03  Jeff Johnston  <jjohnstn@redhat.com>
5051
5052         * libc/include/reent.h: Update documentation at start of file.
5053
5054 2002-09-27  Jim Wilson  <wilson@redhat.com>
5055
5056         * libc/sys/sysnecv850/crt0.S (start): Delete v850 code for initializing
5057         the ctbp register.
5058
5059 2002-09-27  Jeff Johnston  <jjohnstn@redhat.com>
5060
5061         * libc/ctype/jp2uc.c: Change to use multiple arrays in jp2uc.h.
5062         Also convert to EUCJP before using arrays.  For values not in
5063         the conversion arrays, return WEOF.
5064         * libc/ctype/jp2uc.h: Change from one array to a number of
5065         arrays to account for the fact that the originating table
5066         is not contiguous for the input values since some are invalid.
5067
5068 2002-09-24  Jeff Johnston  <jjohnstn@redhat.com>
5069
5070         * libc/time/ctime.c: Fix prototype documentation.
5071
5072 2002-09-24  Corinna Vinschen  <corinna@vinschen.de>
5073
5074         * libc/include/sys/errno.h: Add EOVERFLOW.
5075
5076 2002-09-20  Jeff Johnston  <jjohnstn@redhat.com>
5077
5078         * libc/include/wctype.h: New file.
5079
5080 2002-09-20  Jeff Johnston  <jjohnstn@redhat.com>
5081
5082         * libc/ctype/Makefile.am: Add new files.
5083         * libc/ctype/Makefile.in: Regenerated.
5084         * libc/ctype/ctype.tex: Add new iswxxxx, towxxxx, wctype,
5085         and wctrans functions to documentation index.
5086         * libc/ctype/iswalnum.c: New file.
5087         * libc/ctype/iswalpha.c: Ditto.
5088         * libc/ctype/iswblank.c: Ditto.
5089         * libc/ctype/iswcntrl.c: Ditto.
5090         * libc/ctype/iswctype.c: Ditto.
5091         * libc/ctype/iswdigit.c: Ditto.
5092         * libc/ctype/iswgraph.c: Ditto.
5093         * libc/ctype/iswlower.c: Ditto.
5094         * libc/ctype/iswprint.c: Ditto.
5095         * libc/ctype/iswpunct.c: Ditto.
5096         * libc/ctype/iswspace.c: Ditto.
5097         * libc/ctype/iswupper.c: Ditto.
5098         * libc/ctype/iswxdigit.c: Ditto.
5099         * libc/ctype/jp2uc.c: Ditto.
5100         * libc/ctype/jp2uc.h: Ditto.
5101         * libc/ctype/local.h: Ditto.
5102         * libc/ctype/towctrans.c: Ditto.
5103         * libc/ctype/towlower.c: Ditto.
5104         * libc/ctype/towupper.c: Ditto.
5105         * libc/ctype/utf8alpha.h: Ditto.
5106         * libc/ctype/utf8print.h: Ditto.
5107         * libc/ctype/utf8punct.h: Ditto.
5108         * libc/ctype/wctrans.c: Ditto.
5109         * libc/ctype/wctype.c: Ditto.
5110         * libc/locale/locale.c (__lc_ctype): New external array to
5111         replace static lc_ctype array.
5112         * libc/stdlib/mbtowc_r.c: Use __lc_ctype to check current lc_ctype
5113         rather than reentrancy structure's _current_locale field.
5114         * libc/stdlib/wctomb_r.c: Ditto.
5115
5116 2002-09-20  Jeff Johnston  <jjohnstn@redhat.com>
5117
5118         * configure.host: Minor comment and formatting changes.
5119         * libc/Makefile.am: Add libc_la_DEPENDENCIES.
5120         * libc/Makefile.in: Regenerated.
5121         * libc/include/sys/config.h: Minor format change.
5122
5123 2002-09-19  Jeff Johnston  <jjohnstn@redhat.com>
5124
5125         * libc/syscalls/sysfcntl.c (fcntl): Fix typo in preprocessor
5126         statement comment.
5127
5128 2002-09-19  Jeff Johnston  <jjohnstn@redhat.com>
5129
5130         * libc/posix/opendir.c (opendir): Change code to check
5131         for HAVE_FCNTL before calling fcntl.
5132         * libc/search/hash.c (hash_open): Ditto.
5133         * libc/search/hash_page.c (open_tmp): Ditto.
5134         * libc/reent/Makefile.am: Add fcntlr.c.
5135         * libc/reent/Makefile.in: Regenerated.
5136         * libc/reent/fcntlr.c: New file.
5137         * libc/stdio/fdopen.c (_fdopen_r): Change to call _fcntl_r
5138         instead of _fcntl when HAVE_FCNTL flag is set.
5139         * libc/syscalls/sysfcntl.c (fcntl): Check for HAVE_FCNTL flag
5140         to see if _fcntl or _fcntl_r should be called.  If flag is not
5141         set, default to ENOSYS stub.
5142
5143 2002-09-16  Jeff Johnston  <jjohnstn@redhat.com>
5144
5145         * libc/include/wchar.h (mbstate_t): Change protective flag to
5146         be _MBSTATE_T.
5147         * libc/include/sys/_types.h (_mbstate_t): Remove protective flag.
5148         [__CYGWIN__]: Remove special code that defines mbstate_t and WEOF
5149         for Cygwin.
5150         * libc/sys/linux/sys/_types.h (_mbstate_t): Remove protective flag.
5151
5152 2002-09-11  Jeff Johnston  <jjohnstn@redhat.com>
5153
5154         * acinclude.m4 (enable-newlib-mb): Change check to
5155         default newlib_mb variable to empty string rather than "no".
5156         * configure.host: Remove hard-coding of -DMB_CAPABLE for
5157         x86-linux and Cygwin.  Add code to check for newlib_mb
5158         being unset in which case set to "yes" for x86-linux and
5159         Cygwin.  Change check for newlib_mb being "yes" to allow
5160         for an empty string.
5161         * configure.in (_MB_LEN_MAX): New AC_DEFINE.
5162         * newlib.hin (_MB_LEN_MAX): New define to configure.
5163         * aclocal.m4: Regenerated.
5164         * configure: Ditto.
5165         * libc/include/limits.h: New file.
5166         * libc/sys/linux/include/limits.h: Ditto.
5167         * doc/aclocal.m4 doc/configure libc/aclocal.m4
5168           libc/configure libc/include/%redact libc/machine/aclocal.m4
5169           libc/machine/configure libc/machine/a29k/aclocal.m4
5170           libc/machine/a29k/configure libc/machine/arm/aclocal.m4
5171           libc/machine/arm/configure libc/machine/d10v/aclocal.m4
5172           libc/machine/d10v/configure libc/machine/d30v/aclocal.m4
5173           libc/machine/d30v/configure libc/machine/fr30/aclocal.m4
5174           libc/machine/fr30/configure libc/machine/frv/aclocal.m4
5175           libc/machine/frv/configure libc/machine/h8300/aclocal.m4
5176           libc/machine/h8300/configure libc/machine/h8500/aclocal.m4
5177           libc/machine/h8500/configure libc/machine/hppa/aclocal.m4
5178           libc/machine/hppa/configure libc/machine/i386/aclocal.m4
5179           libc/machine/i386/configure libc/machine/i960/aclocal.m4
5180           libc/machine/i960/configure libc/machine/m32r/aclocal.m4
5181           libc/machine/m32r/configure libc/machine/m68hc11/aclocal.m4
5182           libc/machine/m68hc11/configure libc/machine/m68k/aclocal.m4
5183           libc/machine/m68k/configure libc/machine/m88k/aclocal.m4
5184           libc/machine/m88k/configure libc/machine/mips/aclocal.m4
5185           libc/machine/mips/configure libc/machine/mn10200/aclocal.m4
5186           libc/machine/mn10200/configure libc/machine/mn10300/aclocal.m4
5187           libc/machine/mn10300/configure libc/machine/necv70/aclocal.m4
5188           libc/machine/necv70/configure libc/machine/powerpc/aclocal.m4
5189           libc/machine/powerpc/configure libc/machine/sh/aclocal.m4
5190           libc/machine/sh/configure libc/machine/sparc/aclocal.m4
5191           libc/machine/sparc/configure libc/machine/tic80/aclocal.m4
5192           libc/machine/tic80/configure libc/machine/v850/aclocal.m4
5193           libc/machine/v850/configure libc/machine/w65/aclocal.m4
5194           libc/machine/w65/configure libc/machine/xscale/aclocal.m4
5195           libc/machine/xscale/configure
5196           libc/machine/xstormy16/aclocal.m4
5197           libc/machine/xstormy16/configure libc/machine/z8k/aclocal.m4
5198           libc/machine/z8k/configure libc/sys/aclocal.m4
5199           libc/sys/configure libc/sys/a29khif/aclocal.m4
5200           libc/sys/a29khif/configure libc/sys/arc/aclocal.m4
5201           libc/sys/arc/configure libc/sys/arm/aclocal.m4
5202           libc/sys/arm/configure libc/sys/cygwin/aclocal.m4
5203           libc/sys/cygwin/configure libc/sys/d10v/aclocal.m4
5204           libc/sys/d10v/configure libc/sys/decstation/aclocal.m4
5205           libc/sys/decstation/configure libc/sys/go32/aclocal.m4
5206           libc/sys/go32/configure libc/sys/h8300hms/aclocal.m4
5207           libc/sys/h8300hms/configure libc/sys/h8500hms/aclocal.m4
5208           libc/sys/h8500hms/configure libc/sys/idt/aclocal.m4
5209           libc/sys/idt/configure libc/sys/linux/aclocal.m4
5210           libc/sys/linux/configure libc/sys/linux/include/%redact
5211           libc/sys/linux/machine/aclocal.m4
5212           libc/sys/linux/machine/configure
5213           libc/sys/linux/machine/i386/aclocal.m4
5214           libc/sys/linux/machine/i386/configure
5215           libc/sys/m88kbug/aclocal.m4 libc/sys/m88kbug/configure
5216           libc/sys/mmixware/aclocal.m4 libc/sys/mmixware/configure
5217           libc/sys/netware/aclocal.m4 libc/sys/netware/configure
5218           libc/sys/rtems/aclocal.m4 libc/sys/rtems/configure
5219           libc/sys/sh/aclocal.m4 libc/sys/sh/configure
5220           libc/sys/sparc64/aclocal.m4 libc/sys/sparc64/configure
5221           libc/sys/sun4/aclocal.m4 libc/sys/sun4/configure
5222           libc/sys/sysmec/aclocal.m4 libc/sys/sysmec/configure
5223           libc/sys/sysnec810/aclocal.m4 libc/sys/sysnec810/configure
5224           libc/sys/sysnecv850/aclocal.m4 libc/sys/sysnecv850/configure
5225           libc/sys/sysvi386/aclocal.m4 libc/sys/sysvi386/configure
5226           libc/sys/sysvnecv70/aclocal.m4 libc/sys/sysvnecv70/configure
5227           libc/sys/tic80/aclocal.m4 libc/sys/tic80/configure
5228           libc/sys/w65/aclocal.m4 libc/sys/w65/configure
5229           libc/sys/z8ksim/aclocal.m4 libc/sys/z8ksim/configure
5230           libm/aclocal.m4 libm/configure: Regenerated.
5231
5232 2002-09-09  Jeff Johnston  <jjohnstn@redhat.com>
5233
5234         * libc/sys/linux/machine/i386/crt0.c (_start): Remove
5235         code that clears the .bss section.
5236
5237 2002-09-09  Jeff Johnston  <jjohnstn@redhat.com>
5238
5239         * libc/include/sys/_types.h (_mbstate_t): Changed to use
5240         unsigned char internally.
5241         * libc/sys/linux/sys/_types.h: Ditto.
5242         * libc/include/sys/reent.h
5243         * libc/stdlib/mblen.c (mblen): Use function-specific state
5244         value from default reentrancy structure.
5245         * libc/stdlib/mblen_r.c (_mblen_r):  If return code from
5246         _mbtowc_r is less than 0, reset state __count value and
5247         return -1.
5248         * libc/stdlib/mbrlen.c (mbrlen): If the input state pointer
5249         is NULL, use the function-specific pointer provided in the
5250         default reentrancy structure.
5251         * libc/stdlib/mbrtowc.c: Add reentrant form of function.
5252         If input state pointer is NULL, use function-specific area
5253         provided in reentrancy structure.
5254         * libc/stdlib/mbsrtowcs.c: Ditto.
5255         * libc/stdlib/wcrtomb.c: Ditto.
5256         * libc/stdlib/wcsrtombs.c: Ditto.
5257         * libc/stdlib/mbstowcs.c: Reformat.
5258         * libc/stdlib/wcstombs.c: Ditto.
5259         * libc/stdlib/mbstowcs_r.c (_mbstowcs_r): If an error occurs,
5260         reset the state's __count value and return -1.
5261         * libc/stdlib/mbtowc.c: Ditto.
5262         * libc/stdlib/mbtowc_r.c (_mbtowc_r): Add restartable functionality.
5263         If number of bytes is used up before completing a valid multibyte
5264         character, return -2 and save the state.
5265         * libc/stdlib/wctomb_r.c (_wctomb_r): Define __state as __count
5266         and change some __count references to __state for clarity.
5267
5268 2002-09-06  Jeff Johnston  <jjohnstn@redhat.com>
5269
5270         * libc/include/sys/config.h (MB_LEN_MAX): Removed as this
5271         is defined by <limits.h>.
5272
5273 2002-09-05  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
5274
5275         * libc/include/wchar.h (WCHAR_MAX): Only define if not already
5276         defined.
5277
5278 2002-09-04  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
5279
5280         * libc/include/sys/config.h: Define accordingly __WCHAR_MAX__.
5281         * libc/include/wchar.h: Define WCHAR_MIN as 0 and WCHAR_MAX as
5282         __WCHAR_MAX__ or 0x7fffffffu.
5283         * libc/string/wcscmp.c: Delete wrong and unnecessary type cast.
5284         * libc/string/wcsncmp.c: Ditto.
5285
5286 2002-09-03  Jeff Johnston  <jjohnstn@redhat.com>
5287
5288         * libc/string/wcschr.c: Add include of <stddef.h>.
5289         * libc/string/wcspbrk.c: Ditto.
5290         * libc/string/wcsrchr.c: Ditto.
5291         * libc/string/wcsstr.c: Ditto.
5292
5293 2002-09-03  Jeff Johnston  <jjohnstn@redhat.com>
5294
5295         * libc/include/sys/_types.h (_flock_t): Added.
5296         * libc/include/sys/lock.h (__lock_try_acquire): New interface.
5297         (__lock_try_acquire_recursive): Ditto.
5298         * libc/include/sys/reent.h (__sFILE, __sFILE64): Add new
5299         _lock field.
5300         * libc/stdio/findfp.c (std)[!__SINGLE_THREAD__]: Initialize _lock
5301         field.
5302         * libc/stdio/fopen.c (_fopen_r)[!__SINGLE_THREAD__]: Ditto.
5303         * libc/stdio64/fopen64.c (_fopen64_r)[!__SINGLE_THREAD__]: Ditto.
5304         * libc/sys/linux/include/time.h (struct timespec): Moved from
5305         <sys/types.h> and added check for __need_timespec flag so type
5306         can be defined by itself.
5307         * libc/sys/linux/sys/_types.h (_flock_t): New type.
5308         * libc/sys/linux/sys/types.h (struct timespec): Moved to
5309         <time.h>.
5310
5311 2002-08-29  Thomas Fitzsimmons  <fitzsim@redhat.com>
5312
5313         * libc/sys/linux/argp: New directory.
5314         * libc/sys/linux/getopt.c: New file.
5315         * libc/sys/linux/getopt1.c: New file.
5316         * libc/sys/linux/getoptlong.c: Remove file.
5317         * libc/sys/linux/include/argp.h: New file.
5318         * libc/sys/linux/Makefile.am: Define argp_dir and ARGP_LIB,
5319         based on ELIX level.
5320         (SUBDIRS): Add argp_dir.
5321         (SUBLIBS): Add ARGP_LIB.
5322         (ELIX_2_OBJS): Add getopt.$(oext), getopt1.$(oext), remove
5323         getopt_long.$(oext).
5324         * libc/sys/linux/configure.in (AC_OUTPUT): Add argp/Makefile.
5325
5326 2002-08-29  Jeff Johnston  <jjohnstn@redhat.com>
5327
5328         * libc/libc.texinfo: Add node reference to wide-character strings.
5329         * libc/string/wcstrings.tex: New file.
5330         * libc/string/strtok_r.c: Remove outdated advertising clause.
5331         * libc/string/Makefile.am (doc): Add wide-character string
5332         chapter to documentation.
5333         * libc/string/Makefile.in: Regenerated.
5334
5335 2002-08-29  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
5336
5337         * libc/include/wchar.h: Define NULL. Define WEOF more general
5338         way. Declare functions in newlib manner.
5339         * libc/stdlib/Makefile.am: Delete wmem*.c
5340         * libc/stdlib/Makefile.in: Regenerated.
5341         * libc/stdlib/wmemchr.c: Delete.
5342         * libc/stdlib/wmemcmp.c: Ditto.
5343         * libc/stdlib/wmemcpy.c: Ditto.
5344         * libc/stdlib/wmemmove.c: Ditto.
5345         * libc/stdlib/wmemset.c: Ditto.
5346         * libc/string/Makefile.am: Add wmem*.c and wcs*.c.
5347         * libc/string/Makefile.in: Regenerated.
5348         * libc/string/wcscat.c: New file derived from the NetBSD C Library.
5349         * libc/string/wcschr.c: Ditto.
5350         * libc/string/wcscmp.c: Ditto.
5351         * libc/string/wcscpy.c: Ditto.
5352         * libc/string/wcscspn.c: Ditto.
5353         * libc/string/wcslcat.c: Ditto.
5354         * libc/string/wcslcpy.c: Ditto.
5355         * libc/string/wcslen.c: Ditto.
5356         * libc/string/wcsncat.c: Ditto.
5357         * libc/string/wcsncmp.c: Ditto.
5358         * libc/string/wcsncpy.c: Ditto.
5359         * libc/string/wcspbrk.c: Ditto.
5360         * libc/string/wcsrchr.c: Ditto.
5361         * libc/string/wcsspn.c: Ditto.
5362         * libc/string/wcsstr.c: Ditto.
5363         * libc/string/wmemchr.c: Ditto.
5364         * libc/string/wmemcmp.c: Ditto.
5365         * libc/string/wmemcpy.c: Ditto.
5366         * libc/string/wmemmove.c: Ditto.
5367         * libc/string/wmemset.c: Ditto.
5368
5369 2002-08-29  Jeff Johnston  <jjohnstn@redhat.com>
5370
5371         * libc/locale/locale.c (_setlocale_r)[MB_CAPABLE]: Fix so
5372         default locale "" is accepted for LC_CTYPE or LC_MESSAGES
5373         and is treated as if "C" was specified.
5374
5375 2002-08-28  Jeff Johnston  <jjohnstn@redhat.com>
5376
5377         * Makefile.am (install-data-local): Move install of build
5378         newlib.h after installing headers in libc/include so as to
5379         overwrite default newlib.h.
5380         * Makefile.in: Regenerated.
5381
5382 2002-08-28  Jeff Johnston  <jjohnstn@redhat.com>
5383
5384         * libc/include/newlib.h: New file for tools that use newlib
5385         headers but don't build newlib first (e.g. gcc).
5386
5387 2002-08-28  Jeff Johnston  <jjohnstn@redhat.com>
5388
5389         * libc/stdlib/wmemchr.c: Explicitly include <_ansi.h>.
5390         * libc/stdlib/wmemcmp.c: Ditto.
5391         * libc/stdlib/wmemcpy.c: Ditto.
5392         * libc/stdlib/wmemmove.c: Ditto.
5393         * libc/stdlib/wmemset.c: Ditto.
5394
5395 2002-08-27  Egor Duda  <deo@logos-m.ru>
5396
5397         * libc/stdlib/wmemchr.c: New file.
5398         * libc/stdlib/wmemcmp.c: Ditto.
5399         * libc/stdlib/wmemcpy.c: Ditto.
5400         * libc/stdlib/wmemmove.c: Ditto.
5401         * libc/stdlib/wmemset.c: Ditto.
5402         * libc/stdlib/Makefile.am (GENERAL_SOURCES): Add new files.
5403         * configure.host: Default -DMB_CAPABLE for cygwin.
5404         * libc/include/wchar.h: Declare wmemchr(), wmemcmp(), wmemcpy(),
5405         wmemmove() and wmemset().  Add include of <_ansi.h>.
5406         * libc/stdlib/Makefile.in: Regenerate.
5407
5408 2002-08-27  Jeff Johnston  <jjohnstn@redhat.com>
5409
5410         * configure.host: Remove _ELIX_LEVEL flag setting.
5411         * Makefile.am(stmp-targ-include): Copy newlib.h to targ-include.
5412         (install-data-local): Install newlib.h.
5413         * Makefile.in: Regenerated.
5414         * aclocal.m4: Ditto.
5415         * configure: Ditto.
5416         * configure.in: Add AM_CONFIG_HEADER to generate newlib.h based on 
5417         newlib.hin.  Add AC_DEFINE_UNQUOTED entries for _ELIX_LEVEL
5418         and _NEWLIB_VERSION to fill in newlib.h header file entries.
5419         In AC_OUTPUT statement, unset ac_file so multilib support does
5420         not use last ac_file temporary used in newlib.h configuration.
5421         * libc/include/_ansi.h: Include <newlib.h>.
5422         * newlib.hin: New template file for newlib.h.
5423         * stamp-h.in: New file.
5424
5425 2002-08-26  Wu Yongwei <adah@netstd.com>
5426
5427         * time.h (timezonevar): Change "#if" to "#ifdef".
5428
5429 2002-08-26  Jeff Johnston  <jjohnstn@redhat.com>
5430
5431         * Makefile.am(LIBC_OBJECTLISTS): Add STDIO64_OBJECTLIST.
5432         * Makefile.in: Regenerated.
5433         * acinclude.m4: Add support for --enable-newlib-elix-level option.
5434         * aclocal.m4: Regenerated.
5435         * configure: Ditto.
5436         * configure.host: Add code to define _ELIX_LEVEL if
5437         --enable-newlib-elix-level option is used.
5438         * configure.in: 
5439         * libc/aclocal.m4: Regenerated.
5440         * libc/configure: Ditto.
5441         * libc/argz/Makefile.am: Add EL/IX level checking.
5442         * libc/argz/Makefile.in: Regenerated.
5443         * libc/argz/dummy.c: New file.
5444         * libc/ctype/Makefile.am: Add EL/IX level checking.
5445         * libc/ctype/Makefile.in: Regenerated.
5446         * libc/locale/Makefile.am: Add EL/IX level checking.
5447         * libc/locale/Makefile.in: Regenerated.
5448         * libc/posix/Makefile.am: Add EL/IX level checking.
5449         * libc/posix/Makefile.in: Regenerated.
5450         * libc/posix/telldir.c: Add EL/IX level checking.
5451         * libc/reent/Makefile.am: Ditto.
5452         * libc/reent/fstat64r.c: Ditto.
5453         * libc/reent/lseek64r.c: Ditto.
5454         * libc/reent/open64r.c: Ditto.
5455         * libc/reent/Makefile.in: Regenerated.
5456         * libc/search/Makefile.am: Add EL/IX level checking.
5457         * libc/search/Makefile.in: Regenerated.
5458         * libc/stdio/Makefile.am: Add EL/IX level checking.
5459         * libc/stdio/Makefile.in: Regenerated.
5460         * libc/stdio64/Makefile.am: Add EL/IX level checking.
5461         * libc/stdio64/Makefile.in: Regenerated.
5462         * libc/stdio64/dummy.c: New file.
5463         * libc/stdio64/fgetpos64.c: Fix so _LARGE64_FILES macro is checked
5464         after first include.
5465         * libc/stdio64/fopen64.c: Ditto.
5466         * libc/stdio64/freopen64.c: Ditto.
5467         * libc/stdio64/fseeko64.c: Ditto.
5468         * libc/stdio64/fsetpos64.c: Ditto.
5469         * libc/stdio64/ftello64.c: Ditto.
5470         * libc/stdio64/tmpfile64.c: Ditto.
5471         * libc/stdlib/Makefile.am: Add EL/IX level checking.
5472         * libc/stdlib/Makefile.in: Regenerated.
5473         * libc/stdlib/mstats.c: Add EL/IX level checking.
5474         * libc/string/Makefile.am: Ditto.
5475         * libc/string/Makefile.in: Regenerated.
5476         * libc/sys/linux/Makefile.am: Add EL/IX level checking.
5477         * libc/sys/linux/Makefile.in: Regenerated.
5478         * libc/sys/linux/aclocal.m4: Ditto.
5479         * libc/sys/linux/configure: Ditto.
5480         * libc/sys/linux/aio.c: Add EL/IX level checking.
5481         * libc/sys/linux/ftok.c: Ditto.
5482         * libc/sys/linux/getdate.c: Ditto.
5483         * libc/sys/linux/ids.c: Ditto.
5484         * libc/sys/linux/inode.c: Ditto.
5485         * libc/sys/linux/io.c: Ditto.
5486         * libc/sys/linux/process.c: Ditto.
5487         * libc/sys/linux/resource.c: Ditto.
5488         * libc/sys/linux/sched.c: Ditto.
5489         * libc/sys/linux/sig.c: Ditto.
5490         * libc/sys/linux/termios.c: Ditto.
5491         * libc/sys/linux/wait.c: Ditto plus add __waitpid and
5492         __libc___waitpid weak aliases.
5493         * libc/sys/linux/machine/i386/syscall.h: Add new _base macros
5494         that generate the code for a syscall, but do not create a
5495         weak alias.
5496         * libc/syscalls/Makefile.am: Add EL/IX level checking.
5497         * libc/syscalls/Makefile.in: Regenerated.
5498         * libc/time/tzset_r.c: Change to replace strdup with equivalent
5499         functionality.
5500         * libc/unix/Makefile.am: Add EL/IX level checking.
5501         * libc/unix/Makefile.in: Regenerated.
5502
5503 2002-08-26  Christopher Faylor  <cgf@redhat.com>
5504
5505         * libc/include/malloc.h: On cygwin, define malloc _r functions as
5506         wrapper macros to standard malloc functions.
5507         * libc/include/stdlib.h: Ditto.
5508         * configure.host: Always define MALLOC_PROVIDED on cygwin.
5509
5510 2002-08-22  Thomas Fitzsimmons  <fitzsim@redhat.com>
5511
5512         * libc/include/langinfo.h: New file.
5513         * libc/include/wchar.h: Likewise.
5514         * libc/include/sys/syslimits.h: Likewise.
5515         * libc/locale/fix_grouping.c: Likewise.
5516         * libc/locale/ldpart.c: Likewise.
5517         * libc/locale/ldpart.h: Likewise.
5518         * libc/locale/lmessages.c: Likewise.
5519         * libc/locale/lmessages.h: Likewise.
5520         * libc/locale/lmonetary.c: Likewise.
5521         * libc/locale/lmonetary.h: Likewise.
5522         * libc/locale/lnumeric.c: Likewise.
5523         * libc/locale/lnumeric.h: Likewise.
5524         * libc/locale/nl_langinfo.3: Likewise.
5525         * libc/locale/nl_langinfo.c: Likewise.
5526         * libc/locale/timelocal.c: Likewise.
5527         * libc/locale/timelocal.h: Likewise.
5528         * libc/stdlib/btowc.c: Likewise.
5529         * libc/stdlib/mbrlen.c: Likewise.
5530         * libc/stdlib/mbrtowc.c: Likewise.
5531         * libc/stdlib/mbsinit.c: Likewise.
5532         * libc/stdlib/mbsrtowcs.c: Likewise.
5533         * libc/stdlib/wcrtomb.c: Likewise.
5534         * libc/stdlib/wcsrtombs.c: Likewise.
5535         * libc/stdlib/wctob.c: Likewise.
5536         * libc/sys/linux/prof-freq.c: Likewise.
5537         * libc/sys/linux/profile.c: Likewise.
5538         * libc/sys/linux/machine/i386/dl-procinfo.c: Likewise.
5539         * libc/sys/linux/machine/i386/dl-procinfo.h: Likewise.
5540         * libc/include/stdlib.h: Change re-entrant functions to take
5541         mbstate_t pointers.
5542         * libc/include/sys/_types.h: Define _mbstate_t.
5543         * libc/include/sys/config.h (MB_LEN_MAX): New macro.
5544         * libc/include/sys/errno.h (EILSEQ): New error code.
5545         * libc/include/sys/reent.h: Include wchar.h.  Change reentrant
5546         structure to use mbstate_t.
5547         * libc/locale/Makefile.am (LIB_SOURCES): Add new files.
5548         * libc/machine/powerpc/vfprintf.c: Use mbstate_t.
5549         * libc/machine/powerpc/vfscanf.c: Likewise.
5550         * libc/stdio/getdelim.c: Reallocate buffer only when necessary.
5551         * libc/stdio/vfprintf.c: Likewise.
5552         * libc/stdio/vfscanf.c: Likewise.
5553         * libc/stdlib/Makefile.am (LIB_SOURCES): Add new files.
5554         * libc/stdlib/mblen.c: Use mbstate_t.
5555         * libc/stdlib/mblen_r.c: Likewise.
5556         * libc/stdlib/mbstowcs.c: Likewise.
5557         * libc/stdlib/mbstowcs_r.c: Likewise.
5558         * libc/stdlib/mbtowc.c: Likewise.
5559         * libc/stdlib/mbtowc_r.c: Likewise.
5560         * libc/stdlib/wcstombs.c: Likewise.
5561         * libc/stdlib/wcstombs_r.c: Likewise.
5562         * libc/stdlib/wctomb_r.c: Likewise.
5563         * libc/sys/linux/Makefile.am (LIB_SOURCES): Add prof-freq.c and
5564         profile.c.
5565         * libc/sys/linux/machine/i386/Makefile.am (LIB_SOURCES): Add
5566         dl-procinfo.c.
5567         * libc/sys/linux/sys/errno.h (EILSEQ): New error code.
5568         * libc/sys/linux/sys/types.h (off_t): Define type.
5569         * testsuite/newlib.locale/UTF-8.c: Change locale name from UTF-8
5570         to C-UTF-8.
5571         * testsuite/newlib.locale/UTF-8.exp: Likewise.
5572
5573 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
5574
5575         * libc/stdlib/mallocr.c: #include windows.h on Win32.
5576           (AlignPage): Continue macro on next line.
5577
5578 2002-08-19  Jeff Johnston  <jjohnstn@redhat.com>
5579
5580         * libc/sys/linux/include/pthread.h: New file.
5581
5582 2002-08-19  Jeff Johnston  <jjohnstn@redhat.com>
5583
5584         * libc/include/sys/types.h: Support __need_inttypes macro
5585         that only sets the __intxx and __uintxx types.  
5586         * libc/machine/powerpc/Makefile.am: Add stdlib to include directories
5587         to get mprec.h.
5588         * libc/machine/powerpc/Makefile.in: Regenerated.
5589         * libc/machine/powerpc/vfprintf.c: Fix state variable type.
5590         * libc/machine/powerpc/vfscanf.c: Fix state variable type.  Remove
5591         redundant fixed-point conversion prototypes.
5592         * libc/machine/powerpc/machine/stdlib.h[__SPE__]: Include <sys/types.h>
5593         after setting __need_inttypes.
5594
5595 2002-08-18  Christopher Faylor  <cgf@redhat.com>
5596
5597         * libc/include/sys/unistd.h: Add getsid declaration for cygwin.
5598
5599 2002-08-17  Jeff Johnston  <jjohnstn@redhat.com>
5600
5601         * libc/include/sys/config.h[__PPC__][__SPE__]: Set
5602         _LONG_DOUBLE to double.
5603
5604 2002-08-17  Jeff Johnston  <jjohnstn@redhat.com>
5605
5606         * configure.host: Add powerpc*-*-eabispe* configuration.
5607         * libc/machine/powerpc/atosfix16.c: New fixed-point conversion file.
5608         * libc/machine/powerpc/atosfix32.c: Ditto.
5609         * libc/machine/powerpc/atosfix64.c: Ditto.
5610         * libc/machine/powerpc/atoufix16.c: Ditto.
5611         * libc/machine/powerpc/atoufix32.c: Ditto.
5612         * libc/machine/powerpc/atoufix64.c: Ditto.
5613         * libc/machine/powerpc/fix64.h: Ditto.
5614         * libc/machine/powerpc/simdldtoa.c: Ditto.
5615         * libc/machine/powerpc/strtosfix16.c: Ditto.
5616         * libc/machine/powerpc/strtosfix32.c: Ditto.
5617         * libc/machine/powerpc/strtosfix64.c: Ditto.
5618         * libc/machine/powerpc/strtoufix16.c: Ditto.
5619         * libc/machine/powerpc/strtoufix32.c: Ditto.
5620         * libc/machine/powerpc/strtoufix64.c: Ditto.
5621         * libc/machine/powerpc/ufix64toa.c: Ditto.
5622         * libc/machine/powerpc/configure.in: Add check for
5623         powerpc*-eabispe and add fixed-point conversion functions.
5624         * libc/machine/powerpc/configure: Regenerated.
5625         * libc/machine/powerpc/vfprintf.c[__SPE__]: Add support for
5626         %r and %R format specifiers which handle fixed-point data.
5627         * libc/machine/powerpc/vfscanf.c[__SPE__]: Ditto.
5628         * libc/machine/powerpc/machine/stdlib.h[__SPE__]: Add fixed-point
5629         function prototypes.
5630
5631 2002-08-17  Jeff Johnston  <jjohnstn@redhat.com>
5632
5633         *  Makefile.am: Move cmath stuff into libc/sys/linux.
5634         *  Makefile.in: Regenerated.
5635         *  configure.host: Default -DMB_CAPABLE for x86-linux.
5636         *  libc/include/reent.h: Define _sbrk to take signed int argument.
5637         *  libc/include/sys/unistd.h: Ditto for _sbrk_r and sbrk.
5638         *  libc/locale/locale.c[MB_CAPABLE]: Add LC_MESSAGES support and 
5639         make locale name checking more efficient.  Also allow "C-ISO-8859-1" 
5640         locale for LC_CTYPE and LC_MESSAGES.
5641         *  libc/reent/sbrkr.c: Change prototype to take ptrdiff_t.
5642         *  libc/sys/linux/brk.c: Change sbrk prototype.
5643         *  libc/sys/linux/include/time.h: Remove Cygwin stuff and
5644         include <sys/features.h>.
5645         (CLOCK_THREAD_CPUTIME): Renamed to CLOCK_THREAD_CPUTIME_ID.
5646         (CLOCK_PROCESS_CPUTIME): Renamed to CLOCK_PROCESS_CPUTIME_ID.
5647         *  libc/sys/linux/sys/cdefs.h: Replace with glibc sys/cdefs.h
5648         with a few local additions.
5649         *  libc/sys/linux/sys/features.h: New file.
5650         *  libc/sys/linux/sys/unistd.h: Change _sbrk_r and sbrk prototypes
5651         to take signed argument.
5652         *  libc/syscalls/syssbrk.c: Change sbrk, _sbrk_r, and _sbrk
5653         prototypes to take signed size argument.
5654
5655 2002-08-16  Thomas Fitzsimmons  <fitzsim@redhat.com>
5656
5657         * libc/sys/linux/cmath: New directory.
5658         * libc/sys/linux/include/cmathcalls.h: New file.
5659         * libc/sys/linux/include/complex.h: New file.
5660         * libc/sys/linux/machine/i386/huge_val.h: New file
5661         * libm/math/w_sincos.c: New file
5662         * libm/math/wf_sincos.c: New file
5663         * libm/mathfp/s_sincos.c: New file
5664         * libm/mathfp/sf_sincos.c: New file
5665         * Makefile.am (LIBC_OBJECTLISTS): Add cmath/objectlist.awk.in.
5666         * libc/include/math.h: Add sincos and sincosf declarations.
5667         * libc/sys/linux/Makefile.am (SUBDIRS): Add cmath.
5668         (SUBLIBS): Likewise.
5669         * libc/sys/linux/configure.in (AC_OUTPUT): Add cmath.
5670         * libm/math/Makefile.am (src): Add w_sincos.c.
5671         (fsrc): Add wf_sincos.c.
5672         * libm/mathfp/Makefile.am (src): Add s_sincos.c
5673         (fsrc): Add sf_sincos.c.
5674
5675 2002-08-12  Jeff Johnston  <jjohnstn@redhat.com>
5676
5677         * libc/sys/linux/machine/i386/crt0.c (__bss_start,_end):
5678         Declare as extern chars and use the address operator to
5679         properly use values set in linker script.
5680
5681 2002-08-09  Jason Tishler  <jason@tishler.net>
5682
5683         * libc/stdlib/mallocr.c: Include <limits.h>.
5684         (request2size): Change macro to do
5685         unsigned long comparisons and avoid signed overflow.
5686         (mALLOc): Add overflow check for the number of bytes to allocate.
5687         (rEALLOc): Ditto.
5688
5689 2002-08-09  Jeff Johnston  <jjohnstn@redhat.com>
5690
5691         * configure.host: Add check for --enable-newlib-io-pos-args
5692         and define WANT_IO_POS_ARGS flag if enabled.  Define
5693         the flag by default for x86-linux configurations.
5694         * configure.in: Add support for --enable-newlib-io-pos-args.
5695         * libc/configure.in: Ditto.
5696         * configure: Regenerated.
5697         * libc/configure: Ditto.
5698         * libc/stdio/Makefile.am: Specify -fshort-enums for compiling
5699         vfprintf.c and vfiprintf.c.
5700         * libc/stdio/Makefile.in: Regenerated.
5701         * libc/stdio/vfprintf.c: Add positional argument support that
5702         is enabled by compiling with -DWANT_IO_POS_ARGS.
5703
5704 2002-08-07  Richard Sandiford  <rsandifo@redhat.com>
5705
5706         * libc/include/machine/setjmp.h: For mips, define _JBLEN based
5707         based on __mips_soft_float rather than __mips64.
5708         * libc/machine/mips/setjmp.S: Provide hard and soft float versions
5709         of both 32-bit and 64-bit code.
5710
5711 2002-08-04  Christopher Faylor  <cgf@redhat.com>
5712
5713         * libc/stdio/popen.c (popen): Allow "rb", "rt", "wb", and "wt"
5714         arguments for popen to match similar functionality in fopen.
5715
5716 2002-07-29  Pierre Humblet  <pierre.humblet@ieee.org>
5717
5718         * libc/include/sys/unistd.h: Add setgroups prototype for Cygwin.
5719
5720 2002-07-29  Jeff Johnston  <jjohnstn@redhat.com>
5721
5722         * libc/sys/linux/Makefile.am: Add aio64.c. 
5723         * libc/sys/linux/Makefile.in: Regenerated.
5724         * libc/sys/linux/aio.c (aio_init): ENOSYS stub added.
5725         * libc/sys/linux/aio64.c: New file.
5726
5727 2002-07-26  Jeff Johnston  <jjohnstn@redhat.com>
5728
5729         *  libc/include/sys/param.h (MAX, MIN): Added macros.
5730         *  libc/sys/linux/Makefile.am: Add new files.
5731         *  libc/sys/linux/Makefile.in: Regenerated.
5732         *  libc/sys/linux/sys/stat.h: Add *stat64 prototypes.
5733         *  libc/sys/linux/inode.c (fchdir): Added syscall.
5734         *  libc/sys/linux/ftw.c: New file.
5735         *  libc/sys/linux/ftw64.c: Ditto.
5736         *  libc/sys/linux/getwd.c: Ditto.
5737         *  libc/sys/linux/scandir64.c: Ditto.
5738         *  libc/sys/linux/strverscmp.c: Ditto.
5739         *  libc/sys/linux/versionsort.c: Ditto.
5740         *  libc/sys/linux/versionsort64.c: Ditto.
5741
5742 2002-07-26  Jeff Johnston  <jjohnstn@redhat.com>
5743
5744         * libc/string/strings.tex: Fix typo for memccpy.
5745
5746 2002-07-25  Jeff Johnston  <jjohnstn@redhat.com>
5747
5748         * libc/sys/linux/io64.c (truncate64, ftruncate64): Added.
5749         * libc/sys/linux/sys/types.h (off64_t): Definition added.
5750
5751 2002-07-25  Jeff Johnston  <jjohnstn@redhat.com>
5752
5753         * libc/sys/linux/Makefile.am: Add fclean.c.
5754         * libc/sys/linux/Makefile.in: Regenerated.
5755         * libc/sys/linux/fclean.c: New file.
5756
5757 2002-07-25  Jeff Johnston  <jjohnstn@redhat.com>
5758
5759         * libc/sys/linux/Makefile.am: Add confstr.c.
5760         * libc/sys/linux/Makefile.in: Regenerated.
5761         * libc/sys/linux/confstr.c: New file.
5762         * libc/sys/linux/confstr.h: Ditto.
5763         * libc/sys/linux/sys/unistd.h: Include <features.h> and
5764         <bits/environments.h>.
5765
5766 2002-07-25  Jeff Johnston  <jjohnstn@redhat.com>
5767
5768         * libc/sys/linux/config.h (__set_errno): Macro definition removed.
5769         * libc/sys/linux/fpathconf.c (__set_errno): Ditto.
5770         * libc/sys/linux/libc-internal.h (__set_errno): Ditto.
5771         * libc/sys/linux/pathconf.c (__set_errno): Ditto.
5772         * libc/sys/linux/ttyname_r.c (__set_errno): Ditto.
5773         * libc/sys/linux/sys/errno.h (__set_errno): Macro definition added.
5774
5775 2002-07-24  Jeff Johnston  <jjohnstn@redhat.com>
5776
5777         * libc/sys/linux/Makefile.am: Add new files.
5778         * libc/sys/linux/Makefile.in: Regenerated.
5779         * libc/sys/linux/fstab.c: New file.
5780         * libc/sys/linux/fstatvfs.c: Ditto.
5781         * libc/sys/linux/fstatvfs64.c: Ditto.
5782         * libc/sys/linux/internal_statvfs.c: Ditto.
5783         * libc/sys/linux/mntent.c: Ditto.
5784         * libc/sys/linux/mntent_r.c: Ditto.
5785         * libc/sys/linux/statvfs.c: Ditto.
5786         * libc/sys/linux/statvfs64.c: Ditto.
5787         * libc/sys/linux/include/paths.h: Ditto.
5788         * libc/sys/linux/inode.c (statfs, fstatfs): New syscalls
5789         with double-underscore weak-aliases.
5790         * libc/sys/linux/sys/stat.h: Add *stat64 prototypes.
5791
5792 2002-07-24  Jeff Johnston  <jjohnstn@redhat.com>
5793
5794         * libc/include/signal.h (SIG_IGN, SIG_DFL, SIG_ERR): Change
5795         to use _sig_func_ptr type casted constants.
5796         (_sig_func_ptr): Typedef moved to sys/signal.h.
5797         * libc/include/sys/signal.h (_sig_func_ptr): Typedef added.
5798         For __rtems, use POSIX definition, otherwise default to ANSI.
5799         * libc/sys/linux/sys/signal.h (_sig_func_ptr): Typedef added.
5800
5801 2002-07-24  Stephane Carrez  <stcarrez@nerim.fr>
5802
5803         * configure.host: Recognize m6811-elf and m6812-elf targets.
5804         * libc/include/machine/setjmp.h (_JBLEN): Define for 68hc11/68hc12.
5805         * libc/include/machine/ieeefp.h (__IEEE_BIG_ENDIAN): Define for 68HC11.
5806         (_DOUBLE_IS_32BITS): Define when compiling with -fshort-double.
5807         * libc/include/sys/config.h (INT_MAX, UINT_MAX): Define
5808         according to __INT_MAX__.
5809         (_POINTER_INT): Define to short.
5810         * libc/machine/m68hc11/Makefile.am: New file.
5811         * libc/machine/m68hc11/Makefile.in: New file.
5812         * libc/machine/m68hc11/configure.in: New file.
5813         * libc/machine/m68hc11/configure: New file.
5814         * libc/machine/m68hc11/aclocal.m4: New file.
5815         * libc/machine/m68hc11/setjmp.S: New file.
5816
5817 2002-07-23  Jeff Johnston  <jjohnstn@redhat.com>
5818
5819         * libc/include/string.h: Add mempcpy, strndup, and _strndup_r
5820         prototypes.
5821         * libc/stdlib/Makefile.am: Remove strdup.c and strdup_r.c.
5822         * libc/stdlib/Makefile.in: Regenerated.
5823         * libc/stdlib/strdup.c: Removed.
5824         * libc/stdlib/strdup_r.c: Removed.
5825         * libc/string/Makefile.am: Add strdup.c, strdup_r.c, memccpy.c,
5826         mempcpy.c, strndup.c, and strndup_r.c.
5827         * libc/string/Makefile.in: Regenerated.
5828         * libc/string/memccpy.c: New file.
5829         * libc/string/mempcpy.c: Ditto.
5830         * libc/string/strndup.c: Ditto.
5831         * libc/string/strndup_r.c: Ditto.
5832         * libc/string/strdup.c: New file moved from stdlib.
5833         * libc/string/strdup_r.c: Ditto.
5834         * libc/string/strings.tex: Add memccpy and mempcpy documentation.
5835
5836 2002-07-23  Jeff Johnston  <jjohnstn@redhat.com>
5837
5838         * libc/include/stdio.h: Move fcloseall prototype within
5839         #ifndef _REENT_ONLY section.
5840         * libc/sys/linux/Makefile.am: Add new files.
5841         * libc/sys/linux/Makefile.in: Regenerated.
5842         * libc/sys/linux/sys/stdio.h: Add ctermid prototype.
5843         * libc/sys/linux/sys/unistd.h: Add ttyname_r prototype.
5844         * libc/sys/linux/sys/types.h: Add ino64_t type.
5845         * libc/sys/linux/ctermid.c: New file.
5846         * libc/sys/linux/ttyname_r.c: Ditto.
5847         * libc/sys/linux/readdir64.c: Ditto.
5848
5849 2002-07-22  Jeff Johnston  <jjohnstn@redhat.com>
5850
5851         * libc/include/stdio.h (fcloseall, _fcloseall_r): Added prototypes.
5852         * libc/stdio/Makefile.am: Added fcloseall.c support.
5853         * libc/stdio/Makefile.in: Regenerated.
5854         * libc/stdio/fcloseall.c: New file.
5855         * libc/stdio64/Makefile.am: Remove missing .def references.
5856         * libc/stdio64/Makefile.in: Regenerated.
5857
5858 2002-07-22  Jeff Johnston  <jjohnstn@redhat.com>
5859
5860         * libc/machine/powerpc/time.c: Removed..renamed to times.c.
5861         * libc/machine/powerpc/times.c: New file.
5862         * libc/machine/powerpc/Makefile.am: Change time.c to times.c.
5863         * libc/machine/powerpc/Makefile.in: Regenerated.
5864
5865 2002-07-22  Aldy Hernandez  <aldyh@redhat.com>
5866
5867         * libc/machine/powerpc/time.c: New file.
5868         * libc/machine/powerpc/Makefile.am (lib_a_SOURCES): Add
5869         time.c.
5870         * libc/machine/powerpc/Makefile.in: Regenerated.
5871
5872 2002-07-22  Thomas Fitzsimmons  <fitzsim@redhat.com>
5873
5874         * libc/libc.texinfo: Change copyright notices to Red Hat from
5875         Cygnus.
5876         * libm/libm.texinfo: Likewise.
5877         * README: Change docs URL to
5878         http://sources.redhat.com/newlib/docs.html.
5879
5880 2002-07-19  Jeff Johnston  <jjohnstn@redhat.com>
5881
5882         * libc/sys/linux/Makefile.am: Add pathconf.c and fpathconf.c.
5883         * libc/sys/linux/Makefile.in: Regenerated.
5884         * libc/sys/linux/inode.c: Add chmod, fchmod, and chown syscalls.
5885         * libc/sys/linux/io.c: Add ftruncate syscall.
5886         * libc/sys/linux/fpathconf.c: New file.
5887         * libc/sys/linux/pathconf.c: Ditto.
5888         * libc/sys/linux/linux_fsinfo.h: Ditto.
5889         * libc/sys/linux/sys/unistd.h: Ditto.
5890
5891 2002-07-19  Jeff Johnston  <jjohnstn@redhat.com>
5892
5893         * libc/stdio64/Makefile.am: Remove missing files.
5894         * libc/stdio64/Makefile.in: Regenerated.
5895
5896 2002-07-19  Jeff Johnston  <jjohnstn@redhat.com>
5897
5898         * libc/include/sys/config.h[__i386__][__linux__]: Define
5899         _LARGE64FILE_SOURCE to 1.
5900         * libc/sys/linux/Makefile.am: Add getrlimit64.c and setrlimit64.c.
5901         * libc/sys/linux/Makefile.in: Regenerated.
5902         * libc/sys/linux/resource.c: Add __getrlimit and __setrlimit aliases.
5903         * libc/sys/linux/sys/linux_time.h: Protect struct timeval definition.
5904         * libc/sys/linux/sys/resource.h: Include <bits/resource.h> instead
5905         of <linux/resource.h>.
5906         * libc/sys/linux/getrlimit64.c: New file.
5907         * libc/sys/linux/setrlimit64.c: Ditto.
5908
5909 2002-07-19  Thomas Fitzsimmons  <fitzsim@redhat.com>
5910
5911         * libc/argz/argz_replace.c: Include buf_findstr.h.
5912         * libc/argz/buf_findstr.c: Likewise.
5913         * libc/argz/envz_entry.c: Include buf_findstr.h.  Cast return
5914         value to (char *).
5915         * libc/argz/envz_get.c: Likewise.
5916         * libc/include/sys/unistd.h: Add getopt and getsubopt declarations.
5917         * libc/stdlib/Makefile.am (LIB_SOURCES): Add getsubopt.c.
5918         * libc/stdlib/getsubopt.3: New file.
5919         * libc/stdlib/getsubopt.c: New file.
5920         * libc/sys/linux/machine/i386/socketcall.h (__sockcall_base):
5921         Change esp to ebp.
5922
5923 2002-07-17  Jeff Johnston  <jjohnstn@redhat.com>
5924
5925         * configure.host(stdio64_dir): New setting that is used to
5926         enable building of new stdio64 directory.
5927         * libc/Makefile.am[HAVE_STDIO64_DIR]: Add support for
5928         large files.
5929         (stmp-stdio64,stdio64.texi): New targets to optionally add in
5930         stdio64 info to info files.
5931         * libc/Makefile.in: Regenerated.
5932         * libc/configure: Ditto.
5933         * libc/configure.in: Add configuration variables that are set
5934         when stdio64 is selected as subdir in configure.host.
5935         * libc/libc.texinfo: Add optional menu item for Stdio64, based
5936         on whether STDIO64 flag is set or not.
5937         * libc/sys.tex: Add optional stdio64 syscalls based on whether
5938         STDIO64 flag is set or not.
5939         * libc/include/reent.h[__LARGE64_FILES]: Add new stdio64
5940         _r sycall routines.
5941         * libc/include/stdio.h[__LARGE64_FILES]: Add new stdio64 prototypes.
5942         (FILE): Typedef'd to __FILE instead of struct __sFILE directly.
5943         (__SL64): New file flag indicating file is opened via fopen64.
5944         * libc/include/sys/_types.h(_off64_t): Added.
5945         * libc/include/sys/config.h: For x86-linux, define __LARGE64_FILES.
5946         * libc/include/sys/reent.h(struct __sFILE64): New file structure
5947         for 64-bit offset large file support.
5948         (__FILE): New intermediate type either set to struct __sFILE64 or
5949         struct __sFILE, depending on whether __LARGE64_FILES is set or not.
5950         * libc/reent/Makefile.am[HAVE_STDIO64_DIR]: Add new files.
5951         * libc/reent/Makefile.in: Regenerated.
5952         * libc/reent/fstat64r.c: New file.
5953         * libc/reent/lseek64r.c: Ditto.
5954         * libc/reent/open64r.c: Ditto.
5955         * libc/reent/reent.tex: Optionally add stdio64 reentrant syscalls
5956         based on whether STDIO64 flag is set. 
5957         * libc/stdio/stdio.tex: Add blank line.
5958         * libc/stdio64/Makefile.am: New file.
5959         * libc/stdio64/Makefile.in: Ditto.
5960         * libc/stdio64/fgetpos64.c: Ditto.
5961         * libc/stdio64/fopen64.: Ditto.
5962         * libc/stdio64/freopen64.c: Ditto.
5963         * libc/stdio64/fseeko64.c: Ditto.
5964         * libc/stdio64/fsetpos64.c: Ditto.
5965         * libc/stdio64/ftello64.c: Ditto.
5966         * libc/stdio64/local64.h: Ditto.
5967         * libc/stdio64/stdio64.c: Ditto.
5968         * libc/stdio64/stdio64.tex: Ditto.
5969         * libc/stdio64/tmpfile64.c: Ditto.
5970         * libc/sys/linux/io64.c: Add weak aliases for lseek64, fstat64, and
5971         open64.
5972
5973 2002-07-16  Jeff Johnston  <jjohnstn@redhat.com>
5974
5975         * libc/Makefile.am (stmp-extra): New target to set makeinfo flag
5976         if LIBC_EXTRA_LIB is present.
5977         * libc/Makefile.in: Regenerated.
5978         * libc/libc.texinfo: Add blank line.
5979         * libc/argz/Makefile.am: Add doc support.
5980         * libc/search/Makefile.am: Ditto.
5981         * libc/argz/Makefile.in: Regenerated.
5982         * libc/search/Makefile.in: Ditto.
5983         * libc/misc/misc.tex: Add ffs function.
5984         * libc/stdio/ftell.c: Fix missing doc delimeter in description.
5985
5986 2002-07-15  Jeff Johnston  <jjohnstn@redhat.com>
5987
5988         * libc/include/sys/config.h[__H8300__]: Replace __SMALL_BITFIELDS
5989         definition that was removed in error.
5990
5991 2002-07-15  Jeff Johnston  <jjohnstn@redhat.com>
5992
5993         * libc/include/machine/ieeefp.h: Change to only define
5994         floating point defines (e.g one of __IEEE_BIG_ENDIAN or 
5995         __IEEE_LITTLE_ENDIAN must be defined for each platform).
5996         * libc/include/sys/config.h: Include <machine/ieeefp.h> and
5997         remove redundant floating point definitions.
5998
5999 2002-07-15  Jeff Johnston  <jjohnstn@redhat.com>
6000
6001         * libc/sys/linux/callocr.c: Fix so code references
6002         calloc.
6003
6004 2002-07-15  Jeff Johnston  <jjohnstn@redhat.com>
6005
6006         * libc/sys/linux/Makefile.am: Add new files.
6007         * libc/sys/linux/Makefile.in: Regenerated.
6008         * libc/sys/linux/bp-sym.h: Moved to include directory.
6009         * libc/sys/linux/mmap.c: Add weak aliases: __mmap, __munmap, __mremap.
6010         * libc/sys/linux/inode.c: Set _LIBC to 1.
6011         * libc/sys/linux/mq_close.c: Ditto.
6012         * libc/sys/linux/mq_getattr.c: Ditto.
6013         * libc/sys/linux/mq_open.c: Ditto.
6014         * libc/sys/linux/mq_receive.c: Ditto.
6015         * libc/sys/linux/mq_send.c: Ditto.
6016         * libc/sys/linux/mq_setattr.c: Ditto.
6017         * libc/sys/linux/mq_unlink.c: Ditto.
6018         * libc/sys/linux/calloc.c: New file.
6019         * libc/sys/linux/callocr.c: Ditto.
6020         * libc/sys/linux/cfreer.c: Ditto.
6021         * libc/sys/linux/config.h: Ditto.
6022         * libc/sys/linux/free.c: Ditto.
6023         * libc/sys/linux/freer.c: Ditto.
6024         * libc/sys/linux/msize.c: Ditto.
6025         * libc/sys/linux/msizer.c: Ditto.
6026         * libc/sys/linux/mstats.c: Ditto.
6027         * libc/sys/linux/mtrim.c: Ditto.
6028         * libc/sys/linux/mtrimr.c: Ditto.
6029         * libc/sys/linux/pvallocr.c: Ditto.
6030         * libc/sys/linux/realloc.c: Ditto.
6031         * libc/sys/linux/reallocr.c: Ditto.
6032         * libc/sys/linux/thread-m.h: Ditto.
6033         * libc/sys/linux/vallocr.c: Ditto.
6034         * libc/sys/linux/bp-checks.h: Ditto.
6035         * libc/sys/linux/libc-symbols.h: Ditto.
6036         * libc/sys/linux/libc-tsd.h: Ditto.
6037         * libc/sys/linux/libintl.h: Ditto.
6038         * libc/sys/linux/malign.c: Ditto.
6039         * libc/sys/linux/malignr.c: Ditto.
6040         * libc/sys/linux/mallinfor.c: Ditto.
6041         * libc/sys/linux/malloc.c: Ditto.
6042         * libc/sys/linux/mallocr.c: Ditto.
6043         * libc/sys/linux/malloptr.c: Ditto.
6044         * libc/sys/linux/mallstatsr.c: Ditto.
6045         * libc/sys/linux/mcheck.c: Ditto.
6046         * libc/sys/linux/mhooks.h: Ditto.
6047         * libc/sys/linux/include/bp-sym.h: Ditto.
6048         * libc/sys/linux/include/malloc.h: Ditto.
6049         * libc/sys/linux/include/mcheck.h: Ditto.
6050         * libc/sys/linux/linuxthreads/machine/i386/Makefile.am: Remove
6051         getpagesize.c.
6052         * libc/sys/linux/linuxthreads/machine/i386/Makefile.in: Regenerated.
6053         * libc/sys/linux/linuxthreads/machine/i386/getpagesize.c: Moved.
6054         * libc/sys/linux/machine/i386/getpagesize.c: New file.
6055         * libc/sys/linux/machine/i386/Makefile.am: Add getpagesize.c.
6056         * libc/sys/linux/machine/i386/Makefile.in: Regenerated.
6057         * libc/sys/linux/machine/i386/sysdep.h: New file.
6058         * libc/sys/linux/machine/i386/weakalias.h: Add weak_function support.
6059         * libc/sys/linux/sys/dirent.h: Set _LIBC to 1.
6060         * libc/sys/linux/sys/lock.h: Include <machine/weakalias.h>.
6061
6062 2002-07-12  Jeff Johnston  <jjohnstn@redhat.com>
6063
6064         * libc/sys/linux/include/mqueue.h: Change to use <bits/siginfo.h>
6065         instead of <asm/siginfo.h>.
6066         * libc/sys/linux/sys/signal.h: Change to include various linux
6067         <bits/xxx.h> header files, rather than <linux/signal.h> so as
6068         to work with multiple releases of glibc header files.
6069
6070 2002-07-11  Chris Demetriou  <cgd@broadcom.com>
6071
6072         * testsuite/newlib.search/hsearchtest.c: New file to test
6073         newlib/libc/search.
6074         * testsuite/newlib.search/hsearchtest.exp: Likewise.
6075
6076 2002-07-10  Florian Schrack  <florian.schrack@freenet.de>
6077
6078         * libc/sys/mmixware/read.c: Use SYS_Fgets syscall if dealing with
6079         a terminal.
6080         * libc/sys/mmixware/sys/syscall.h (SYS_Fgets): Definition added.
6081
6082 2002-07-08  Jeff Johnston  <jjohnstn@redhat.com>
6083
6084         * libc/include/math.h (MAXFLOAT): Added.
6085
6086 Mon Jul  8 13:55:23 2002  J"orn Rennecke <joern.rennecke@superh.com>
6087
6088         * libc/machine/sh/Makefile.am (lib_a_SOURCES):
6089         Make strcmp.S unconditional.
6090         * libc/machine/sh/Makefile.in: Regenerate.
6091         * libc/machine/sh/asm.h (DELAYED_BRANCHES, SL): Also for __SH5__ .
6092         * strcmp.S (strcmp): Add SHmedia variant.  Use different registers
6093         for SHcompact.
6094
6095 2002-07-04  Jeff Johnston  <jjohnstn@redhat.com>
6096
6097         * libc/sys/linux/inode.c: Fix utime prototype and add _LIBC
6098         define before including <sys/lock.h>.
6099
6100 2002-07-04  Jeff Johnston  <jjohnstn@redhat.com>
6101
6102         * libc/include/utime.h: Add include of <_ansi.h>.
6103         * libc/sys/linux/Makefile.am: Add utimes.c.
6104         * libc/sys/linux/Makefile.in: Regenerated.
6105         * libc/sys/linux/inode.c(__umask): New static routine.
6106         (umask): Written to use __umask and attempt to thread lock.
6107         (getumask): New function written to use __umask and thread lock.
6108         * libc/sys/linux/utimes.c: New file.
6109         * libc/sys/linux/sys/time.h: Fix utimes prototype.
6110         * libc/sys/linux/sys/utime.h: New file.
6111
6112 2002-07-04  Thomas Fitzsimmons  <fitzsim@redhat.com>
6113
6114         * libtool.m4: New file.
6115         * libc/sys/linux/process.c: Implement vfork in terms of fork,
6116         rather than as a syscall.
6117
6118 2002-07-04  Jeff Johnston  <jjohnstn@redhat.com>
6119
6120         * libc/include/stdio.h: Add new prototypes.
6121         * libc/stdio/Makefile.am: Add fseeko.c and ftello.c.
6122         * libc/stdio/Makefile.in: Regenerated.
6123         * libc/stdio/fseek.c: Add fseeko documentation.
6124         * libc/stdio/ftell.c: Add ftello documentation.
6125         * libc/stdio/fseeko.c: New file.
6126         * libc/stdio/ftello.c: New file.
6127
6128 2002-07-04  Jeff Johnston  <jjohnstn@redhat.com>
6129
6130         * libc/stdio/Makefile.am: Add asprintf.c and vasprintf.c.
6131         * libc/stdio/Makefile.in: Regenerated.
6132         * libc/stdio/asprintf.c: New file.
6133         * libc/stdio/vasprintf.c: Ditto.
6134         * libc/stdio/fvwrite.c: Add code to dynamically reallocate
6135         the buffer for asprintf support.
6136         * libc/stdio/sprintf.c: Add asprintf documentation.
6137         * libc/stdio/vfprintf.c: Add vasprintf documentation.
6138         * libc/include/stdio.h: Add new prototypes.
6139
6140 2002-07-02  Thomas Fitzsimmons  <fitzsim@redhat.com>
6141
6142         * libc/search/hcreate.c: Remove advertising clause from license.
6143         * libc/search/hcreate_r.c: Likewise.
6144
6145 2002-07-02  Chris Demetriou  <cgd@broadcom.com>
6146
6147         * libc/include/sys/config.h (__IEEE_LITTLE_ENDIAN)
6148         (__IEEE_BIG_ENDIAN): Define appropriately for MIPS.
6149         Check that one of them is defined and error out if not.
6150         Add any platforms defined in <machine/ieeefp.h> that are missing.
6151         * libc/search/hash.h (DB_BYTE_ORDER, DB_BIG_ENDIAN)
6152         (DB_LITTLE_ENDIAN): New defines.
6153         * libc/search/hash.c: Replace all incorrect checks for
6154         _IEEE_LITTLE_ENDIAN with tests of BYTE_ORDER, and all uses of
6155         BYTE_ORDER, LITTLE_ENDIAN, and BIG_ENDIAN with DB_* versions.
6156         * libc/search/hash_page.c: Likewise.
6157
6158 2002-06-28  Thomas Fitzsimmons  <fitzsim@redhat.com>
6159
6160         * libm/mathfp/sf_pow.c (powf): Change k from int to float.
6161
6162 2002-06-27  Benjamin Kosnik  <bkoz@redhat.com>
6163
6164         * libc/include/stdio.h: Untangle, add _BEGIN_STD_C and _END_STD_C.
6165         * libc/include/time.h: Same.
6166         * libc/include/string.h: Same.
6167         * libc/include/stdlib.h: Same.
6168         * libc/include/signal.h: Same.
6169         * libc/include/setjmp.h: Same.
6170         * libc/include/math.h: Same.
6171         * libc/include/locale.h: Same.
6172         * libc/include/ctype.h: Same.
6173         * libc/include/machine/setjmp.h: Same.
6174         * libc/include/_ansi.h (_BEGIN_STD_C): Add.
6175         (_END_STD_C): Add.
6176
6177 2002-06-27  Jeff Johnston  <jjohnstn@redhat.com>
6178
6179         * libc/include/sys/_types.h: Define _ssize_t as int if int is
6180         32-bits, otherwise define it as long.
6181         * libc/include/sys/types.h: Include <_ansi.h> and <sys/_types.h>
6182         and define ssize_t as _ssize_t.
6183         * libc/reent/readr.c: Change return type to _ssize_t.
6184         * libc/reent/writer.c: Ditto.
6185         * libc/sys/linux/Makefile.am: Add aio.c.
6186         * libc/sys/linux/Makefile.in: Regenerated.
6187         * libc/sys/linux/aio.c: New file.
6188         * libc/sys/linux/sys/cdefs.h: Add __restrict_arr definition.
6189         * libm/common/fdlibm.h: Undef __P before defining it.
6190
6191 2002-06-27  Thomas Fitzsimmons  <fitzsim@redhat.com>
6192
6193         * libm/mathfp/s_pow.c (pow): Fix checks on variable k.  Add
6194         exponent_is_even_int variable.  Handle case where x is
6195         negative, and y is an odd integer.
6196         * libm/mathfp/sf_pow.c (powf): Likewise.
6197
6198         * libm/mathfp/er_lgamma.c: Remove __kernel references.
6199         * libm/mathfp/erf_lgamma.c: Likewise.
6200         * libm/mathfp/s_tgamma.c: Likewise.
6201         * libm/mathfp/sf_tgamma.c: Likewise.
6202
6203 2002-06-27  Jeff Johnston  <jjohnstn@redhat.com>
6204
6205         * libc/sys/linux/Makefile.am: Add new clock routines.
6206         * libc/sys/linux/Makefile.in: Regenerated.
6207         * libc/sys/linux/clock_getres.c: New file.
6208         * libc/sys/linux/clock_gettime.c: Ditto.
6209         * libc/sys/linux/clock_settime.c: Ditto.
6210         * libc/sys/linux/hp-timing.h: Ditto.
6211         * libc/sys/linux/libc-internal.h: Ditto.
6212         * libc/sys/linux/sysconf.c: Fix typo.
6213         * libc/sys/linux/include/time.h: Add include of <sys/linux_time.h>.
6214         * libc/sys/linux/machine/hp-timing.h: New file.
6215         * libc/sys/linux/machine/i386/Makefile.am: Add new files.
6216         * libc/sys/linux/machine/i386/Makefile.in: Regenerated.
6217         * libc/sys/linux/machine/i386/get_clockfreq.c: New file.
6218         * libc/sys/linux/machine/i386/hp-timing.c: Ditto.
6219         * libc/sys/linux/machine/i386/hp-timing.h: Ditto.
6220         * libc/sys/linux/sys/linux_time.h: New file.
6221         * libc/sys/linux/sys/time.h: Remove include of <linux/time.h> and
6222         replace with <sys/linux_time.h>.
6223
6224 Wed Jun 26 16:33:25 2002  J"orn Rennecke <joern.rennecke@superh.com>
6225
6226         * libc/sys/sh/crt0.S: Remove vestigial .section directive.
6227
6228 2002-06-25  Jeff Johnston  <jjohnstn@redhat.com>
6229
6230         * libc/sys/linux/Makefile.am: Consolidate additional items under
6231         ADD_OBJS.
6232         * libc/sys/linux/Makefile.in: Regenerated.
6233
6234 2002-06-25  Jeff Johnston  <jjohnstn@redhat.com>
6235
6236         * libc/sys/linux/sethostname.c: New file.
6237         * libc/sys/linux/Makefile.am: Add sethostname.c support.
6238         * libc/sys/linux/Makefile.in: Regenerated.
6239
6240 2002-06-24  Thomas Fitzsimmons  <fitzsim@redhat.com>
6241
6242         * libc/search/db_local.h: New file.
6243         * libc/include/db.h: Remove.
6244         * libc/search/Makefile.am (LIB_SOURCES): Add db_local.h.
6245         * libc/search/hash.c (MIN,MAX): Add macros.  Change <db.h> to
6246         "db_local.h".
6247         * libc/search/hash_bigkey.c: Likewise.
6248         * libc/search/hash_buf.c: Likewise.
6249         * libc/search/hash_func.c: Likewise.
6250         * libc/search/hash_log2.c: Likewise.
6251         * libc/search/hash_page.c: Likewise.
6252
6253 2002-06-24  J"orn Rennecke <joern.rennecke@superh.com>
6254
6255         * libc/machine/sh/strlen.S: New file.
6256         * libc/machine/sh/Makefile.am (lib_a_SOURCES): Add rule for it.
6257         * libc/machine/sh/Makefile.am: Regenerate.
6258
6259 2002-06-24  Jeff Johnston  <jjohnstn@redhat.com>
6260
6261         * libc/sys/linux/gethostname.c: Change name to __gethostname and
6262         add gethostname alias.
6263
6264 2002-06-24  Jeff Johnston  <jjohnstn@redhat.com>
6265
6266         * libc/include/math.h: Remove <sys/types.h>.
6267         (__dmath): Use __ULong instead of __uint32_t.
6268         * libc/include/sys/reent.h: If long or int is not 32-bits,
6269         include <sys/types.h> to get definitions for __int32_t and __uint32_t.
6270         * libc/stdlib/mprec.h: Include <sys/types.h> to get integer defs.
6271         * libm/common/fdlibm.h: Ditto.
6272
6273 2002-06-24  Thomas Fitzsimmons  <fitzsim@redhat.com>
6274
6275         * libc/include/ndbm.h: Remove.
6276         * libc/search/ndbm.c: Remove.
6277
6278 2002-06-24  WATANABE Hirofumi <eban@os.rim.or.jp>
6279
6280         * libc/stdio/fseek.c (fseek): Fix braces.
6281
6282 2002-06-21  Corinna Vinschen  <corinna@vinschen.de>
6283
6284         * libc/time/strftime.c (strftime): Add %e format specifier.
6285
6286 2002-06-21  Thomas Fitzsimmons  <fitzsim@redhat.com>
6287
6288         * libc/search/hash.h (LITTLE_ENDIAN, BIG_ENDIAN): Define if not
6289         previously defined.
6290
6291 2002-06-21  Richard Earnshaw  (rearnsha@arm.com)
6292
6293         * libc/sys/arm/sys/param.h (BIG_ENDIAN, LITTLE_ENDIAN): Define.
6294         (BYTE_ORDER): Define as appropriate for the target.
6295
6296 2002-06-21  Jeff Johnston  <jjohnstn@redhat.com>
6297
6298         * libc/include/sys/config.h[__linux__]: Set _READ_WRITE_RETURN_TYPE
6299         to _ssize_t.
6300         * libc/sys/linux/io.c (read, write): Change to return ssize_t.
6301
6302 2002-06-21  Jeff Johnston  <jjohnstn@redhat.com>
6303
6304         * libc/include/stdio.h (__getline, __getdelim): New prototypes.
6305         * libc/include/time.h [HAVE_GETDATE](getdate, getdate_r): Ditto.
6306         [HAVE_GETDATE](getdate_err): New error code.
6307         * libc/stdio/Makefile.am: Add support for getline.c and getdelim.c.
6308         * libc/stdio/Makefile.in: Regenerated.
6309         * libc/stdio/getdelim.c: New file.
6310         * libc/stdio/getline.c: Ditto.
6311         * libc/sys/linux/Makefile.am: Add support for getdate.c, getdate_err.c
6312         and ntp_gettime.c.  Also add AM_CFLAGS to point to libc/stdio.
6313         * libc/sys/linux/Makefile.in: Regenerated.
6314         * libc/sys/linux/getdate.c: New file.
6315         * libc/sys/linux/getdate_err.c: Ditto.
6316         * libc/sys/linux/ntp_gettime.c: Ditto.
6317         * libc/sys/linux/time.c (adjtimex, ntp_adjtime): New functions.
6318         * libc/sys/linux/sys/stdio.h (getline, getdelim): New macros.
6319
6320 2002-06-21  Jeff Johnston  <jjohnstn@redhat.com>
6321
6322         * libc/include/math.h: Add <sys/types.h> to get _uint32_t definition.
6323         * libc/include/machine/types.h: Skip __off_t, __pid_t, and
6324         __loff_t definitions if special _HAVE_SYSTYPES macro defined.
6325         * libc/include/sys/config.h: Removed _uint*, _int* definitions.
6326         * libc/include/sys/param.h: Remove i386 case which is handled
6327         by default case.
6328         (BIG_ENDIAN, LITTLE_ENDIAN): Protect
6329         definitions in case they are already defined.
6330         (BYTE_ORDER): Add default case using _IEEE_BIG_ENDIAN and
6331         _IEEE_LITTLE_ENDIAN flags.
6332         * libc/include/sys/reent.h: Change __uint32_t references to
6333         use _ULong instead.
6334         (_REENT_GETDATE_REENT_P): New macro.
6335         * libc/include/sys/types.h (__int16_t, __uint16_t): Added.
6336         (__int32_t, __uint32_t, __int64_t, __uint64_t): Ditto.
6337         * libc/search/hash.h: Add default setting of BYTE_ORDER,
6338         LITTLE_ENDIAN, and BIG_ENDIAN, if not already defined.
6339         * libc/sys/linux/sys/types.h: Include <sys/_types.h>.  Define
6340         ssize_t based on _ssize_t.  Remove __socklen_t, __uintptr_t,
6341         pid_t, off_t, loff_t, caddr_t, and daddr_t type
6342         definitions which are done by subsequent glibc headers.
6343         Add macro definitions to prevent subsequent header files from
6344         defining pid_t, off_t, ssize_t, and key_t.  Move uintptr_t and
6345         intptr_t to after glibc definitions of types they are based on.
6346
6347 2002-06-21  Jeff Johnston  <jjohnstn@redhat.com>
6348
6349         * libc/include/errno.h: Protect from multiple inclusion.
6350
6351 2002-06-21  Nick Clifton  <nickc@cambridge.redhat.com>
6352
6353         * libc/sys/arm/swi.h (ADP_Stopped_RunTimeError): Set correct value.
6354
6355 2002-06-20  Thomas Fitzsimmons  <fitzsim@redhat.com>
6356
6357         * Makefile.am (LIB_OBJECTLISTS): Add
6358         libc/search/objectlist.awk.in.
6359         * libc/Makefile.am (SUBDIRS): Add search.
6360         (SUBLIBS): Add search/libsearch.la.
6361         * libc/configure.in (AC_OUTPUT): Add search/Makefile.
6362         * libc/search: New directory.
6363         * libc/search/Makefile.am: New file.
6364         * libc/search/extern.h: New file.
6365         * libc/search/hash.c: New file.
6366         * libc/search/hash.h: New file.
6367         * libc/search/hash_bigkey.c: New file.
6368         * libc/search/hash_buf.c: New file.
6369         * libc/search/hash_func.c: New file.
6370         * libc/search/hash_log2.c: New file.
6371         * libc/search/hash_page.c: New file.
6372         * libc/search/hcreate.3: New file.
6373         * libc/search/hcreate.c: New file.
6374         * libc/search/hcreate_r.c: New file.
6375         * libc/search/ndbm.c: New file.
6376         * libc/search/page.h: New file.
6377         * libc/search/tdelete.c: New file.
6378         * libc/search/tdestroy.c: New file.
6379         * libc/search/tfind.c: New file.
6380         * libc/search/tsearch.3: New file.
6381         * libc/search/tsearch.c: New file.
6382         * libc/search/twalk.c: New file.
6383         * libc/include/db.h: New file.
6384         * libc/include/ndbm.h: New file.
6385         * libc/include/search.h: New file.
6386         * libc/include/sys/queue.h: New file.
6387         * libc/include/sys/cdefs.h: New file.
6388         * libc/include/sys/param.h
6389         [__IEEE_LITTLE_ENDIAN,__IEEE_BIG_ENDIAN]: Set BYTE_ORDER to
6390         LITTLE_ENDIAN or BIG_ENDIAN.
6391         * libc/include/sys/errno.h (EFTYPE): New macro.
6392         * libc/search/bsearch.c: Move from libc/stdlib.
6393         * libc/search/qsort.c: Likewise.
6394         * libc/stdlib/Makefile.am (LIB_SOURCES): Remove bsearch.c and
6395         qsort.c.
6396         (CHEWOUT_FILES): Remove bsearch.def and qsort.def.
6397         * libc/stdlib/stdlib.tex: Remove references to bsearch and qsort.
6398
6399 2002-06-19  Jeff Johnston  <jjohnstn@redhat.com>
6400
6401         * libc/sys/linux/Makefile.am: Add support for message queue routines,
6402         ipc routines, and ftok.
6403         * libc/sys/linux/Makefile.in: Regenerated.
6404         * libc/sys/linux/ftok.c: New file.
6405         * libc/sys/linux/ipc.c: Ditto.
6406         * libc/sys/linux/mq_close.c: Ditto.
6407         * libc/sys/linux/mq_getattr.c: Ditto.
6408         * libc/sys/linux/mq_notify.c: Ditto.
6409         * libc/sys/linux/mq_open.c: Ditto.
6410         * libc/sys/linux/mq_receive.c: Ditto.
6411         * libc/sys/linux/mq_send.c: Ditto.
6412         * libc/sys/linux/mq_setattr.c: Ditto.
6413         * libc/sys/linux/mq_unlink.c: Ditto.
6414         * libc/sys/linux/mqlocal.h: Ditto.
6415         * libc/sys/linux/include/mqueue.h: Ditto.
6416         * libc/sys/linux/sys/types.h: Define __gid_t_defined and
6417         __uid_t_defined.
6418
6419 2002-06-19  J"orn Rennecke <joern.rennecke@superh.com>
6420
6421         * libm/common/sf_lround.c (round): Change name to: (lround).
6422         * libm/common/sf_remquo.c (remquo): Pass all arguemnts to
6423         remquof.
6424
6425 2002-06-18  Thomas Fitzsimmons  <fitzsim@redhat.com>
6426
6427         * testsuite/lib/passfail.exp (newlib_pass_fail_all): New
6428         procedure.
6429         (newlib_pass_fail): Change to compile and run only one file.
6430         * testsuite/newlib.locale/locale.exp: Use new
6431         newlib_pass_fail_all procedure.
6432         * testsuite/newlib.string/string.exp: Likewise.
6433
6434 2002-06-18  Dave Brolley  <brolley@redhat.com>
6435
6436         From Catherine Moore, Michael Meissner, Richard Sandiford:
6437         * libc/include/machine/setjmp.h (_JBLEN): Define for __frv__.
6438         (_JBTYPE): Ditto.
6439         * libc/include/sys/config.h (__IEEE_BIG_ENDIAN): Ditto.
6440         (__ATTRIBUTE_IMPURE_PTR__): Ditto.
6441         * libc/include/machine/ieeefp.h (__IEEE_BIG_ENDIAN): Ditto.
6442         * configure.host: Support frv-*-*.
6443         * libc/machine/frv/Makefile.am: New file.
6444         * libc/machine/frv/configure.in: New file.
6445         * libc/machine/frv/setjmp.S: New file.
6446
6447 2002-06-18  Thomas Fitzsimmons  <fitzsim@redhat.com>
6448
6449         * libc/include/ctype.h: Remove isblank macro.
6450
6451         * libc/ctype/Makefile.am (LIB_SOURCES): Add isblank.c.
6452         * libc/ctype/isblank.c: New file.
6453         * libc/include/ctype.h [!__STRICT_ANSI__]: Add isblank
6454         declaration.  Add isblank macro.
6455
6456 2002-06-18  Jeff Johnston  <jjohnstn@redhat.com>
6457
6458         * testsuite/newlib.stdlib/atexit.c: New file.
6459         * testsuite/newlib.stdlib/atexit.exp: Ditto.
6460         * testsuite/newlib.string/tstring.c: Change default start size
6461         to something more reasonable for embedded platforms.
6462
6463 2002-06-14  Thomas Fitzsimmons  <fitzsim@redhat.com>
6464
6465         * libc/sys/linux/sys/errno.h (EFTYPE): Add macro.
6466
6467         * libc/argz: New directory.
6468         * libc/argz/*: New files.
6469         * libc/argz/argz_add.c: New file.
6470         * libc/argz/argz_add_sep.c: New file.
6471         * libc/argz/argz_append.c: New file.
6472         * libc/argz/argz_count.c: New file.
6473         * libc/argz/argz_create.c: New file.
6474         * libc/argz/argz_create_sep.c: New file.
6475         * libc/argz/argz_delete.c: New file.
6476         * libc/argz/argz_extract.c: New file.
6477         * libc/argz/argz_insert.c: New file.
6478         * libc/argz/argz_next.c: New file.
6479         * libc/argz/argz_replace.c: New file.
6480         * libc/argz/argz_stringify.c: New file.
6481         * libc/argz/buf_findstr.c: New file.
6482         * libc/argz/envz_add.c: New file.
6483         * libc/argz/envz_entry.c: New file.
6484         * libc/argz/envz_get.c: New file.
6485         * libc/argz/envz_merge.c: New file.
6486         * libc/argz/envz_remove.c: New file.
6487         * libc/argz/envz_strip.c: New file.
6488         * libc/include/argz.h: New file.
6489         * libc/include/envz.h: New file.
6490         * Makefile.am (LIBC_OBJECTLISTS): Add
6491         libc/argz/objectlist.awk.in.
6492         * libc/Makefile.am (SUBDIRS): Add argz.
6493         (SUBLIBS): Add argz/libargz.la.
6494         * libc/configure.in (AC_OUTPUT): Add argz/Makefile.
6495         * libc/include/errno.h: Add error_t typedef.
6496
6497 2002-06-13  Jeff Johnston  <jjohnstn@redhat.com>
6498
6499         * libc/include/stdlib.h: Add _Exit prototype.
6500         * libc/stdlib/Makefile.am: Add _Exit.c support.
6501         * libc/stdlib/Makefile.in: Ditto.
6502         * libc/stdlib/_Exit.c: New file.
6503
6504 2002-06-13  Stephen L. Moshier  <steve@moshier.net>
6505
6506         * libm/math/e_pow.c (__ieee754_pow): Fix case whereby
6507         x is close to -1.0 and y is very large to use ax (absolute value)
6508         instead of x.
6509         * libm/math/ef_pow.c (__ieee754_powf): Ditto.
6510
6511 Thu Jun 13 19:23:40 2002  J"orn Rennecke <joern.rennecke@superh.com>
6512
6513         * libc/machine/sh/strcpy.S (strcpy, __SHMEDIA__ code):
6514         Fix clobbering bytes before destination if src and dst have same
6515         non-zero misalignment.
6516
6517         * libc/machine/sh/memset.S (memset, __SHMEDIA__ code):
6518         Fixed bug in writing end of set region.
6519
6520 2002-06-10  Christopher Faylor  <cgf@redhat.com>
6521
6522         * libc/include/process.h: Remove cygwin-only sexec* declarations.  Fix
6523         spawnve declaration.
6524
6525 2002-06-06  Thomas Fitzsimmons  <fitzsim@redhat.com>
6526
6527         * libm/common/s_fdim.c: New file.
6528         * libm/common/s_fma.c: Likewise.
6529         * libm/common/s_fmax.c: Likewise.
6530         * libm/common/s_fmin.c: Likewise.
6531         * libm/common/s_fpclassify.c: Likewise.
6532         * libm/common/s_lrint.c: Likewise.
6533         * libm/common/s_lround.c: Likewise.
6534         * libm/common/s_nearbyint.c: Likewise.
6535         * libm/common/s_remquo.c: Likewise.
6536         * libm/common/s_round.c: Likewise.
6537         * libm/common/s_scalbln.c: Likewise.
6538         * libm/common/s_signbit.c: Likewise.
6539         * libm/common/s_trunc.c: Likewise.
6540         * libm/common/sf_fdim.c: Likewise.
6541         * libm/common/sf_fma.c: Likewise.
6542         * libm/common/sf_fmax.c: Likewise.
6543         * libm/common/sf_fmin.c: Likewise.
6544         * libm/common/sf_lrint.c: Likewise.
6545         * libm/common/sf_lround.c: Likewise.
6546         * libm/common/sf_nearbyint.c: Likewise.
6547         * libm/common/sf_remquo.c: Likewise.
6548         * libm/common/sf_round.c: Likewise.
6549         * libm/common/sf_scalbln.c: Likewise.
6550         * libm/common/sf_trunc.c: Likewise.
6551         * libm/math/w_exp2.c: Likewise.
6552         * libm/math/w_tgamma.c: Likewise.
6553         * libm/math/wf_exp2.c: Likewise.
6554         * libm/math/wf_tgamma.c: Likewise.
6555         * libm/mathfp/s_exp2.c: Likewise.
6556         * libm/mathfp/s_tgamma.c: Likewise.
6557         * libm/mathfp/sf_exp2.c: Likewise.
6558         * libm/mathfp/sf_tgamma.c: Likewise.
6559         * libm/math/er_gamma.c: Fix return value.
6560         * libm/math/erf_gamma.c: Likewise.
6561         * libm/mathfp/er_gamma.c: Likewise.
6562         * libm/mathfp/erf_gamma.c: Likewise.
6563         * libc/include/math.h (!__STRICT_ANSI__): Include ISOC99-specific
6564         declarations and macros.
6565         Regenerated all Makefile.in, aclocal.m4 and configure files to
6566         use new libtool macros in top-level libtool.m4
6567
6568 2002-06-05  Jeff Johnston  <jjohnstn@redhat.com>
6569
6570         * libc/include/string.h[__linux__]: Add strsignal prototype.
6571         * libc/include/sys/lock.h: New file with default locking support.
6572         * libc/include/sys/reent.h: Add signal buffer support for strsignal
6573         and psignal.
6574         * libc/posix/Makefile.am: Add support for readdir_r.c.
6575         * libc/posix/Makefile.in: Regenerated.
6576         * libc/posix/closedir.c: Add locking support and hash table cleanup.
6577         * libc/posix/opendir.c: Add lock support.
6578         * libc/posix/readdir.c: Ditto.
6579         * libc/posix/rewinddir.c: Ditto.
6580         * libc/posix/scandir.c: Ditto.
6581         * libc/posix/seekdir.c: Ditto.
6582         * libc/posix/telldir.c: Ditto plus add _cleanupdir routine to
6583         clean up leftover hash table entries.
6584         * libc/posix/readdir_r.c: New file.
6585         * libc/sys/linux/Makefile.am: Add psignal.c and strsignal.c support.
6586         * libc/sys/linux/Makefile.in: Regenerated.
6587         * libc/sys/linux/sys/dirent.h: Add dd_lock to DIR structure.
6588         * libc/sys/linux/sys/signal.h: Add psignal prototype.
6589         * libc/sys/linux/psignal.c: New file.
6590         * libc/sys/linux/strsignal.c: Ditto.
6591
6592 2002-06-03  Corinna Vinschen  <corinna@vinschen.de>
6593
6594         * libc/include/sys/types.h: Don't define dev_t when compiling for
6595         Cygwin.
6596
6597 2002-05-31  Jeff Johnston  <jjohnstn@redhat.com>
6598
6599         * libc/sys/linux/Makefile.am: Add sig.c and sigaction.c.  Also
6600         make siglist.inc dependent on sig.c instead of signal.c.
6601         * libc/sys/linux/Makefile.in: Regenerated.
6602         * libc/sys/linux/sig.c: Rename from signal.c and change code to
6603         use NSIG instead of _NSIG. 
6604         * libc/sys/linux/sigaction.c: New file.
6605         * libc/sys/linux/signal.c: Changed to be linux signal() function
6606         so as to override regular newlib default signal.c.
6607         * libc/sys/linux/machine/i386/Makefile.am: Remove sigset.c.
6608         * libc/sys/linux/machine/i386/Makefile.in: Regenerated.
6609         * libc/sys/linux/machine/i386/sigset.c: Moved to linux main directory.
6610         * libc/sys/linux/sigset.c: Moved from machine/i386 directory.
6611         * libc/sys/linux/sys/signal.h: Redefine NSIG to _NSIG and override
6612         default linux sigset_t typedef by defining it equal to __sigset_t.
6613         * libc/unix/sigset.c: Add check so code isn't compiled on systems
6614         with a sigset_t that isn't implemented with a single int.
6615
6616 2002-05-30  Jeff Johnston  <jjohnstn@redhat.com>
6617
6618         * libc/sys/linux/Makefile.am: Add support for new files.
6619         * libc/sys/linux/Makefile.in: Regenerated.
6620         * libc/sys/linux/ids.c: Add __getuid weak alias for getuid.
6621         * libc/sys/linux/signal.c: Change to use real-time syscalls for
6622         sigsuspend, sigprocmask, and sigpending.  Also remove sigaction as
6623         it is in a separate file now.
6624         * libc/sys/linux/machine/i386/Makefile.am
6625         * libc/sys/linux/machine/i386/Makefile.in
6626         * libc/sys/linux/sys/signal.h: Add include of <bits/signum.h>.
6627         * libc/sys/linux/sigaction.c: New file.
6628         * libc/sys/linux/sigqueue.c: Ditto.
6629         * libc/sys/linux/sigwait.c: Ditto.
6630         * libc/sys/linux/machine/i386/sigaction.c: Ditto.
6631         * libc/sys/linux/kernel_sigaction.h: Ditto.
6632
6633 2002-05-28  Jeff Johnston  <jjohnstn@redhat.com>
6634
6635         * libc/sys/linux/Makefile.am: Add support for cfspeed.c and
6636         tcsendbrk.c.
6637         * libc/sys/linux/Makefile.in: Regenerated.
6638         * libc/sys/linux/termios.c: Add tcflow(), tcflush(),
6639         tcgetpgrp(), and tcsetpgrp() functions.
6640         * libc/sys/linux/sys/termios.h: Add include of machine/termios.h
6641         to get __MAX_BAUD rate.
6642         * libc/sys/linux/machine/i386/include/termios.h: New file.
6643         * libc/include/machine/termios.h: Ditto.
6644         * libc/sys/linux/cfspeed.c: Ditto.
6645         * libc/sys/linux/tcsendbrk.c: Ditto.
6646
6647 2002-05-24  Jeff Johnston  <jjohnstn@redhat.com>
6648
6649         * libc/include/string.h: Add strnlen and strerror_r prototypes.
6650         * libc/string/Makefile.am: Add strnlen.c and strerror_r.c support.
6651         * libc/string/Makefile.in: Regenerated.
6652         * libc/string/strerror_r.c: New file.
6653         * libc/string/strnlen.c: New file.
6654         * libc/sys/linux/Makefile.am: Add rename.c.
6655         * libc/sys/linux/Makefile.in: Regenerated.
6656         * libc/sys/linux/rename.c: New file to override default rename.
6657
6658 2002-05-24  Thomas Fitzsimmons  <fitzsim@redhat.com>
6659
6660         * libc/sys/linux/sys/cdefs.h: Add __weak_reference macros.
6661         * libc/sys/linux/sys/time.h: Add conversion macros.
6662         * libc/sys/linux/sys/types.h: Add FD_ macros.  Include <bits/types.h>.
6663         * libc/sys/linux/ids.c: Add setresuid and syslog syscalls.
6664         * libc/sys/linux/gethostname.c: New file.
6665         * libc/sys/linux/seteuid.c: New file.
6666         * libc/sys/linux/sysctl.c: New file.
6667         
6668 2002-05-23  Jeff Johnston  <jjohnstn@redhat.com>
6669
6670         * libc/string/Makefile.am: Add support for strsep.c.
6671         * libc/string/Makefile.in: Regenerated.
6672         * libc/string/strsep.c: New file.
6673         * libc/string/strtok.c: Change to call __strtok_r service routine.
6674         * libc/string/strtok_r.c: Add __strtok_r routine which takes
6675         additional flag parameter regarding whether to skip leading delimeters.
6676         Change strtok_r to call __strtok_r.
6677
6678 2002-05-23  Gareth Pearce  <tilps@hotmail.com>
6679
6680         * libc/stdio/Makefile.am: Modify to add setbuffer.c and setlinebuf.c.
6681         * libc/stdio/Makefile.in: Regenerated.
6682         * libc/stdio/setbuffer.c: New file.
6683         * libc/stdio/setlinebuf.c: New file.
6684
6685 2002-05-23  Jeff Johnston  <jjohnstn@redhat.com>
6686
6687         * libc/sys/linux/Makefile.am: Add resource.c.
6688         * libc/sys/linux/Makefile.in: Regenerated.
6689         * libc/sys/linux/resource.c: New file.
6690         * libc/sys/linux/time.c: Add settimeofday, getitimer, and setitimer.
6691         * libc/sys/linux/machine/i386/Makefile.am: Remove syscalls.c.
6692         * libc/sys/linux/machine/i386/Makefile.in: Regenerated.
6693         * libc/sys/linux/machine/i386/syscalls.c: Removed as functions
6694         are now found in libc/sys/linux/resource.c.
6695
6696 2002-05-23  Jeff Johnston  <jjohnstn@redhat.com>
6697
6698         * libc/include/string.h (bcmp, bcopy, bzero): Change prototypes
6699         to use void * pointers and comply with Single Unix spec.
6700         * libc/string/bcmp.c: Change to use void * instead of char *.
6701         * libc/string/bcopy.c: Ditto.
6702         * libc/string/bzero.c: Ditto.
6703
6704 2002-05-22  Jeff Johnston  <jjohnstn@redhat.com>
6705
6706         * libc/sys/linux/shm_open.c: New file.
6707         * libc/sys/linux/shm_unlink.c: Ditto.
6708         * libc/sys/linux/Makefile.am: Add support for shm_open.c and
6709         shm_unlink.c.
6710         * libc/sys/linux/Makefile.in: Regenerated.
6711         * libc/sys/linux/sys/types.h: Add some additional checks to see
6712         if clock_t or time_t is already defined.
6713
6714 2002-05-22  Jeff Johnston  <jjohnstn@redhat.com>
6715
6716         * Makefile.am: Don't pass $toollibdir down directly in
6717         AM_MAKEFLAGS as it causes all multilibs to use the same toollibdir.
6718         Pass it under the name: top_toollibdir.
6719         * Makefile.in: Regenerated.
6720
6721 2002-05-22  Corinna Vinschen  <vinschen@redhat.com>
6722
6723         * libc/include/sys/types.h: Revert previous patch.
6724
6725 2002-05-22  Corinna Vinschen  <vinschen@redhat.com>
6726
6727         * libc/include/sys/types.h: Include cygwin/types.h always under
6728         Cygwin, not only if _POSIX_THREADS is defined.
6729
6730 2002-05-21 Dhananjay Deshpande <dhananjayd@kpit.com>
6731
6732         * configure.host: Specify sys_dir=h8300hms for h8300-*-coff* target.
6733
6734 2002-05-17  Jeff Johnston  <jjohnstn@redhat.com>
6735
6736         * Makefile.am: Copy and install headers from sys/machine/include
6737         directory.  Also pass $toollibdir to lower-level directories.
6738         * Makefile.in: Regenerated.
6739         * libc/include/stdio.h[!_REENT_ONLY]: Change stdin, stdout, and 
6740         stderr to use _REENT macro instead of _impure_ptr directly.
6741         * libc/include/sys/config.h[__i386__][__linux__]: Define
6742         __DYNAMIC_REENT__.
6743         * libc/include/sys/reent.h[!_REENT_ONLY]: Change _REENT macro to be 
6744         call to __getreent() function if !__SINGLE_THREAD__ and
6745         __DYNAMIC_REENT__ is set.
6746         * libc/reent/Makefile.am: Add support for getreent.c.
6747         * libc/reent/Makefile.in: Regenerated.
6748         * libc/string/strerror.c: Add check if EOPNOTSUPP and ENOTSUP are same.
6749         * libc/sys/linux/Makefile.am: Add support for new files.
6750         * libc/sys/linux/configure.in: Add $EXTRA_DIRS variable.
6751         * libc/sys/linux/Makefile.in: Regenerated.
6752         * libc/sys/linux/configure: Ditto.
6753         * libc/sys/linux/io.c: Add poll syscall.  Also weak-alias
6754         __close, __read, __write, __poll, __open, __lseek, __fcntl from
6755         their __libc_ counterparts.
6756         * libc/sys/linux/io64.c: Add __libc_ prefix to lseek64 and open64
6757         and weak-alias to regular names.
6758         * libc/sys/linux/pread64.c: Rename to __libc_pread64 and weak-alias
6759         to pread64 and __pread64.
6760         * libc/sys/linux/process.c: Weak_alias __libc_getpid to __getpid.
6761         * libc/sys/linux/pwrite64.c: Rename to __libc_pwrite64 and
6762         weak-alias to pwrite64.
6763         * libc/sys/linux/sched.c: Weak-alias __libc_sched_getparam,
6764         __libc_sched_getscheduler, __libc_sched_get_priority_max,
6765         __libc_sched_get_priority_min, and __libc_sched_setschedule to
6766         name with __ instead of __libc_. 
6767         * libc/sys/linux/siglongjmp.c: Include <machine/weakalias.h>.
6768         Rename siglongjmp to __libc_siglongjmp and weak-alias to siglongjmp.
6769         Call __libc_longjmp instead of longjmp, from __libc_siglongjmp.
6770         * libc/sys/linux/signal.c: Rename raise to __libc_raise and weak-alias
6771         to raise.
6772         * libc/sys/linux/socket.c: Weak-alias __libc_connect to __connect and
6773         __libc_send to __send.
6774         * libc/sys/linux/time.c: Weak-alias __libc_gettimeofday to
6775         __gettimeofday.
6776         * libc/sys/linux/wait.c: Rename wait to __libc_wait and weak-alias
6777         it to wait.  Rename wait3 to __libc_wait3 and weak-alias it to wait3.
6778         * libc/sys/linux/include/setjmp.h: Use __jmp_buf in sigjmp_buf
6779         type and typedef __jmp_buf to jmp_buf.
6780         * libc/sys/linux/machine/i386/Makefile.am: Add syscalls.c and
6781         setjmp.S.
6782         * libc/sys/linux/machine/i386/Makefile.in: Regenerated.
6783         * libc/sys/linux/machine/i386/crt0.c: Add support to clear .bss
6784         section.
6785         * libc/sys/linux/machine/i386/socketcall.h: Change to use __libc_
6786         prefix for function macros and then use weak_alias() to regular names.
6787         * libc/sys/linux/machine/i386/syscall.h: Ditto.
6788         * libc/sys/linux/sys/errno.h: Define EOPNOTSUP to be ENOTSUP.
6789         * libc/sys/linux/sys/stdio.h: Define _flockfile and _funlockfile
6790         to be flockfile() and funlockfile() respectively.
6791         * libc/sys/linux/sys/types.h
6792         * libc/reent/getreent.c: New file.
6793         * libc/sys/linux/flockfile.c: Ditto.
6794         * libc/sys/linux/funlockfile.c: Ditto.
6795         * libc/sys/linux/getreent.c: Ditto.
6796         * libc/sys/linux/pread.c: Ditto.
6797         * libc/sys/linux/pwrite.c: Ditto.
6798         * libc/sys/linux/raise.c: Ditto.
6799         * libc/sys/linux/system.c: Ditto.
6800         * libc/sys/linux/tcdrain.c: Ditto.
6801         * libc/sys/linux/machine/i386/i386mach.h: Ditto.
6802         * libc/sys/linux/machine/i386/setjmp.S: Ditto.
6803         * libc/sys/linux/machine/i386/syscalls.c: Ditto.
6804         * libc/sys/linux/machine/i386/weakalias.h: Ditto.
6805         * libc/sys/linux/machine/i386/include/setjmp.h: Ditto.
6806
6807 2002-05-14 Dhananjay Deshpande <dhananjayd@kpit.com>
6808
6809         * newlib/libc/sys/h8300hms/Makeile.am (lib_a_SOURCES): Add read.c.
6810         * newlib/libc/sys/h8300hms/read.c: New file.  Magic trap 0xC8 for sim.
6811         * newlib/libc/sys/h8300hms/syscalls.c: Move _read() to read.c.
6812         * newlib/libs/sys/h8300hms/sys/syscall.h: New file.
6813
6814 Thu May 16 17:24:57 2002  J"orn Rennecke <joern.rennecke@superh.com>
6815
6816         * libc/machine/sh/strcpy.S (strcpy): Replace LITTLE_ENDIAN with
6817         __LITTLE_ENDIAN__.  make sure r0 has right value at first loop
6818         exit point.
6819
6820 2002-05-15  Thomas Fitzsimmons  <fitzsim@redhat.com>
6821
6822         * testsuite/lib/newlib.exp: Add newlib_include_flags to compile
6823         options when testing natively on i[3456]86-*-linux.
6824
6825         * testsuite/lib/checkoutput.exp (newlib_check_output): Output
6826         only one pass or fail per test file.  Trim \r's from output
6827         values received from test programs.  Remove support for named
6828         tests.
6829         * testsuite/newlib.locale/UTF-8.exp: Update to support new
6830         newlib_check_output behaviour.
6831         * testsuite/newlib.locale/UTF-8.c: Likewise.
6832
6833 2002-05-15  Jeff Johnston  <jjohnstn@redhat.com>
6834
6835         * libc/include/stdlib.h: Add on_exit prototype.
6836         * libc/include/sys/reent.h (struct _atexit): Add argument array
6837         and bits to track type of exit routine to support both on_exit
6838         and atexit.
6839         (_REENT_INIT_PTR): Add missing fields that won't be zeroed out
6840         by default and change the setting of the atexit structure.
6841         (_REENT_INIT)[!_REENT_SMALL]: Remove extraneous end brace.
6842         * libc/stdlib/on_exit.c: New file.
6843         * libc/stdlib/Makefile.am: Add support for on_exit.
6844         * libc/stdlib/Makefile.in: Regenerated.
6845         * libc/stdlib/atexit.c: Change to initialize types field.
6846         * libc/stdlib/exit.c: Change to look at types field for each
6847         exit routine and either call an atexit-style or an on_exit-style
6848         routine accordingly.
6849
6850 2002-05-13  Jeff Johnston  <jjohnstn@redhat.com>
6851
6852         * libc/machine/powerpc/vfprintf.c(__VFPRINTF_R)[__ALTIVEC__]: Don't
6853         allow v specifier with n or L specifiers.  For vector c format,
6854         move tmp declaration to the top.
6855
6856 2002-05-13  Jeff Johnston  <jjohnstn@redhat.com>
6857
6858         * libc/machine/powerpc/vfprintf.c(__VFPRINTF_R)[__ALTIVEC__]: Restore
6859         the original format specifier when looping for vectors to compensate
6860         for any changes made in vector %g format processing.
6861         Also add syntax checking for various invalid scenarios
6862         involving vector format extensions.
6863         * libc/machine/powerpc/vfscanf.c(__VFSCANF_R)[__ALTIVEC__]: Fix
6864         return code setting for vector formats.  Also treat vector
6865         separator mismatch as a match error instead of an input error.
6866         Perform some syntax checking for vector formats.
6867
6868 2002-05-10  Mark Bradshaw  <bradshaw@staff.crosswalk.com>
6869
6870         * libc/include/string.h (!__STRICT_ANSI__): Add strlcat and strlcpy.
6871         * libc/string/Makefile.am: Add strlcat.c and strlcpy.c.
6872         * libc/string/strlcat.c: New file.
6873         * libc/string/strlcpy.c: New file.
6874
6875 2002-05-10  Jeff Johnston  <jjohnstn@redhat.com>
6876
6877         * libc/string/strchr.c: Fix comment typo.
6878
6879 2002-05-08  Thomas Fitzsimmons  <fitzsim@redhat.com>
6880
6881         * acinclude.m4: Add support for --enable-newlib-multithread.
6882         * configure.host (newlib_cflags): Add -D__SINGLE_THREAD__ if
6883         --enable-newlib-multithread=no.
6884
6885         * libc/stdio/getc_u.c: New file.
6886         * libc/stdio/getchar_u.c: New file.
6887         * libc/stdio/putc_u.c: New file.
6888         * libc/stdio/putchar_u.c: New file.
6889         * libc/include/stdio.h: Add declarations for getc_unlocked,
6890         getchar_unlocked, putc_unlocked and putchar_unlocked.
6891         * libc/stdio/Makefile.am (LIB_SOURCES): Add new files.
6892         (CHEWOUT_FILES): Add new files' .def's.
6893         * libc/stdio/putchar.c (_putchar_r): Replace __sputc with putc.
6894
6895 Wed May  8 17:47:35 2002  J"orn Rennecke <joern.rennecke@superh.com>
6896
6897         * libc/machine/sh/memset.S (memset, __SHMEDIA__ code):
6898         Also handle as single quad word when destination ends at last
6899         byte of first quad word.  Fix byte selection in single quad code.
6900
6901 2002-05-07  Thomas Fitzsimmons  <fitzsim@redhat.com>
6902
6903         * libc/include/sys/stdio.h: New file.
6904         * libc/sys/linux/sys/stdio.h: New file.
6905         * libc/include/stdio.h: Add declarations for flockfile,
6906         ftrylockfile, and funlockfile.  Include <sys/stdio.h>.
6907         * libc/stdio/clearerr.c: Add file locking.
6908         * libc/stdio/fclose.c: Likewise.
6909         * libc/stdio/feof.c: Likewise.
6910         * libc/stdio/ferror.c: Likewise.
6911         * libc/stdio/fflush.c: Likewise.
6912         * libc/stdio/fgetc.c: Likewise.
6913         * libc/stdio/fgetpos.c: Likewise.
6914         * libc/stdio/fgets.c: Likewise.
6915         * libc/stdio/fileno.c: Likewise.
6916         * libc/stdio/fputc.c: Likewise.
6917         * libc/stdio/fputs.c: Likewise.
6918         * libc/stdio/fread.c: Likewise.
6919         * libc/stdio/freopen.c: Likewise.
6920         * libc/stdio/fseek.c: Likewise.
6921         * libc/stdio/ftell.c: Likewise.
6922         * libc/stdio/fwrite.c: Likewise.
6923         * libc/stdio/getc.c: Likewise.
6924         * libc/stdio/putc.c: Likewise.
6925         * libc/stdio/setvbuf.c: Likewise.
6926         * libc/stdio/ungetc.c: Likewise.
6927         * libc/stdio/vfprintf.c: Likewise.
6928
6929 2002-05-06  Jeff Johnston  <jjohnstn@redhat.com>
6930
6931         * libc/machine/powerpc/vfprintf.c[__ALTIVEC__]: Add vector
6932         support for 'p' format.  Fix code to print bytes for vector
6933         integer formats that do not specify 'h' or 'l'.
6934         * libc/machine/powerpc/vfscanf.c[__ALTIVEC__]: Add vector support
6935         for 'p' specifier.  Fix code to scan 16 bytes for vector integer
6936         formats that do not specify 'h' or 'l'.
6937
6938         * libc/include/stdlib.h (a64l, l64a, _l64a_r): Added prototypes.
6939
6940 2002-05-06  Nick Clifton  <nickc@cambridge.redhat.com>
6941
6942         * libc/sys/arm/syscalls.c (_rename): Add parameter names.
6943         (_sbrk): Add cast of return value.
6944
6945 2002-05-06  Jeff Johnston  <jjohnstn@redhat.com>
6946
6947         *  libc/include/sys/reent.h (_l64a_buf): New reentrant area.
6948         (_REENT_L64A_BUF): New macro for accessing area.
6949         *  libc/stdlib/Makefile.am: Add a64l.c and l64a.c.
6950         *  libc/stdlib/Makefile.in: Regenerated.
6951         *  libc/stdlib/a64l.c: New file.
6952         *  libc/stdlib/l64a.c: New file.
6953
6954 2002-05-06  Jeff Johnston  <jjohnstn@redhat.com>
6955
6956         * libc/unix/pread.c: Fix typo for _pread_r.
6957         * libc/unix/pwrite.c: Fix type for _pwrite_r.
6958         * libc/sys/linux/pread64.c: Fix typo for read syscall.
6959         * libc/sys/linux/pwrite64.c: Fix typo for write syscall.
6960
6961 2002-05-03  Christopher Faylor  <cgf@redhat.com>
6962
6963         * libc/include/sys/unistd.h: Define getdomainname under cygwin.
6964
6965 2002-05-03  Thomas Fitzsimmons  <fitzsim@redhat.com>
6966
6967         * configure.in (CC_FOR_NEWLIB): Change -isystem's to -I's.
6968
6969 2002-05-01  Christopher Faylor  <cgf@redhat.com>
6970
6971         * utmp.h: Define more UNIX constants.
6972
6973 2002-05-01  Thomas Fitzsimmons  <fitzsim@redhat.com>
6974
6975         * Makefile.am: Add support for checking multilibs.
6976
6977         * libc/Makefile.am (SUBLIBS): Add LIBC_EXTRA_LIB.
6978         (SUBDEFS): Add LIBC_EXTRA_DEF.
6979         * libc/configure.in (LIBC_EXTRA_LIB): New variable.
6980         (LIBC_EXTRA_DEF): Likewise.
6981         (extra_dir): Likewise.
6982         * libc/machine/xscale/machine: New directory.
6983         * libc/machine/xscale/machine/profile.h: New file.
6984
6985         * Makefile.am (site.exp): Remove newlib_cflags.  Add
6986         multibuildtop.
6987         * testsuite/newlib.locale/UTF-8.c: Change fprintf's to printf's.
6988         * testsuite/lib/flags.exp: New file.
6989         * testsuite/lib/newlib.exp: Load flags.exp.
6990         (newlib_target_compile): Remove libgloss directory references.
6991         (newlib_init): Remove newlib_cflags references.
6992
6993 2002-04-30  Thomas Fitzsimmons  <fitzsim@redhat.com>
6994
6995         * testsuite/lib/newlib.exp (newlib_target_compile): Change
6996         method of finding libgloss_target_dir.
6997
6998         * Makefile.am (site.exp): Change host_alias, host_triplet,
6999         target_alias, target_triplet to refer to gcc's host and target
7000         variables (newlib's build and host variables).
7001         * testsuite/lib/newlib.exp (newlib_init): Change build
7002         references to host references, host references to target
7003         references to reflect Makefile.am changes.
7004         (newlib_target_compile): Likewise.
7005         (newlib_finish): Likewise.
7006
7007 2002-04-29  Jeff Johnston  <jjohnstn@redhat.com>
7008
7009         * libc/sys/linux/io64.c (fstat64, lstat64): New syscalls added.
7010
7011 2002-04-29  Jonathan Larmour  <jlarmour@redhat.com>
7012
7013         * libc/sys/arm/syscalls.c (_rename): New function. Just a stub.
7014         (_system): New function. Ditto.
7015         * libc/stdlib/system.c (_system_r): Call _system if HAVE_SYSTEM.
7016         * configure.host: define HAVE_SYSTEM and HAVE_RENAME for xscale
7017         targets.
7018
7019 2002-04-29  Jeff Johnston  <jjohnstn@redhat.com>
7020
7021         *  libc/include/sys/unistd.h (pread, pwrite): Added prototypes.
7022         *  libc/unix/Makefile.am: Add pread.c and pwrite.c.
7023         *  libc/sys/linux/Makefile.am: Add pread64.c and pwrite64.c.
7024         *  libc/sys/linux/Makefile.in: Regenerated.
7025         *  libc/unix/Makefile.in: Ditto.
7026         *  libc/sys/linux/pread64.c: New file.
7027         *  libc/sys/linux/pwrite64.c: Ditto.
7028         *  libc/unix/pread.c: Ditto.
7029         *  libc/unix/pwrite.c: Ditto.
7030
7031 2002-04-26  Jeff Johnston  <jjohnstn@redhat.com>
7032
7033         *  libc/sys/linux/Makefile.am: Add io64.c.
7034         *  libc/sys/linux/Makefile.in: Regenerated.
7035         *  libc/sys/linux/io.c(mkfifo, fsync, fdatasync): Added syscalls.
7036         *  libc/sys/linux/signal.c (sigwaitinfo, sigtimedwait): Ditto. 
7037         *  libc/sys/linux/io64.c: New file.
7038
7039 2002-04-26  Jeff Johnston  <jjohnstn@redhat.com>
7040
7041         * configure.in (CC_FOR_NEWLIB): New variable that
7042         bases on $(CC) and adds targ-include and libc/include as
7043         -isystem directives if they are not already part of $(CC).
7044         * Makefile.am (AM_MAKEFLAGS): Change setting of CC to equal
7045         $(CC_FOR_NEWLIB).
7046         * configure: Regenerated.
7047         * Makefile.in: Ditto.
7048
7049 2002-04-25  Jeff Johnston  <jjohnstn@redhat.com>
7050
7051         *  libc/sys/linux/Makefile.am: Add support for sched.c.
7052         *  libc/sys/linux/Makefile.in: Regenerated.
7053         *  libc/sys/linux/sched.c: New file.
7054         *  libc/sys/linux/sys/types.h: Add struct timespec.
7055
7056 2002-04-25  Thomas Fitzsimmons  <fitzsim@redhat.com>
7057
7058         * configure.in (CC_FOR_BUILD): Set to gcc whether
7059         cross-compiling or not.
7060         (CC): Add -isystem's for targ-include and libc/include when they
7061         do not already appear in CC.
7062
7063 2002-04-24  Thomas Fitzsimmons  <fitzsim@redhat.com>
7064
7065         * Makefile.am (check-DEJAGNU): New target.
7066         (site.exp): Likewise.
7067         * acinclude.m4 (NEWLIB_CONFIGURE): Replace AC_CANONICAL_HOST
7068         with AC_CANONICAL_SYSTEM.  Remove AC_CANONICAL_BUILD.
7069         * libc/locale/locale.c (_setlocale_r): Add UTF-8 support.
7070         * libc/stdlib/mbtowc_r.c (_mbtowc_r): Likewise.
7071         * libc/stdlib/wctomb_r.c (_wctomb_r): Likewise.
7072         * testsuite: New directory.
7073         * testsuite/config: Likewise.
7074         * testsuite/lib: Likewise.
7075         * testsuite/newlib.locale: Likewise.
7076         * testsuite/newlib.string: Likewise.
7077         * testsuite/config/default.exp: New file.
7078         * testsuite/lib/checkoutput.exp: New file.
7079         * testsuite/lib/newlib.exp: New file.
7080         * testsuite/lib/passfail.exp: New file.
7081         * testsuite/newlib.locale/UTF-8.c: New file.
7082         * testsuite/newlib.locale/UTF-8.exp: New file.
7083         * testsuite/newlib.locale/locale.exp: New file.
7084         * testsuite/newlib.string/string.exp: New file.
7085         * testsuite/newlib.string/tstring.c: New file.
7086
7087 2002-04-23  Jeff Johnston  <jjohnstn@redhat.com>
7088
7089         *  libc/include/machine/types.h (__pid_t, __off_t, __loff_t): Added.
7090         *  libc/sys/linux/Makefile.am: Add support for mmap.c.
7091         *  libc/sys/linux/Makefile.in: Regenerated.
7092         *  libc/sys/linux/mmap.c: New file.
7093         *  libc/sys/linux/machine/i386/syscall.h: Add _syscall6 macro.
7094         *  libc/sys/linux/sys/types.h (pid_t, off_t, loff_t): Added.
7095
7096 2002-04-22  Thomas Fitzsimmons  <fitzsim@redhat.com>
7097
7098         * acinclude.m4 (newlib_cflags): Remove include directories that
7099         are already specified in the top-level configure.in's FLAGS_FOR_TARGET.
7100
7101 2002-04-19  Bill Siegmund  <ctc-dsl@pacbell.net>
7102
7103         * libc/machine/xscale/memchr.c: Don't use multi-line strings.
7104         * libc/machine/xscale/memcmp.c: Ditto.
7105         * libc/machine/xscale/memcpy.c: Ditto.
7106         * libc/machine/xscale/memmove.c: Ditto.
7107         * libc/machine/xscale/memset.c: Ditto.
7108         * libc/machine/xscale/strchr.c: Ditto.
7109         * libc/machine/xscale/strcmp.c: Ditto.
7110         * libc/machine/xscale/strcpy.c: Ditto.
7111         * libc/machine/xscale/strlen.c: Ditto.
7112
7113 2002-04-19  Alexandre Oliva  <aoliva@redhat.com>
7114
7115         * libc/include/sys/config.h: Remove include of <limits.h>.
7116         (__INT_MAX__, __LONG_MAX__): Define like GCC's limits.h would
7117         define INT_MAX and LONG_MAX.  Use them in tests.
7118
7119 2002-04-19  Jeff Johnston  <jjohnstn@redhat.com>
7120
7121         *  configure.host: Add support for powerpc-eabialtivec*.
7122         *  libc/include/malloc.h: Add include of <machine/malloc.h>.
7123         *  libc/include/stdlib.h: Add include of <machine/stdlib.h>.
7124         *  libc/include/machine/malloc.h: New file.
7125         *  libc/include/machine/stdlib.h: Ditto.
7126         *  libc/include/machine/setjmp.h: Add support for powerpc altivec.
7127         *  libc/machine/powerpc/Makefile.am: Add conditional objects and
7128         sources based on configuration.
7129         *  libc/machine/powerpc/Makefile.in: Regenerated.
7130         *  libc/machine/powerpc/configure: Ditto.
7131         *  libc/machine/powerpc/configure.in: Add check for
7132         powerpc-eabialtivec* in which case add in additional source files.
7133         *  libc/machine/powerpc/setjmp.S: Add altivec support.
7134         *  libc/machine/powerpc/vec_calloc.c: New file.
7135         *  libc/machine/powerpc/vec_free.c: Ditto.
7136         *  libc/machine/powerpc/vec_malloc.c: Ditto.
7137         *  libc/machine/powerpc/vec_mallocr.c: Ditto.
7138         *  libc/machine/powerpc/vec_realloc.c: Ditto.
7139         *  libc/machine/powerpc/machine/malloc.h: Ditto.
7140         *  libc/machine/powerpc/machine/stdlib.h: Ditto.
7141         *  libc/machine/powerpc/vfprintf.c: New file that is vfprintf.c
7142         with added altivec format specifiers.
7143         *  libc/machine/powerpc/vfscanf.c: New file that is vfscanf.c with
7144         added altivec format specifiers.
7145
7146 2002-04-19      Joel Sherrill <joel@OARcorp.com>
7147
7148         * libs/sys/rtems/crt0.c: Satisfy gcc's references to libc functions
7149         while autoconf is trying to link main(){}.
7150
7151 2002-04-17  Jeff Johnston  <jjohnstn@redhat.com>
7152
7153         * libc/sys/linux/signal.c: Remove include of <bits/sigset.h>.
7154         * libc/sys/linux/sys/signal.h: Add include of <bits/sigset.h>.
7155
7156 2002-04-17  Jeff Johnston  <jjohnstn@redhat.com>
7157
7158         * libc/time/time.tex: Add tzset info.
7159
7160 2002-04-17  Jeff Johnston  <jjohnstn@redhat.com>
7161
7162         * libc/include/time.h (tzset, _tzset_r): Added prototypes.
7163         (strptime): Moved prototype to be within !__STRICT_ANSI__.
7164         (_tzname, _daylight, _timezone): No long __CYGWIN__ only.
7165         (tzname): Defined for all platforms.
7166         (daylight, timezone): Defined only for CYGWIN.
7167         * libc/sys/linux/machine/i386/crt0.c: Add call to tzset() after
7168         environment set up.
7169         * libc/stdlib/setenv_r.c (_setenv_r): Call tzset() if the TZ
7170         environment variable is set.
7171         * libc/time/Makefile.am: Add support for tzset.c, tzlock.c, and
7172         tzset_r.c.
7173         * libc/time/Makefile.in: Regenerated.
7174         * libc/time/gmtime.c (gmtime): Changed to call gmtime_r.
7175         * libc/time/gmtime_r.c (gmtime_r): Changed to call _mktm_r.
7176         * libc/time/lcltime_r.c (lcltime_r): Ditto.
7177         * libc/time/local.h: New local header file.
7178         * libc/time/mktime.c (mktime): Add timezone support.
7179         * libc/time/mktm_r.c: New file which is the common engine
7180         for gmtime_r and lcltime_r.  This code has timezone support.
7181         * libc/time/strftime.c (strftime): Add %Z timezone support.
7182         * libc/time/tzlock.c: New file containing timezone lock stubs.
7183         * libc/time/tzset.c: New file containing tzset() routine.
7184         * libc/time/tzset_r.c: New file containing _tzset_r and
7185         internal routine for calculating timezone changes for specified year.
7186
7187 2002-04-17  Thomas Fitzsimmons  <fitzsim@redhat.com>
7188
7189         * configure.in (CRT0_DIR): Set to libc/.
7190         (CRT1_DIR): Set to ${crt1_dir}/ if crt1_dir is non-empty.
7191         * Makefile.am: Change all occurrences of $(CRT0_DIR)/$(CRT0) to
7192         $(CRT0_DIR)$(CRT0) to prevent make warnings.  Likewise for
7193         $(CRT1_DIR)/$(CRT1).
7194         * libc/machine/xstormy16/Makefile.in: Regenerated.
7195         * libc/machine/xstormy16/aclocal.m4: Regenerated.
7196         * libc/machine/xstormy16/configure: Regenerated.
7197
7198 2002-04-13  Alexandre Oliva  <aoliva@redhat.com>
7199
7200         * libc/stdlib/mallocr.c (malloc_extend_top): If correction sbrk
7201         fails, don't bail out, and try to correct next time.
7202
7203         * libc/include/sys/config.h: Include limits.h.
7204
7205 2002-04-12  Eric Norum  <eric.norum@usask.com>
7206
7207         * libc/sys/rtems/crt0.c (rtems_gxx_mutex_init): Dummy
7208         routine to allow autoconf to determine that building executables
7209         for rtems works.
7210         (rtems_gxx_mutex_lock, rtems_gxx_mutex_unlock): Ditto.
7211         (rtems_gxx_mutex_once): Ditto.
7212
7213 2002-04-09  Tom Rix  <trix@redhat.com>
7214
7215         * libc/include/sys/reent.h (_REENT_INIT_PTR): Fix typo.
7216
7217 2002-04-09  Mark Bradshaw  <bradshaw@staff.crosswalk.com>
7218
7219         * libc/include/time.h: Fix strptime declaration.
7220         * libc/time/Makefile.am: Add strptime.c.
7221         * libc/time/Makefile.in: Regenerated.
7222         * libc/time/strptime.c: New file.
7223
7224 2002-04-08  Jeff Johnston  <jjohnstn@redhat.com>
7225
7226         * libc/sys/linux/include/setjmp.h: Add sigjmp_buf type,
7227         siglongjmp prototype, and sigsetjmp macro definition.
7228         * libc/sys/linux/siglongjmp.c: New file.
7229         * libc/sys/linux/Makefile.am: Add support for siglongjmp.
7230         * libc/sys/linux/Makefile.in: Regenerated.
7231
7232 2002-04-04  Jeff Johnston  <jjohnstn@redhat.com>
7233
7234         * Makefile.am: Add support for installing crt1.o if one exists.
7235         * configure.host: Specify crt1.o for linux.
7236         * configure.in: Expose CRT1 and CRT1_DIR for Makefile.am to use.
7237         * Makefile.in: Regenerated.
7238         * configure: Ditto.
7239         * libc/include/sys/unistd.h (_SC_STREAM_MAX, _SC_PRIORITY_SCHEDULING):
7240         Added for non-Cygwin, non-RTEMS configurations.
7241         * libc/sys/linux/Makefile.am: Add support for crt1 and sysconf.
7242         * libc/sys/linux/Makefile.in: Regenerated.
7243         * libc/sys/linux/crt1.c: New empty file to override one defaulted
7244         by gcc.  This fixes problem with reconfiguring linux newlib build.
7245         * libc/sys/linux/sysconf.c: New file.
7246
7247 2002-04-03  Jeff Johnston  <jjohnstn@redhat.com>
7248
7249         * configure.host: Add support for machine subdirectory of
7250         sys subdirectory.
7251         * configure.in: Add check for sys machine subdirectory.
7252         * Makefile.am: Ditto.
7253         * configure: Regenerated.
7254         * Makefile.in: Ditto.
7255         * libc/sys/linux/crt0.c: Moved to machine/i386 directory.
7256         * libc/sys/linux/sys/syscall.h: Ditto.
7257         * libc/sys/linux/sleep.c: New file.
7258         * libc/sys/linux/socket.c: Ditto.
7259         * libc/sys/linux/sockops.h: Ditto.
7260         * libc/sys/linux/stack.c: Ditto.
7261         * libc/sys/linux/usleep.c: Ditto.
7262         * libc/sys/linux/machine/Makefile.am: Ditto.
7263         * libc/sys/linux/machine/Makefile.in: Ditto.
7264         * libc/sys/linux/machine/aclocal.m4: Ditto.
7265         * libc/sys/linux/machine/configure: Ditto.
7266         * libc/sys/linux/machine/configure.in: Ditto.
7267         * libc/sys/linux/machine/i386/Makefile.am: Ditto.
7268         * libc/sys/linux/machine/i386/Makefile.in: Ditto.
7269         * libc/sys/linux/machine/i386/aclocal.m4: Ditto.
7270         * libc/sys/linux/machine/i386/configure: Ditto.
7271         * libc/sys/linux/machine/i386/configure.in: Ditto.
7272         * libc/sys/linux/machine/i386/crt0.c: Ditto.
7273         * libc/sys/linux/machine/i386/sigset.c: Ditto.
7274         * libc/sys/linux/machine/i386/sigstack.h: Ditto.
7275         * libc/sys/linux/machine/i386/socketcall.h: Ditto.
7276         * libc/sys/linux/machine/i386/syscall.h: Ditto.
7277         * libc/sys/linux/sys/select.h: Ditto.
7278         * libc/sys/linux/configure.in: Add support for machine directory.
7279         * libc/sys/linux/Makefile.am: Ditto plus add new files above.
7280         * libc/sys/linux/Makefile.in: Regenerated.
7281         * libc/sys/linux/configure: Ditto.
7282         * libc/sys/linux/brk.c: Use machine/syscall.h instead of sys/syscall.h.
7283         * libc/sys/linux/inode.c: Ditto.
7284         * libc/sys/linux/linux.c: Ditto.
7285         * libc/sys/linux/process.c: Ditto.
7286         * libc/sys/linux/systat.c: Ditto.
7287         * libc/sys/linux/time.c: Ditto.
7288         * libc/sys/linux/wait.c: Ditto.
7289         * libc/sys/linux/ids.c: Change header plus add setfsgid/setfsuid.
7290         * libc/sys/linux/io.c: Change header plus add readv/writev.
7291         * libc/sys/linux/signal.c: Change header plus change sigsuspend to
7292         use __sigsuspend syscall.
7293         * libc/sys/linux/select.c: Change header plus change select to
7294         use _newselect syscall.
7295         * libc/sys/linux/sys/cdefs.h: Add a number of standard definitions
7296         used by glibc header files.
7297         * libc/sys/linux/sys/types.h: Add __socklen_t and __useconds_t
7298         types.
7299
7300 2002-04-01  Jeff Johnston  <jjohnstn@redhat.com>
7301
7302         * libc/include/sys/reent.h (_REENT_INIT_PTR): New macro for
7303         initializing a struct _reent that has been dynamically allocated.
7304         (_REENT_CHECK_MISC): New macro that checks _misc struct for
7305         _REENT_SMALL and does nothing otherwise.
7306         (_REENT_STRTOK_LAST): New macro for reentrant strtok.
7307         (_REENT_MBLEN_STATE): New macro for reentrant mblen.
7308         (_REENT_MBTOWC_STATE): New macro for reentrant mbtowc.
7309         (_REENT_WCTOMB_STATE): New macro for reentrant wctomb.
7310         [_REENT_SMALL](struct _misc_reent): New structure containing
7311         miscellaneous reentrant areas needed by newlib.
7312         [_REENT_SMALL](struct _reent): Add _misc pointer.
7313         [_REENT_SMALL](_REENT_INIT_MISC): New macro.
7314         * libc/string/strtok (strtok): Change to use _REENT_CHECK_MISC
7315         and _REENT_STRTOK_LAST macros.
7316         * libc/stdlib/mblen (mblen): Change to use _REENT_CHECK_MISC
7317         and _REENT_MBLEN_STATE macros.
7318         * libc/stdlib/mbtowc (mbtowc): Change to use _REENT_CHECK_MISC
7319         and _REENT_MBTOWC_STATE macros.
7320         * libc/stdlib/wctomb (wctomb): Change to use _REENT_CHECK_MISC
7321         and _REENT_WCTOMB_STATE macros.
7322
7323 2002-04-01  Till Straumann <strauman@SLAC.Stanford.EDU>
7324
7325         * libc/stdlib/getenv_r.c (_findenv_r): Add missing ENV_UNLOCK.
7326
7327 Wed Mar 27 07:34:44 2002  Jason Tishler <jason@tishler.net>
7328
7329         * libc/include/sys/features.h (_POSIX_SEMAPHORES): New Cygwin define.
7330
7331 Tue Mar 26 17:17:10 2002  J"orn Rennecke <joern.rennecke@superh.com>
7332
7333         * libc/machine/sh/memcpy.S (Large): Fix alignment rounding.
7334         Store high part of leading bytes too.
7335
7336 2002-03-22  Richard Sandiford  <rsandifo@redhat.com>
7337
7338         * libm/math/ef_hypot.c: Increase scale factor to 68.
7339
7340 2002-03-13  Alexandre Oliva  <aoliva@redhat.com>
7341
7342         * libc/machine/mips/strlen.c (strlen) [__mips16]: Fix off-by-two
7343         error.
7344
7345 2002-03-12  Jeff Johnston  <jjohnstn@redhat.com>
7346
7347         * libc/sys/go32/access.c: Change license to relaxed license
7348         used in identical file throughout newlib/libgloss.
7349
7350 2002-03-12  Richard Earnshaw  <rearnsha@arm.com>
7351
7352         * libc/sys/arm/access.c: New file.
7353         * libc/sys/arm/Makefile.am (lib_a_SOURCES): Add access.c.
7354         * libc/sys/arm/Makefile.in: Regenerate.
7355         * libc/sys/arm/syscalls.c (_stat): New function.
7356
7357 2002-03-11  Michael Meissner  <meissner@redhat.com>
7358
7359         * libc/machine/mips/Makefile.am (lib_a_SOURCES): Add Mips specific
7360         variants strlen.c, strcmp.c, strncpy.c, memset.c and memcpy.c.
7361         * libc/machine/mips/Makefile.in: Regenerate.
7362         * libc/machine/mips/memcpy.c: New file, optimized for MIPS.
7363         * libc/machine/mips/memset.c: Dito.
7364         * libc/machine/mips/strcmp.c: Dito.
7365         * libc/machine/mips/strlen.c: Dito.
7366         * libc/machine/mips/strncmp.c: Dito.
7367
7368 2002-03-06  Jeff Johnston  <jjohnstn@redhat.com>
7369
7370         * libc/machine/i386/Makefile.am: Add $(oext) for setjmp
7371         object so it works for shared library or statici library.
7372 2002-04-17  Jeff Johnston  <jjohnstn@redhat.com>
7373
7374         *  libc/include/time.h (tzset, _tzset_r): Added prototypes.
7375         (strptime): Moved prototype to be within !__STRICT_ANSI__.
7376         (_tzname, _daylight, _timezone): No long __CYGWIN__ only.
7377         (tzname): Defined for all platforms.
7378         (daylight, timezone): Defined only for CYGWIN.
7379         *  libc/sys/linux/machine/i386/crt0.c: Add call to tzset() after
7380         environment set up.
7381         * libc/stdlib/setenv_r.c (_setenv_r): Call tzset() if the TZ
7382         environment variable is set.
7383         *  libc/time/Makefile.am: Add support for tzset.c, tzlock.c, and
7384         tzset_r.c.
7385         *  libc/time/Makefile.in: Regenerated.
7386         *  libc/time/gmtime.c (gmtime): Changed to call gmtime_r.
7387         *  libc/time/gmtime_r.c (gmtime_r): Changed to call _mktm_r.
7388         *  libc/time/lcltime_r.c (lcltime_r): Ditto.
7389         *  libc/time/local.h: New local header file.
7390         *  libc/time/mktime.c (mktime): Add timezone support.
7391         *  libc/time/mktm_r.c: New file which is the common engine
7392         for gmtime_r and lcltime_r.  This code has timezone support.
7393         *  libc/time/strftime.c (strftime): Add %Z timezone support.
7394         *  libc/time/tzlock.c: New file containing timezone lock stubs.
7395         *  libc/time/tzset.c: New file containing tzset() routine.
7396         *  libc/time/tzset_r.c: New file containing _tzset_r and
7397         internal routine for calculating timezone changes for specified year.
7398
7399 2002-04-17  Thomas Fitzsimmons  <fitzsim@redhat.com>
7400
7401         * configure.in (CRT0_DIR): Set to libc/.
7402         (CRT1_DIR): Set to ${crt1_dir}/ if crt1_dir is non-empty.
7403         * Makefile.am: Change all occurrences of $(CRT0_DIR)/$(CRT0) to
7404         $(CRT0_DIR)$(CRT0) to prevent make warnings.  Likewise for
7405         $(CRT1_DIR)/$(CRT1).
7406         * libc/machine/xstormy16/Makefile.in: Regenerated.
7407         * libc/machine/xstormy16/aclocal.m4: Regenerated.
7408         * libc/machine/xstormy16/configure: Regenerated.
7409
7410 2002-04-13  Alexandre Oliva  <aoliva@redhat.com>
7411
7412         * libc/stdlib/mallocr.c (malloc_extend_top): If correction sbrk
7413         fails, don't bail out, and try to correct next time.
7414
7415         * libc/include/sys/config.h: Include limits.h.
7416
7417 2002-04-12  Eric Norum  <eric.norum@usask.com>
7418
7419         * libc/sys/rtems/crt0.c (rtems_gxx_mutex_init): Dummy
7420         routine to allow autoconf to determine that building executables
7421         for rtems works.
7422         (rtems_gxx_mutex_lock, rtems_gxx_mutex_unlock): Ditto.
7423         (rtems_gxx_mutex_once): Ditto.
7424
7425 2002-04-09  Tom Rix  <trix@redhat.com>
7426
7427         * libc/include/sys/reent.h (_REENT_INIT_PTR): Fix typo.
7428
7429 2002-04-09  Mark Bradshaw  <bradshaw@staff.crosswalk.com>
7430
7431         * libc/include/time.h: Fix strptime declaration.
7432         * libc/time/Makefile.am: Add strptime.c.
7433         * libc/time/Makefile.in: Regenerated.
7434         * libc/time/strptime.c: New file.
7435
7436 2002-04-08  Jeff Johnston  <jjohnstn@redhat.com>
7437
7438         * libc/sys/linux/include/setjmp.h: Add sigjmp_buf type,
7439         siglongjmp prototype, and sigsetjmp macro definition.
7440         * libc/sys/linux/siglongjmp.c: New file.
7441         * libc/sys/linux/Makefile.am: Add support for siglongjmp.
7442         * libc/sys/linux/Makefile.in: Regenerated.
7443
7444 2002-04-04  Jeff Johnston  <jjohnstn@redhat.com>
7445
7446         * Makefile.am: Add support for installing crt1.o if one exists.
7447         * configure.host: Specify crt1.o for linux.
7448         * configure.in: Expose CRT1 and CRT1_DIR for Makefile.am to use.
7449         * Makefile.in: Regenerated.
7450         * configure: Ditto.
7451         * libc/include/sys/unistd.h (_SC_STREAM_MAX, _SC_PRIORITY_SCHEDULING):
7452         Added for non-Cygwin, non-RTEMS configurations.
7453         * libc/sys/linux/Makefile.am: Add support for crt1 and sysconf.
7454         * libc/sys/linux/Makefile.in: Regenerated.
7455         * libc/sys/linux/crt1.c: New empty file to override one defaulted
7456         by gcc.  This fixes problem with reconfiguring linux newlib build.
7457         * libc/sys/linux/sysconf.c: New file.
7458
7459 2002-04-03  Jeff Johnston  <jjohnstn@redhat.com>
7460
7461         * configure.host: Add support for machine subdirectory of
7462         sys subdirectory.
7463         * configure.in: Add check for sys machine subdirectory.
7464         * Makefile.am: Ditto.
7465         * configure: Regenerated.
7466         * Makefile.in: Ditto.
7467         * libc/sys/linux/crt0.c: Moved to machine/i386 directory.
7468         * libc/sys/linux/sys/syscall.h: Ditto.
7469         * libc/sys/linux/sleep.c: New file.
7470         * libc/sys/linux/socket.c: Ditto.
7471         * libc/sys/linux/sockops.h: Ditto.
7472         * libc/sys/linux/stack.c: Ditto.
7473         * libc/sys/linux/usleep.c: Ditto.
7474         * libc/sys/linux/machine/Makefile.am: Ditto.
7475         * libc/sys/linux/machine/Makefile.in: Ditto.
7476         * libc/sys/linux/machine/aclocal.m4: Ditto.
7477         * libc/sys/linux/machine/configure: Ditto.
7478         * libc/sys/linux/machine/configure.in: Ditto.
7479         * libc/sys/linux/machine/i386/Makefile.am: Ditto.
7480         * libc/sys/linux/machine/i386/Makefile.in: Ditto.
7481         * libc/sys/linux/machine/i386/aclocal.m4: Ditto.
7482         * libc/sys/linux/machine/i386/configure: Ditto.
7483         * libc/sys/linux/machine/i386/configure.in: Ditto.
7484         * libc/sys/linux/machine/i386/crt0.c: Ditto.
7485         * libc/sys/linux/machine/i386/sigset.c: Ditto.
7486         * libc/sys/linux/machine/i386/sigstack.h: Ditto.
7487         * libc/sys/linux/machine/i386/socketcall.h: Ditto.
7488         * libc/sys/linux/machine/i386/syscall.h: Ditto.
7489         * libc/sys/linux/sys/select.h: Ditto.
7490         * libc/sys/linux/configure.in: Add support for machine directory.
7491         * libc/sys/linux/Makefile.am: Ditto plus add new files above.
7492         * libc/sys/linux/Makefile.in: Regenerated.
7493         * libc/sys/linux/configure: Ditto.
7494         * libc/sys/linux/brk.c: Use machine/syscall.h instead of sys/syscall.h.
7495         * libc/sys/linux/inode.c: Ditto.
7496         * libc/sys/linux/linux.c: Ditto.
7497         * libc/sys/linux/process.c: Ditto.
7498         * libc/sys/linux/systat.c: Ditto.
7499         * libc/sys/linux/time.c: Ditto.
7500         * libc/sys/linux/wait.c: Ditto.
7501         * libc/sys/linux/ids.c: Change header plus add setfsgid/setfsuid.
7502         * libc/sys/linux/io.c: Change header plus add readv/writev.
7503         * libc/sys/linux/signal.c: Change header plus change sigsuspend to
7504         use __sigsuspend syscall.
7505         * libc/sys/linux/select.c: Change header plus change select to
7506         use _newselect syscall.
7507         * libc/sys/linux/sys/cdefs.h: Add a number of standard definitions
7508         used by glibc header files.
7509         * libc/sys/linux/sys/types.h: Add __socklen_t and __useconds_t
7510         types.
7511
7512 2002-04-01  Jeff Johnston  <jjohnstn@redhat.com>
7513
7514         * libc/include/sys/reent.h (_REENT_INIT_PTR): New macro for
7515         initializing a struct _reent that has been dynamically allocated.
7516         (_REENT_CHECK_MISC): New macro that checks _misc struct for
7517         _REENT_SMALL and does nothing otherwise.
7518         (_REENT_STRTOK_LAST): New macro for reentrant strtok.
7519         (_REENT_MBLEN_STATE): New macro for reentrant mblen.
7520         (_REENT_MBTOWC_STATE): New macro for reentrant mbtowc.
7521         (_REENT_WCTOMB_STATE): New macro for reentrant wctomb.
7522         [_REENT_SMALL](struct _misc_reent): New structure containing
7523         miscellaneous reentrant areas needed by newlib.
7524         [_REENT_SMALL](struct _reent): Add _misc pointer.
7525         [_REENT_SMALL](_REENT_INIT_MISC): New macro.
7526         * libc/string/strtok (strtok): Change to use _REENT_CHECK_MISC
7527         and _REENT_STRTOK_LAST macros.
7528         * libc/stdlib/mblen (mblen): Change to use _REENT_CHECK_MISC
7529         and _REENT_MBLEN_STATE macros.
7530         * libc/stdlib/mbtowc (mbtowc): Change to use _REENT_CHECK_MISC
7531         and _REENT_MBTOWC_STATE macros.
7532         * libc/stdlib/wctomb (wctomb): Change to use _REENT_CHECK_MISC
7533         and _REENT_WCTOMB_STATE macros.
7534
7535 2002-04-01  Till Straumann <strauman@SLAC.Stanford.EDU>
7536
7537         * libc/stdlib/getenv_r.c (_findenv_r): Add missing ENV_UNLOCK.
7538
7539 Wed Mar 27 07:34:44 2002  Jason Tishler <jason@tishler.net>
7540
7541         * libc/include/sys/features.h (_POSIX_SEMAPHORES): New Cygwin define.
7542
7543 Tue Mar 26 17:17:10 2002  J"orn Rennecke <joern.rennecke@superh.com>
7544
7545         * libc/machine/sh/memcpy.S (Large): Fix alignment rounding.
7546         Store high part of leading bytes too.
7547
7548 2002-03-22  Richard Sandiford  <rsandifo@redhat.com>
7549
7550         * libm/math/ef_hypot.c: Increase scale factor to 68.
7551
7552 2002-03-13  Alexandre Oliva  <aoliva@redhat.com>
7553
7554         * libc/machine/mips/strlen.c (strlen) [__mips16]: Fix off-by-two
7555         error.
7556
7557 2002-03-12  Jeff Johnston  <jjohnstn@redhat.com>
7558
7559         * libc/sys/go32/access.c: Change license to relaxed license
7560         used in identical file throughout newlib/libgloss.
7561
7562 2002-03-12  Richard Earnshaw  <rearnsha@arm.com>
7563
7564         * libc/sys/arm/access.c: New file.
7565         * libc/sys/arm/Makefile.am (lib_a_SOURCES): Add access.c.
7566         * libc/sys/arm/Makefile.in: Regenerate.
7567         * libc/sys/arm/syscalls.c (_stat): New function.
7568
7569 2002-03-11  Michael Meissner  <meissner@redhat.com>
7570
7571         * libc/machine/mips/Makefile.am (lib_a_SOURCES): Add Mips specific
7572         variants strlen.c, strcmp.c, strncpy.c, memset.c and memcpy.c.
7573         * libc/machine/mips/Makefile.in: Regenerate.
7574         * libc/machine/mips/memcpy.c: New file, optimized for MIPS.
7575         * libc/machine/mips/memset.c: Dito.
7576         * libc/machine/mips/strcmp.c: Dito.
7577         * libc/machine/mips/strlen.c: Dito.
7578         * libc/machine/mips/strncmp.c: Dito.
7579
7580 2002-03-06  Jeff Johnston  <jjohnstn@redhat.com>
7581
7582         * libc/machine/i386/Makefile.am: Add $(oext) for setjmp
7583         object so it works for shared library or statici library.
7584         * libc/machine/i386/Makefile.in: Regenerated.
7585
7586 Wed Mar  6 10:24:26 2002  J"orn Rennecke <joern.rennecke@superh.com>
7587
7588         * libc/machine/sh/Makefile.am (lib_a_SOURCES, SH64 case):
7589         Add memcpy.S, memset.S and strcpy.S.
7590         * libc/machine/sh/Makefile.in: Regenerate.
7591         * libc/machine/sh/asm.h (_ENTRY): Set SH5 alignment to 8 bytes.
7592         (SHHI, SHLO): Define.
7593         * libc/machine/sh/memset.S: Add code for SH5.
7594         * libc/machine/sh/memset.S: Likewise.
7595         * libc/machine/sh/strcpy.S: Likewise.
7596
7597 2002-02-27  Jeff Johnston  <jjohnstn@redhat.com>
7598
7599         * configure.host: Add check for --disable-newlib-io-float
7600         configuration option and add -DNO_FLOATING_POINT to newlib cflags
7601         if appropriate.
7602         * acinclude.m4: Added --disable-newlib-io-float option.
7603         * aclocal.m4: Regenerated.
7604         * configure: Ditto.
7605         * doc/aclocal.m4 doc/configure libc/aclocal.m4 libc/configure
7606         * libc/*/aclocal.m4 libc/*/configure 
7607         * libm/*/aclocal.m4 libm/*/configure: Ditto.
7608         * libc/stdio/vfprintf.c [!INTEGER_ONLY]: Only set FLOATING_POINT
7609         if NO_FLOATING_POINT flag is not defined.
7610
7611 2002-02-25  Jeff Johnston  <jjohnstn@redhat.com>
7612
7613         * libc/include/sys/config.h: Add __extension__ in front of
7614         long long references.
7615
7616 2002-02-23  Corinna Vinschen  <corinna@vinschen.de>
7617
7618         * libc/include/sys/stat.h (_fstat): Don't declare when compiling Cygwin.
7619         (_stat): Ditto.
7620
7621 2002-02-23  Corinna Vinschen  <corinna@vinschen.de>
7622
7623         * libc/sys/cygwin/sys/dirent.h (struct __DIR): Use __off32_t instead
7624         of off_t.
7625
7626 2002-02-20  Nick Clifton  <nickc@cambridge.redhat.com>
7627
7628         * libc/machine/xscale/strchr.c (strchr): Add 'r1' to the list of
7629         clobbered registers.
7630
7631 2002-02-19  Thomas Fitzsimmons  <fitzsim@redhat.com>
7632
7633         * configure.host (newlib_cflags): When host is in m68* add
7634         -DCOMPACT_CTYPE.
7635
7636 2002-02-15  Jeff Johnston  <jjohnstn@redhat.com>
7637
7638         * libc/include/sys/config.h: Add definitions for
7639         __int16_t, __uint16_t, __int64_t, and __uint64_t.
7640
7641 2002-02-12  Hans-Peter Nilsson  <hp@bitrange.com>
7642
7643         * libc/sys/mmixware/link.c: New.
7644         * libc/sys/mmixware/sys/syscall.h (TRAP1i, I3f): Make asm
7645         volatile.
7646         * libc/sys/mmixware/times.c (_times): Renamed from times.
7647         * libc/sys/mmixware/open.c (_open): Attempt to handle O_APPEND
7648         properly by reading previous contents, not through BinaryReadWrite.
7649         * libc/sys/mmixware/Makefile.am (lib_a_SOURCES): Add link.c
7650         * libc/sys/mmixware/Makefile.in: Regenerate.
7651
7652 2002-02-10  Corinna Vinschen  <corinna@vinschen.de>
7653
7654         * libc/include/grp.h: Don't declare group functions when compiling
7655         Cygwin.
7656
7657 2002-02-09  Corinna Vinschen  <corinna@vinschen.de>
7658
7659         * libc/include/grp.h: Include Cygwin specific header.
7660         * libc/include/sys/stat.h: Ditto.  Don't define `struct stat'
7661         when compiling for Cygwin.
7662         * libc/include/sys/types.h: Don't define off_t, uid_t
7663         and gid_t when compiling for Cygwin.
7664
7665 2002-02-08  matthew green  <mrg@redhat.com>
7666
7667         * libc/include/sys/reent.h (_REENT_CHECK_EMERGENCY): Allocate
7668         _REENT_EMERGENCY_SIZE, not sizeof(char *).
7669
7670 2002-02-08  Alexandre Oliva  <aoliva@redhat.com>
7671
7672         Contribute sh64-elf.
7673         2001-03-13  Alexandre Oliva  <aoliva@redhat.com>
7674         * configure.host (newlib_cflags) [sh*-*-*]: Enable long long
7675         support in printf.
7676         2001-01-29  Alexandre Oliva  <aoliva@redhat.com>
7677         * libc/machine/sh/setjmp.S [SH5]: Switch to SHmedia mode before
7678         any labels.
7679         2001-01-24  Alexandre Oliva  <aoliva@redhat.com>
7680         * libc/sys/sh/trap.S (___trap34) [SH5]: Don't trash r2.
7681         2000-12-16  Alexandre Oliva  <aoliva@redhat.com>
7682         * libc/machine/sh/configure.in: Rework conditionals.
7683         * libc/machine/sh/Makefile.am: Likewise.
7684         * libc/machine/sh/configure, libc/machine/sh/Makefile.in: Rebuilt.
7685         2000-12-01  Alexandre Oliva  <aoliva@redhat.com>
7686         * configure.host: Match `sh*'.
7687         * libc/include/machine/setjmp.h: Define for SH5.
7688         * libc/machine/sh/configure.in: Detect SH5.
7689         * libc/machine/sh/configure: Rebuilt.
7690         * libc/machine/sh/Makefile.am: Use only setjmp.S for SH5.
7691         * libc/machine/sh/Makefile.in: Rebuilt.
7692         * libc/machine/sh/asm.h: Adjust for SH5.
7693         * libc/machine/sh/setjmp.S: Implement in SHmedia.
7694         * libc/sys/sh/crt0.S: Likewise.
7695         * libc/sys/sh/trap.S: Likewise.
7696
7697 2002-02-07  Jeff Johnston  <jjohnstn@redhat.com>
7698
7699         * libc/machine/i386/Makefile.am: (mach_add_src): Remove.
7700         (mach_add_obj): Conditionally set to setjmp.o or nothing.
7701         (LIB_SOURCES): Remove $(mach_add_src).
7702         (lib_a_LIBADD, lib_a_DEPENDENCIES): Add and set to $(mach_add_src).
7703         (lib_la_LIBADD, lib_la_DEPENDENCIES): Ditto.
7704         * libc/machine/i386/Makefile.in: Regenerate.
7705
7706 2002-02-05  Manik Raina <manik@cisco.com>
7707
7708         * libc/misc/dprintf.c (parse_number): #if 0 unused function.
7709         * libc/stdlib/ldtoa.c (_ldcheck): Remove unused local variables
7710         s, p, k, and outstr.
7711         * libc/stdlib/dtoa.c (_dtoa_r): Initialize mlo.
7712
7713 2002-02-04  Jeff Johnston  <jjohnstn@redhat.com>
7714
7715         * libc/include/sys/reent.h [(!_REENT_SMALL]: Add
7716         _REENT_CHECK_EMERGENCY macro.
7717
7718 2002-02-03  matthew green  <mrg@redhat.com>
7719
7720         * libc/reent/signgam.c (__signgam): Fix error in previous.
7721
7722 2002-02-02  matthew green  <mrg@redhat.com>
7723
7724         * libc/include/sys/config.h (_REENT_SMALL): Define for Xstormy16.
7725
7726         * libc/reent/reent.c (_reclaim_reent): Clean for _REENT_SMALL case.
7727         * libc/reent/reent.tex: Add blurb about _REENT_SMALL.
7728         * libc/include/sys/reent.h (struct _reent): Completely new version
7729         for _REENT_SMALL.
7730         (_REENT_INIT): New defines, different defintion depending on _REENT_SMALL.
7731         (_REENT_CHECK, _REENT_CHECK_TM): Likewise.
7732         (_REENT_CHECK_ASCTIME_BUF, _REENT_INIT_RAND48): Likewise.
7733         (_REENT_CHECK_RAND48, _REENT_INIT_MP, _REENT_CHECK_MP): Likewise.
7734         (_REENT_CHECK_EMERGENCY, _REENT_SIGNGAM, _REENT_RAND_NEXT): Likewise.
7735         (_REENT_RAND48_SEED, _REENT_RAND48_MULT, _REENT_RAND48_ADD): Likewise.
7736         (_REENT_MP_RESULT, _REENT_MP_RESULT_K, _REENT_MP_P5S): Likewise.
7737         (_REENT_MP_FREELIST, _REENT_ASCTIME_BUF, _REENT_TM): Likewise.
7738         (_REENT_EMERGENCY): Likewise.
7739
7740         * libc/include/sys/reent.h (struct __sFILE_fake): New struct, same as
7741         the start of the real __sFILE, used for stdin, stdout and stderr until
7742         they are setup properly.
7743         (struct __sFILE): Move location of _data in _REENT_SMALL case.
7744         * libc/stdio/findfp.c (__sinit): Rearrange for _REENT_SMALL case by
7745         allocated stdin, stdout and stderr.
7746         * libc/stdio/getchar.c (_getchar_r): Call _REENT_SMALL_CHECK_INIT().
7747         * libc/stdio/iprintf.c (iprintf, _iprintf_r): Likewise.
7748         * libc/stdio/perror.c (_perror_r): Likewise.
7749         * libc/stdio/printf.c (printf, _printf_r): Likewise.
7750         * libc/stdio/putchar.c (_putchar_r): Likewise.
7751         * libc/stdio/puts.c (_puts_r): Likewise.
7752         * libc/stdio/scanf.c (scanf, _scanf_r): Likewise.
7753         * libc/stdio/vprintf.c (vprintf): Likewise.
7754         * libc/stdio/vscanf.c (vscanf, _vscanf_r): Likewise.
7755
7756         * libc/stdio/tmpnam.c (_tmpnam_r): Use _REENT_EMERGENCY().
7757
7758         * libc/reent/reent.c (_wrapup_reent): Adjust for _REENT_SMALL atexit.
7759         * libc/include/sys/reent.h (_atexit): Limit atexit() entries to 32
7760         for _REENT_SMALL.
7761         * libc/stdlib/atexit.c (atexit): Rearrange for _REENT_SMALL case.
7762         * libc/stdlib/exit.c (exit): Rearrange for _REENT_SMALL case.
7763
7764         * libc/include/sys/reent.h (struct _rand48): Keep _rand_next if
7765         _REENT_SMALL.
7766         * libc/stdlib/drand48.c (_drand48_r): Call _REENT_CHECK_RAND48().
7767         * libc/stdlib/lcong48.c (_lcong48_r): Likewise.
7768         * libc/stdlib/lrand48.c (_lrand48_r): Likewise.
7769         * libc/stdlib/mrand48.c (_mrand48_r): Likewise.
7770         * libc/stdlib/rand48.c (__dorand48): Likewise.
7771         * libc/stdlib/seed48.c (_seed48_r): Likewise.
7772         * libc/stdlib/srand48.c (_srand48_r): Likewise.
7773         * libc/stdlib/rand48.h (__rand48_seed, __rand48_mult, __rand48_add): Define
7774         as _REENT_RAND48_SEED(), _REENT_RAND48_MULT() and _REENT_RAND48_ADD().
7775         * libc/stdlib/dtoa.c (_dtoa_r): Call _REENT_CHECK_MP().  Use
7776         _REENT_MP_RESULT() and _REENT_MP_RESULT_K().
7777         * libc/stdlib/ldtoa.c (_ldtoa_r): Likewise.
7778         * libc/stdlib/rand.c (srand): Use _REENT_RAND_NEXT().
7779         * libc/stdlib/rand.c (rand): Likewise.
7780
7781         * libc/stdlib/mallocr.c (malloc_stats): Call _REENT_SMALL_CHECK_INIT().
7782         * libc/stdlib/mstats.c (_mstats_r): Call _REENT_SMALL_CHECK_INIT().
7783
7784         * libc/stdlib/mprec.c (Balloc): Call _REENT_CHECK_MP.  Use
7785         _REENT_MP_FREELIST() and _REENT_MP_P5S.
7786         * libc/include/sys/reent.h (struct _mprec): New structure.
7787
7788         * libc/include/sys/reent.h (struct _reent): Rename _strtok_last to
7789         _unused_strtok_last.
7790         * libc/string/strtok.c (strtok): Use a local static variable.
7791
7792         * libc/include/sys/reent.h (_REENT_ASCTIME_SIZE): New define.
7793         (_REENT_EMERGENCY_SIZE): Likewise.
7794         * libc/time/asctime.c (asctime): Call _REENT_CHECK_ASCTIME_BUF().  Use
7795         _REENT_ASCTIME_BUF().
7796         * libc/time/lcltime.c (localtime): Call _REENT_CHECK_TM().  Use
7797         _REENT_TM().
7798
7799         * libc/include/math.h (__singam_r): Use _REENT_SIGNGAM().
7800         * libc/reent/signgam.c (__signgam): Use _REENT_SIGNGAM().
7801         * libm/math/w_gamma.c (gamma): Use _REENT_SIGNGAM().
7802         * libm/math/w_lgamma.c (lgamma): Use _REENT_SIGNGAM().
7803         * libm/math/wf_gamma.c (gammaf): Use _REENT_SIGNGAM().
7804         * libm/math/wf_lgamma.c (lgammaf): Use _REENT_SIGNGAM().
7805
7806 2002-02-01  Geoffrey Keating  <geoffk@redhat.com>
7807
7808         * configure.host (xstormy16): Don't use the generic malloc.
7809         * libc/machine/xstormy16/Makefile.am: Build tiny-malloc.
7810         * libc/machine/xstormy16/Makefile.in: Regenerate.
7811         * libc/machine/xstormy16/mallocr.c: New file.
7812         * libc/machine/xstormy16/tiny-malloc.c: New file.
7813
7814 2002-01-28  Thomas Fitzsimmons  <fitzsim@redhat.com>
7815
7816         * libc/include/sys/signal.h [__CYGWIN__]: Issue error message
7817         when _CYGWIN_TYPES_H is not defined.
7818
7819 2002-01-24  Thomas Fitzsimmons  <fitzsim@redhat.com>
7820
7821         * libc/include/sys/signal.h: Revert 2002-01-23 change.
7822
7823 2002-01-23  Thomas Fitzsimmons  <fitzsim@redhat.com>
7824
7825         * libc/include/sys/signal.h: Remove pthread_kill declaration
7826         when __CYGWIN__ is defined.
7827
7828 2002-01-18  Mark Bradshaw  <bradshaw@staff.crosswalk.com>
7829
7830         * libc/include/time.h: Add prototype for strptime for Cygwin.
7831
7832 2002-01-17  Nick Clifton  <nickc@cambridge.redhat.com>
7833
7834         * libc/machine/xscale/memset.c (memset): Fix bug when len == 1 and
7835         dst was not word aligned.
7836
7837         * libc/sys/arm/syscalls.c (_sbrk): Return -1 rather than aborting
7838         if too much memory is requested.
7839
7840 2002-01-11 Jeff Johnston  <jjohnstn@redhat.com>
7841
7842         * libc/stdio/vfscanf.c (__svfscanf_r): Change loop that
7843         reads blanks from the input file to break if EOF reached
7844         rather than end processing.
7845
7846 2002-01-07 Jeff Johnston  <jjohnstn@redhat.com>
7847
7848         * MAINTAINERS: Change e-mail addresses to refer to redhat domain.
7849
7850 2002-01-07 Alan Matsuoka <alanm@redhat.com>
7851
7852         * libc/include/machine/ieeefp.h: Configure d10v doubles to
7853         be 32 bits if __DOUBLE__ == 32  otherwise doubles are 64 bits.
7854         libc/include/sys/config.h: Ditto.
7855
7856 2001-12-28  Corinna Vinschen  <corinna@vinschen.de>
7857
7858         * libc/sys/cygwin/sys/utmp.h: Add definition of UTMP_FILE.
7859
7860 2001-12-22  Geoffrey Keating  <geoffk@redhat.com>
7861             Catherine Moore  <clm@redhat.com>
7862             Richard Henderson  <rth@redhat.com>
7863             Corinna Vinschen  <vinschen@redhat.com>
7864
7865         * configure.host: Add support for xstormy16.
7866         * libc/include/machine/ieeefp.h: Add support for xstormy16.
7867         * libc/include/machine/setjmp.h: Add support for xstormy16.
7868         * libc/include/sys/config.h: Add support for xstormy16.
7869         * libc/machine/xstormy16/Makefile.am: New file.
7870         * libc/machine/xstormy16/Makefile.in: New file.
7871         * libc/machine/xstormy16/aclocal.m4: New file.
7872         * libc/machine/xstormy16/configure: New file.
7873         * libc/machine/xstormy16/configure.in: New file.
7874         * libc/machine/xstormy16/setjmp.S: New file.
7875
7876 2001-12-19  Thomas Fitzsimmons  <fitzsim@redhat.com>
7877
7878         * libm/machine/configure.in (HAVE_LIBM_MACHINE_DIR): New conditional.
7879         * libm/machine/Makefile.am [HAVE_LIBM_MACHINE_DIR] (LIBM_MACHLIB): New variable.
7880
7881 2001-12-19  Corinna Vinschen  <corinna@vinschen.de>
7882
7883         * libm/machine/Makefile.am: Change rules to create correct lib.a.
7884         * libm/machine/Makefile.in: Regenerated through automake.
7885
7886 2001-12-18  Thomas Fitzsimmons  <fitzsim@redhat.com>
7887
7888         * Makefile.am (DOCDIR): Force to empty string when doc
7889         directory is not present.
7890
7891 2001-12-18  Thomas Fitzsimmons  <fitzsim@redhat.com>
7892
7893         * libc/machine/i386/f_*: Move to libm/machine/i386.
7894
7895 2001-12-18      Joel Sherrill <joel@OARcorp.com>
7896
7897         * libm/machine/Makefile.am: Add dummy doc stub so
7898         "make info" works.
7899
7900 2001-12-17      Joel Sherrill <joel@OARcorp.com>
7901
7902         * libc/include/sys/types.h (ino_t): RTEMS uses long also.
7903
7904 2001-12-17  Thomas Fitzsimmons  <fitzsim@redhat.com>
7905
7906         * libc/stdlib/Makefile.am (LIB_COMPILE): Change to equal
7907         $(COMPILE) rather than $(CC).
7908         * libc/stdio/Makefile.am (LIB_COMPILE): Likewise.
7909         (vfprintf.$(oext)): Remove $(INCLUDES), made redundant by
7910         $(LIB_COMPILE) change.
7911         (vfiprintf.$(oext)): Likewise.
7912
7913 2001-12-17  Corinna Vinschen  <vinschen@redhat.de>
7914
7915         * libc/sys/cygwin/include/unistd.h: Add __UNISTD_GETOPT_ to allow
7916         conditionalized including of getopt stuff.
7917
7918 2001-12-14  Thomas Fitzsimmons  <fitzsim@redhat.com>
7919
7920         * libc/stdio/Makefile.am (vfprintf.$(oext)): Add $(INCLUDES) to
7921         compile line.
7922         (vfiprintf.$(oext)): Likewise.
7923
7924 2001-12-13  Thomas Fitzsimmons  <fitzsim@redhat.com>
7925
7926         * Makefile.shared: New file.
7927         * libc/sys/linux/shared.ld: New file.
7928         * libm/machine/*: New files.
7929         * libm/machine/i386/*: New files.
7930         * Makefile.am: Add libtool support.  Change math and mathfp
7931         references to variables.
7932         * configure.host: Add variables for libtool support.  Add
7933         libm_machine_dir variable.
7934         * configure.in: Add objectlist variables, for libtool
7935         support.  Add CC_FOR_BUILD tests.
7936         * libc/Makefile.am: Add libtool support.  Change crt0.o
7937         reference to be a variable reference.
7938         * libc/configure.in: Add libtool support.  Change sublib
7939         names to be lib${subdir}.la when using libtool.
7940         * libc/ctype/Makefile.am: Add libtool support.
7941         * libc/errno/Makefile.am: Likewise.
7942         * libc/locale/Makefile.am: Likewise.
7943         * libc/machine/Makefile.am: Likewise.
7944         * libc/machine/configure.in: Likewise.
7945         * libc/machine/i386/Makefile.am: Likewise.
7946         * libc/machine/i386/configure.in: Likewise.
7947         * libc/misc/Makefile.am: Likewise.
7948         * libc/posix/Makefile.am: Likewise.
7949         * libc/reent/Makefile.am: Likewise.
7950         * libc/signal/Makefile.am: Likewise.
7951         * libc/stdio/Makefile.am: Likewise.
7952         * libc/stdlib/Makefile.am: Likewise.
7953         * libc/string/Makefile.am: Likewise.
7954         * libc/sys/Makefile.am: Likewise.
7955         * libc/sys/configure.in: Likewise.
7956         * libc/sys/linux/Makefile.am: Add libtool support.  Change
7957         awk reference to a variable reference.  Change signal.h
7958         reference to a variable reference.
7959         * libc/sys/linux/configure.in: Add libtool support.
7960         * libc/syscalls/Makefile.am: Likewise.
7961         * libc/time/Makefile.am: Likewise.
7962         * libc/unix/Makefile.am: Likewise.
7963         * libm/Makefile.am: Add libtool support.  Change math and
7964         mathfp references to variables.
7965         * libm/configure.in: Add libtool support.  Add
7966         LIBM_MACHINE_LIB variable.
7967         * libm/common/Makefile.am: Add libtool support.
7968         * libm/math/Makefile.am: Likewise.
7969         * libm/mathfp/Makefile.am: Likewise.
7970         Regenerate all Makefile.in, aclocal.m4, and configure.
7971
7972 2001-12-13 Anita Kulkarni <anitak@kpit.com>
7973
7974         * libc/sys/sh/crt0.S: Remove stack symbol definition 0xdeaddead.
7975
7976 2001-12-06  John Peacock <jpeacock@rowman.com>
7977
7978         * libc/include/sys/unistd.h: Correct ualarm declaration.
7979
7980 2001-12-05  Nick Clifton  <nickc@cambridge.redhat.com>
7981
7982         * libc/sys/arm/crt0.S: For __USES_INITFINI__ preserve the argument
7983         vector before calling the initialisation functions.
7984
7985 2001-11-29  Christopher Faylor  <cgf@redhat.com>
7986
7987         * libc/include/dirent.h: Protect against multiple inclusion.
7988
7989 2001-11-27  Christopher Faylor  <cgf@redhat.com>
7990
7991         * libc/include/sys/types.h: Define useconds_t.
7992         * libc/include/sys/ulimit.h: Declare ualarm.
7993
7994 2001-11-21  Christopher Faylor  <cgf@redhat.com>
7995
7996         * libc/sys/cygwin/sys/dirent.h (DIR): Add another internal element.
7997
7998 2001-11-19  Hans-Peter Nilsson  <hp@bitrange.com>
7999
8000         * libc/sys/mmixware/*: Tweak license header in all source files.
8001
8002 2001-11-12  Corinna Vinschen  <vinschen@redhat.com>
8003
8004         * libc/include/alloca.h: Move libc/sys/linux/include/alloca.h
8005         to here.  Rearrange for general inclusion by stdlib.h.
8006         * libc/include/stdlib.h: Include <alloca.h> if __STRICT_ANSI__
8007         isn't defined.
8008         * libc/sys/linux/include/alloca.h: Move to libc/include.
8009
8010 2001-11-12  Anthony Green  <green@redhat.com>
8011
8012         * libc/sys/arm/crt0.S (__stack_base__): New symbol.
8013
8014 2001-11-13  Hans-Peter Nilsson  <hp@bitrange.com>
8015
8016         * libc/sys/mmixware/*: Correct spacing in all source files.
8017         * libc/sys/mmixware/syscall.h: Move misplaced file...
8018         * libc/sys/mmixware/sys/syscall.h: ...here.
8019
8020 2001-11-12  Hans-Peter Nilsson  <hp@bitrange.com>
8021
8022         * libc/include/machine/ieeefp.h: Add support for mmix target.
8023         * libc/include/machine/setjmp.h: Ditto.
8024         * configure.host: Ditto.
8025         * libc/sys/mmixware/Makefile.am, libc/sys/mmixware/_exit.c,
8026         libc/sys/mmixware/access.c, libc/sys/mmixware/aclocal.m4,
8027         libc/sys/mmixware/chmod.c, libc/sys/mmixware/chown.c,
8028         libc/sys/mmixware/close.c, libc/sys/mmixware/configure.in,
8029         libc/sys/mmixware/creat.c, libc/sys/mmixware/crt0.c,
8030         libc/sys/mmixware/execv.c, libc/sys/mmixware/execve.c,
8031         libc/sys/mmixware/fork.c, libc/sys/mmixware/fstat.c,
8032         libc/sys/mmixware/getpid.c, libc/sys/mmixware/gettime.c,
8033         libc/sys/mmixware/isatty.c, libc/sys/mmixware/kill.c,
8034         libc/sys/mmixware/lseek.c, libc/sys/mmixware/open.c,
8035         libc/sys/mmixware/pipe.c, libc/sys/mmixware/read.c,
8036         libc/sys/mmixware/sbrk.c, libc/sys/mmixware/setjmp.S,
8037         libc/sys/mmixware/stat.c, libc/sys/mmixware/sys/syscall.h,
8038         libc/sys/mmixware/time.c, libc/sys/mmixware/times.c,
8039         libc/sys/mmixware/unlink.c, libc/sys/mmixware/utime.c,
8040         libc/sys/mmixware/wait.c, libc/sys/mmixware/write.c: New files.
8041         * libc/sys/mmixware/configure, libc/sys/mmixware/Makefile.in,
8042         libc/sys/mmixware/aclocal.m4: Generate.
8043
8044 2001-11-05  Corinna Vinschen  <corinna@vinschen.de>
8045
8046         * libc/include/sys/unistd.h: Add prototypes for endusershell(),
8047         getusershell(), iruserok(), revoke(), ruserok() and setusershell()
8048         when __CYGWIN__ is defined.
8049         * libc/sys/cygwin/sys/utmp.h: Add prototypes for login_tty() and
8050         logwtmp().
8051
8052 2001-11-01  Arati Dikey  <aratidikey@hotmail.com>
8053
8054         * libm/mathfp/sf_isinf.c (isinff): Change to use _DEFUN macro.
8055         [_DOUBLE_IS_32BITS](isinf): New function that calls isinff.
8056         * libm/mathfp/sf_isnan.c (isnanf): Change to use _DEFUN macro.
8057         [_DOUBLE_IS_32BITS](isnan): New function that calls isnanf.
8058
8059 2001-10-24  Christopher Faylor  <cgf@redhat.com>
8060
8061         * libc/stdio/fseek.c: Reset pointer to buffer base
8062         when forced to seek outside of current buffer contents.
8063         This prevents the code from erroneously thinking there is
8064         anything in the current buffer.
8065
8066 2001-10-22  Geoffrey Keating  <geoffk@redhat.com>
8067
8068         * libc/include/math.h: The C++ standard adds the single-precision
8069         versions of the elementary functions.
8070
8071 2001-10-22  Christopher Faylor  <cgf@redhat.com>
8072
8073         * libc/posix/execvp.c: Remove obsolete CYGWIN32 considerations
8074         throughout.
8075         * signal.h: Change comment to reflect __CYGWIN__ rather than __CYGWIN32__.
8076         * popen.c (popen): Use __CYGWIN_ rather than __CYGWIN32__.
8077         * system.c (_system_r): Ditto.
8078
8079 2001-10-17  Corinna Vinschen  <corinna@vinschen.de>
8080
8081         * libc/include/sys/unistd.h: Add prototype for fchdir() when
8082         __CYGWIN__ or __rtems__ is defined.
8083
8084 2001-10-01  Charles Wilson  <cwilson@ece.gatech.edu>
8085
8086         * libc/include/stdlib.h: add declarations for
8087         _strtoull_r, _strtoll_r, strtoull, and strtoll.
8088         * libc/stdio/local.h: remove declarations of
8089         __strtoull_r and __strtoll_r.
8090         * libc/stdio/vfscanf.c(__svfscanf_r): call
8091         _strtoull_r instead of __strtoull_r. Ditto
8092         _strtoll_r vs. __strtoll_r.
8093         * libc/stdlib/Makefile.am: add new files to
8094         .c list and .def list
8095         * libc/stdlib/Makefile.in: regenerate
8096         * libc/stdlib/strtoll_r.c: rename __strtoll_r
8097         as _strtoll_r
8098         * libc/stdlib/strtoull_r.c: rename __strtoull_r
8099         as _strtoull_r
8100         * libc/stdlib/strtoull.c: new file
8101         * libc/stdlib/strtoll.c: new file
8102
8103 Mon Sep 17 17:29:47 2001  Christopher Faylor <cgf@cygnus.com>
8104
8105         * libc/include/process.h: Add getpid() declaration.
8106
8107 2001-09-14  Nick Clifton  <nickc@cambridge.redhat.com>
8108
8109         * libc/sys/arm/crt0.S: Add calls to _init and _fini (via atexit)
8110         for new style arm/elf ctor/dtor handling.
8111         Minor formatting tidy up.
8112
8113 2001-09-13  Jeff Johnston  <jjohnstn@redhat.com>
8114
8115         * libc/stdlib/Makefile.am: Add support to build strtoll_r.c
8116         and strtoull_r.c.
8117         * libc/stdlib/Makefile.in: Regenerated.
8118         * libc/stdlib/strtoll_r.c: New file.
8119         * libc/stdlib/strtoull_r.c: New file.
8120         * libc/stdio/local.h: Add prototypes for long long string
8121         conversion routines.
8122         * libc/stdio/vfscanf.c (__svfscanf_r): Add optional long long support
8123         tied to %L integer conversion specifier.
8124
8125 Thu Sep 13 08:49:49 2001  Jason Tishler <jason@tishler.net>
8126
8127         * strftime.c (strftime): Fix "%W" implementation to properly handle
8128         Mondays too.
8129
8130 2001-09-07  Jeff Law  <law@redhat.com>
8131
8132         * libc/sys/h8300hms/crt0.S: For H8/300H and H8/S, load address of
8133         __fini with "mov.l" instead of "mov.w".
8134
8135 2001-09-05  Corinna Vinschen  <corinna@vinschen.de>
8136
8137         * libc/sys/cygwin/include/unistd.h: New file, wrapping sys/unistd.h
8138         and getopt.h.
8139
8140 2001-09-04  Jason Merrill  <jason_merrill@redhat.com>
8141
8142         * libc/sys/h8300hms/crt0.S: Support ELF initialization.
8143
8144 2001-09-03  Corinna Vinschen  <corinna@vinschen.de>
8145
8146         * libc/sys/cygwin/sys/dirent.h (struct dirent): Add version number
8147         field.
8148         (__DIRENT_VERSION): New define.
8149
8150 2001-09-03  Corinna Vinschen  <corinna@vinschen.de>
8151
8152         * libc/sys/cygwin/sys/dirent.h (struct dirent): Add `d_fd' member.
8153         Shrink __d_reserved accordingly to keep structure size.
8154         (dirfd): Declare external.
8155
8156 2001-08-29  Joel Sherrill <joel@OARcorp.com>
8157
8158         * libc/include/sys/unistd.h: Prototype chroot() for RTEMS.
8159
8160 2001-08-29  Ralf Corsepius <corsepiu@faw.uni-ulm.de>
8161
8162         * libc/machine/i386/f_atan2.S, libc/machine/i386/f_atan2f.S,
8163           libc/machine/i386/f_exp.c, libc/machine/i386/f_expf.c,
8164           libc/machine/i386/f_frexp.S, libc/machine/i386/f_frexpf.S,
8165           libc/machine/i386/f_ldexp.S, libc/machine/i386/f_ldexpf.S,
8166           libc/machine/i386/f_log.S, libc/machine/i386/f_log10.S,
8167           libc/machine/i386/f_log10f.S, libc/machine/i386/f_logf.S,
8168           libc/machine/i386/f_pow.c, libc/machine/i386/f_powf.c,
8169           libc/machine/i386/f_tan.S, libc/machine/i386/f_tanf.S:
8170         Add conditional compilation to avoid HW FPU instructions
8171         when compiled for soft-float.
8172
8173 2001-08-29  Jeff Johnston  <jjohnstn@redhat.com>
8174
8175         * Makefile.am: Add check for ln failing when creating libg.a
8176         so that cp gets used as a backup.
8177         * Makefile.in: Regenerated.
8178
8179 2001-08-29  Jeff Johnston  <jjohnstn@redhat.com>
8180
8181         * libc/include/sys/reent.h: Add include of <sys/_types.h>.
8182         No longer include time.h.  Add struct __tm to use for
8183         _localtime_buf in the reentrant structure.  Add a
8184         _NULL definition to use in initializing the reentrant struct.
8185         * libc/include/sys/config.h: For CYGWIN32 and RTEMS, change
8186         the _READ_WRITE_RETURN_TYPE to _ssize_t which is found in
8187         <sys/_types.h>.
8188         * libc/include/sys/unistd.h: Include <sys/_types.h>.
8189         * libc/time/lcltime.c (localtime): Cast the reentrant struct
8190         _localtime_buf to be struct tm *.
8191
8192 Wed Aug 29 14:17:38 2001  J"orn Rennecke <amylaar@redhat.com>
8193
8194         * configure.host (h8300-*-elf*, h8500-*-elf*): New cases.
8195         * libc/sys/h8300hms/crt1.c (__main): Don't reference __ctors /
8196         __ctors_end.
8197         * libc/sys/h8300hms/syscalls.c: Include errno.h.
8198         (_unlink): New stub function.
8199
8200 Sat Aug 25 22:22:25 2001  Christopher Faylor <cgf@cygnus.com>
8201
8202         * libc/include/sys/errno.h: Add a cautionary comment.
8203
8204 2001-08-21  Jeff Johnston  <jjohnstn@redhat.com>
8205
8206         * libc/stdlib/mallocr.c [!defined(MALLOC_ALIGNMENT)]: Add conditional
8207         for SIZE_SZ so that alignment ends up a minimum of 8.
8208
8209 Mon Aug 13 22:26:01 2001  Christopher Faylor <cgf@cygnus.com>
8210
8211         * libc/include/machine/setjmp.h: Protect sigsetjmp/siglongjmp macro
8212         arguments.
8213
8214         * libc/include/sys/errno.h: Declare sys_errlist and sys_nerr, under
8215         Cygwin.
8216
8217 2001-08-13  Jeff Johnston  <jjohnstn@redhat.com>
8218
8219         * libc/include/malloc.h (M_MXFAST, M_NLBLKS, M_GRAIN, M_KEEP): New
8220         macro constants for mallopt options.
8221         (M_TRIM_THRESHOLD, M_TOP_PAD, M_MMAP_THRESHOLD, M_MMAP_MAX): Ditto.
8222
8223 2001-08-02  Jeff Johnston  <jjohnstn@redhat.com>
8224
8225         * libc/include/stdio.h (BUFSIZ): Define to __BUFSIZ__ if provided,
8226         otherwise default.
8227
8228 2001-07-12  Aldy Hernandez  <aldyh@redhat.com>
8229
8230         * libc/machine/mips/setjmp.S: Allow mips16 and mips64 to coexist.
8231
8232 2001-06-27  Nick Clifton  <nickc@cambridge.redhat.com>
8233
8234         * libc/include/machine/ieeefp.h (__IEEE_BYTES_LITTLE_ENDIAN):
8235         Define for little endian ARMs.
8236
8237         * libc/stdlib/mprec.h (Storeinc): Use little endian version if
8238         __IEEE_BYTES_LITTLE_ENDIAN is defined.
8239
8240 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
8241
8242         * /libc/include/ctype.h (is* and to* macros): Do not define if C++.
8243
8244 2001-06-11  Egor Duda  <deo@logos-m.ru>
8245
8246         * libc/ctype/ctype_.c: When compiled with gcc on platforms
8247         with signed char, make _ctype_[-128] ... _ctype[-1] refer to
8248         initialized memory region. Platform can define COMPACT_CTYPE
8249         to avoid allocation of the additional 128 bytes of data.
8250         Add pointer to _ctype_ array. Always initialize all _ctype_
8251         array elements.
8252
8253 2001-06-08  Jonathan Larmour  <jlarmour@redhat.com>
8254
8255         * libc/stdlib/mbtowc_r.c (_mbtowc_r): Avoid dereferencing
8256         NULL pointer.
8257
8258 2001-05-28  Nick Clifton  <nickc@cambridge.redhat.com>
8259
8260         * libc/stdio/vfprintf.c (_VFPRINTF_R): Handle printf ("%#.0o",0)
8261
8262 2001-05-25  Nick Clifton  <nickc@cambridge.redhat.com>
8263
8264         * libc/machine/xscale/memcmp.c: Fix bug when both pointers have
8265         matching, non-word alignment, and the length is <= 4 but more than
8266         enough to move them over a word boundary.
8267         Add comments explaining what each instruction does.
8268
8269 Mon May  7 20:39:25 2001  Christopher Faylor <cgf@cygnus.com>
8270
8271         * libc/include/sys/stat.h: Revert March 3, Cygwin change.
8272         * libc/include/sys/unistd.h: Ditto.
8273
8274 2001-05-04  Earnie Boyd  <earnie@users.sourceforge.net>
8275
8276         * libc/string/strrchr.c: Use strchr for the speed improvements.
8277
8278 2001-05-01  Jeff Johnston  <jjohnstn@redhat.com>
8279
8280         * libc/stdio/findfp (__sinit)[HAVE_FCNTL]: For platforms that have
8281         real file systems, let __smakebuf() determine if line buffering
8282         should be used for stdout.
8283
8284 2001-04-27  Jeff Johnston  <jjohnstn@redhat.com>
8285
8286         * libc/stdio/vfscanf.c (__svfscanf_r): Initialize new_exp local var.
8287
8288 2001-04-27  Jeff Johnston  <jjohnstn@redhat.com>
8289
8290         * libc/include/stdlib.h: Add prototype for _strtod_r.
8291
8292 2001-04-24  Charles Wilson  <cwilson@ece.gatech.edu
8293
8294         * libc/stdio/vprintf.c (vprintf): fix signature to use _DEFUN
8295         * libc/stdio/vprintf.c (_vprintf_r): new function
8296         * libc/stdio/vsnprintf.c (vsnprintf): fix signature to use _DEFUN
8297         * libc/stdio/vsnprintf.c (_vsnprintf_r): fix signature to use
8298         _DEFUN, and call _vfprintf_r, not vfprintf.
8299         * libc/stdio/vsprintf.c (vsprintf.c): fix signature to use _DEFUN
8300         * libc/stdio/vsprintf.c (_vsprintf_r): fix signature to use
8301         _DEFUN, and call _vfprintf_r, not vfprintf.
8302
8303 2001-04-22  Earnie Boyd  <earnie@users.sourceforge.net>
8304   
8305         * libc/include/sys/unistd.h [X_OK]: Use better protection against
8306         Cygwin X_OK definitions in sys/file.h.
8307
8308 Fri Apr 20 23:17:51 2001  Christopher Faylor <cgf@cygnus.com>
8309
8310         * libc/include/sys/time.h: Define timercmp and other macros for
8311         __CYGWIN__, too.
8312
8313 2001-04-20  Jeff Johnston  <jjohnstn@redhat.com>
8314         
8315         * acinclude.m4: Added --enable-malloc-debugging configure flag.
8316         * configure.host: For Cygwin specify -DMALLOC_PROVIDED if
8317         --enable-malloc-debugging selected.
8318         * aclocal.m4 configure: Regenerated.
8319           libm/aclocal.m4 libm/configure: Ditto.
8320         * libc/aclocal.m4 libc/configure: Ditto.
8321         * libc/machine/aclocal.m4 libc/machine/configure: Ditto.
8322         * libc/machine/*/aclocal.m4 libc/machine/*/configure: Ditto.
8323         * libc/sys/aclocal.m4 libc/sys/configure: Ditto.
8324         * libc/sys/*/aclocal.m4 libc/sys/*/configure: Ditto.
8325         * doc/aclocal.m4 doc/configure: Ditto.
8326
8327 2001-04-20  Jeff Johnston  <jjohnstn@redhat.com>
8328
8329         * libc/include/stdio.h[!_REENT_ONLY]: Moved various functions together
8330         into one list.
8331         [!__STRICT_ANSI__]: Moved non-ANSI I/O functions in this list.
8332         (vfscanf, vscanf, vsscanf, _vfscanf_r, _vscanf_r, _vsscanf_r): New
8333         function prototypes.
8334         (_fscanf_r, _sscanf_r): Ditto.
8335         * libc/include/stdlib.h: Added _strtod_r prototype.
8336         * libc/stdio/Makefile.am: Add new v*scanf functions.
8337         * libc/stdio/Makefile.in: Regenerate.
8338         * libc/stdio/fscanf.c: Reorganized so HAVE_STDC only affects prototype
8339         and code is shared.  Added reentrant _fscanf_r which calls __svfscanf_r.
8340         * libc/stdio/scanf.c: Changed to call __svfscanf_r.
8341         * libc/stdio/sscanf.c: Changed documentation to add reentrant routines.
8342         (sscanf): Changed to call __svfscanf_r with _REENT argument.
8343         (_sscanf_r): New routine.
8344         * libc/stdio/local.h: Removed __svfscanf prototype and replaced it
8345         with __svfscanf_r prototype.
8346         * libc/stdio/vfscanf.c (vfscanf, _vfscanf_r: New
8347         routines.
8348         (__svfscanf_r): Reentrant version of __svfscanf which takes reetrancy
8349         structure as argument as calls reentrant versions of helper functions
8350         (e.g. _strtol_r, _strtoul_r). Also replaced calls to atol and atof
8351         to _strtol_r and _strtod_r respectively.
8352         * libc/stdio/vfscanf.c: Also changed __svfscanf to call __svfscanf_r.
8353         * libc/stdlib/strtod.c (strtod): Changed to call _strtod_r with
8354         _REENT argument.
8355         * libc/stdio/vscanf.c: New file.
8356         * libc/stdio/vsscanf.c: Ditto.
8357
8358 2001-04-19  Robert Collins  <rbtcollins@hotmail.com>
8359
8360         * include/time.h[__CYGWIN__]:  Define tzname to _tzname if not defined.
8361         Define daylight to _daylight if it is not defined
8362         Prepare a variable export of timezone based on timezonevariable. 
8363         (Cannot be used with the timezone() function.)
8364
8365 2001-04-17  Stephen L. Moshier  <moshier@moshier.ne.mediaone.net>
8366
8367         * newlib/libm/math/ef_asin.c (pio2_hi, pio2_lo, pio4_hi):
8368          Correct the numerical values.
8369
8370 2001-04-13  Robert Collins <rbtcollins@hotmail.com>
8371
8372         * libc/include/sys/unistd.h: Add pthread_atfork (Cygwin only).
8373
8374 Thu Apr 12 23:11:00 2001  Corinna Vinschen <corinna@vinschen.de>
8375
8376         * libc/include/sys/errno.h: Add ECASECLASH to indicate case clash
8377         on case insensitve file systems.
8378
8379 2001-04-12  Robert Collins <rbtcollins@hotmail.com>
8380
8381         * libc/include/sys/features.h: Add appropriate defines for Cygwin
8382         pthread support.
8383         * libc/include/sys/signal.h: Remove unneeded __CYGWIN__ protection.
8384         * libc/include/sys/types.h: Protect __CYGWIN__ from the rtems pthreads
8385         types.  Include <cygwin/types.h> for the cygwin specific typedefs.
8386
8387 2001-04-04  Richard Sandiford  <rsandifo@redhat.com>
8388
8389         * libc/include/machine/ieeefp.h: Comment about new configuration
8390         macros _FLT_LARGEST_EXPONENT_IS_NORMAL and _FLT_NO_DENORMALS.
8391         * libm/common/fdlib.h: Define new macros for testing floats.
8392         * libm/common/sf_*: Use them.
8393         * libm/math/ef_*: Likewise.
8394         * libm/math/sf_*: Likewise.
8395
8396 2001-03-29  Jeff Johnston  <jjohnstn@redhat.com>
8397
8398         * libc/sys/arm/setjmp.S: Added .code 16 specifier for thumb-mode
8399         prolog to by-pass possible assembler error.
8400
8401 2001-03-21  Egor Duda  <deo@logos-m.ru>
8402
8403         Allow building internal stubs for non-reentrant syscalls
8404         if target provides its own malloc
8405         * libc/reent/reent.c (errno): Move definition here.
8406         * libc/reent/sbrkr.c: From here.
8407
8408 2001-03-20  Danny Smith <dannysmith@users.sourceforge.net>
8409
8410         * libc/include/sys/types.h (BSD int typedefs): Guard with
8411         _BSDTYPES_DEFINED rather than _WINSOCK_H.
8412         (fd_set): Add !defined __USE_W32_SOCKETS to guard; define
8413         _SYS_TYPES_FD_SET.
8414         * libc/include/sys/unistd.h (gethostname): Don't declare if defined
8415         (_WINSOCK_H) || defined (__USE_W32_SOCKETS).
8416
8417 Sat Mar 17 18:30:00 2001  Corinna Vinschen <corinna@vinschen.de>
8418
8419         * libc/include/sys/unistd.h: Add _PC_POSIX_PERMISSONS and
8420         _PC_POSIX_SECURITY constants for Cygwin.
8421
8422 Wed Mar 14  9:34:00 2001  Corinna Vinschen <corinna@vinschen.de>
8423
8424         * libc/sys/cygwin/crt0.c: Add copyright hint.
8425         * libc/sys/cygwin/sys/dirent.h: Ditto.
8426         * libc/sys/cygwin/sys/param.h: Ditto.
8427         * libc/sys/cygwin/sys/utime.h: Ditto.
8428         * libc/sys/cygwin/sys/utmp.h: Ditto.
8429
8430 2001-03-13  Alexandre Oliva  <aoliva@redhat.com>
8431
8432         * libc/stdio/vfprintf.c (QUADINT) [_NO_LONGLONG]: Make it
8433         equivalent to LONGINT.
8434
8435 2001-03-08  Richard Sandiford  <rsandifo@redhat.com>
8436
8437         * (libc/include/machine/setjmp.h): Use 23 long long ints for a
8438         jmpbuf on MIPS64 targets.
8439         * (libc/machine/mips/setjmp.S): Add MIPS64 version.
8440
8441 Wed Mar  7 16:02:07 2001  Christopher Faylor <cgf@cygnus.com>
8442
8443         * libc/include/sys/config.h: Use ssize_t for Cygwin read/write 
8444           declarations.
8445
8446 Mon Mar  5 21:48:54 2001  J"orn Rennecke <amylaar@redhat.com>
8447
8448         * libc/include/sys/config.h (_READ_WRITE_RETURN_TYPE): Define.
8449         For RTEMS, define to be ssize_t.  Default to int if not defined.
8450         * libc/stdio/sscanf.c (eofread): Return _READ_WRITE_RETURN_TYPE.
8451         * libc/stdio/stdio.c (__sread, __swrite): Likewise.
8452         * libc/stdio/local.h (__sread, __swrite): Likewise.
8453         * libc/include/sys/reent.h (_read, _write): Likewise.
8454         * libc/include/sys/unistd.h (read, write, _read, _write): Likewise.
8455         * libc/syscalls/sysread.c (read): Likewise.
8456         * libc/syscalls/syswrite.c (write): Likewise.
8457
8458 2001-03-05  Jeff Johnston  <jjohnstn@redhat.com>
8459
8460         * libc/time/mktime.c: Add L suffix to _SEC_IN_xxxx constants.
8461
8462 Sat Mar  3 00:34:14 2001  Christopher Faylor <cgf@cygnus.com>
8463
8464         * libc/include/sys/stat.h: Use special defines for executable stat bits
8465         when compiling for Cygwin.
8466         * libc/include/sys/unistd.h: Use special define for X_OK when compiling
8467         for Cygwin.
8468
8469 2001-03-02  Jeff Johnston  <jjohnstn@redhat.com>
8470
8471         * libc/string/strtok.c: Add #undef of __STRICT_ANSI__ so prototype
8472         of strtok_r is always defined.
8473
8474 2001-03-02  Jeff Johnston  <jjohnstn@redhat.com>
8475
8476         * libc/include/machine/ansi.h: New dummy header file.
8477
8478 2001-02-22  Jeff Johnston  <jjohnstn@redhat.com>
8479
8480         * libc/include/machine/setjmp-dj.h: With DJ Delorie's permission,
8481         changed the copyright information to allow free modification of the
8482         file with no reference to "copying.dj".
8483         * libc/include/sys/stat-dj.h: Ditto.
8484         * libc/machine/i386/setjmp.S: Ditto.
8485         * libc/sys/h8300hms/sys/file.h: Ditto.
8486         * libc/sys/sysmec/access.c: Ditto.
8487         * libc/sys/sysnecv850/access.c: Ditto.
8488         * libc/stdio/mktemp.c: Fixed typo for the word copyright.
8489         * libc/stdlib/getenv_r.c: Ditto.
8490         * libc/stdlib/putenv_r.c: Ditto.
8491         * libc/stdlib/setenv_r.c: Ditto.
8492         * libc/stdlib/getenv.c: Removed DJ reference since any possible
8493         modifications will now be in the _r version of this file.
8494         * libc/stdlib/putenv.c: Ditto.
8495         * libc/stdlib/setenv.c: Ditto.
8496         * libc/sys/go32/copying.dj: Removed DJ's address which is no longer
8497         valid.  Added a reference to DJ's web page that contains his address.
8498         * libc/sys/go32/*.s: Removed references to DJ's old address.
8499         * libc/sys/go32/*.c: Ditto.
8500         * libc/sys/go32/*.h: Ditto.
8501         * libc/sys/go32/*.S: Ditto.
8502         * libc/sys/go32/sys/*.h: Ditto.
8503
8504 2001-02-21  Jeff Johnston  <jjohnstn@redhat.com>
8505
8506         * libc/stdio/fdopen.c (fdopen): Protect calls to _fcntl() with
8507         HAVE_FCNTL flag check.
8508         * configure.host: Define HAVE_FCNTL for Cygwin, go32, RTEMS, sparc64,
8509         powerpcle, x86 netware, x86 sco, x86 Linux and Vxworks.
8510
8511 Thu Feb 15 01:39:51 2001  Christopher Faylor <cgf@cygnus.com>
8512
8513         * libc/include/sys/signal.h: Always include sys/types.h under Cygwin.
8514
8515 2001-02-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
8516
8517         * libc/include/stdlib.h: Add declarations of rand48 functions and
8518         their reentrant versions.
8519         * libc/include/sys/reent.h: Move macros from rand48.h. Add
8520         struct _rand48 for shared parameters of rand48 functions.
8521         (struct _reent): Add a variable _r48 of struct _rand48.
8522         (_REENT_INIT): Add _r48 initialization.
8523         * libc/stdlib/Makefile.am (lib_a_SOURCES): Add rand48 functions.
8524         (CHEWOUT_FILES): Add rand48.def.
8525         * libc/stdlib/Makefile.am: Add dependencies for rand48 functions.
8526         * libc/stdlib/Makefile.in: Regenerated.
8527         * libc/stdlib/drand48.c (drand48, _drand48_r): Derived from the
8528         NetBSD C library.
8529         * libc/stdlib/erand48.c (erand48, _erand48_r): Ditto.
8530         * libc/stdlib/jrand48.c (jrand48, _jrand48_r): Ditto.
8531         * libc/stdlib/lcong48.c (lcong48, _lcong48_r): Ditto.
8532         * libc/stdlib/lrand48.c (lrand48, _lrand48_r): Ditto.
8533         * libc/stdlib/mrand48.c (mrand48, _mrand48_r): Ditto.
8534         * libc/stdlib/nrand48.c (nrand48, _nrand48_r): Ditto.
8535         * libc/stdlib/seed48.c (seed48, _seed48_r): Ditto.
8536         * libc/stdlib/srand48.c (srand48, _srand48_r): Ditto.
8537         * libc/stdlib/rand48.c (__dorand48): Ditto.
8538         * libc/stdlib/rand48.h: Ditto, and modify declarations of global
8539         parameters into macros referring them in the reentrant structure.
8540
8541 2001-02-12  Jeff Johnston  <jjohnstn@redhat.com>
8542
8543         * libc/include/sys/stat.h: Add mknod for Cygwin now that
8544         Cygwin definition has correct prototype.
8545
8546 2001-02-08  Jeff Johnston  <jjohnstn@redhat.com>
8547
8548         * libc/include/sys/stat.h: Must revert change for mknod
8549         for CYGWIN until winsup/cygwin/syscalls.cc changes mknod
8550         prototype.
8551
8552 2001-02-08  Jeff Johnston  <jjohnstn@redhat.com>
8553
8554         * libc/include/stdio.h: Revert putw prototype.
8555
8556 2001-02-08  Edward M. Lee  <tailbert@yahoo.com>
8557
8558         * libc/include/grp.h: add prototype for initgroups.
8559         * libc/include/stdio.h: fix prototype for putw.
8560         * libc/include/sys/signal.h: add prototype for killpg.
8561         * libc/include/sys/stat.h: enable mknod/lstat for CYGWIN.
8562         * libc/include/sys/unistd.h: add prototypes for getpgid, setpgrp,
8563         vhangup and remove duplicate sysconf prototype.
8564
8565 2001-02-07  Jeff Johnston  <jjohnstn@redhat.com>
8566
8567         * libc/sys/rtems/sys/types.h: Removed.
8568
8569 2001-02-05  Charles Wilson  <cwilson@ece.gatech.edu>
8570
8571         * libc/include/locale.h: add LC_MESSAGES definition
8572
8573 2001-02-01  Alexandre Oliva  <aoliva@redhat.com>
8574
8575         * libc/sys/sh/sys/syscall.h (SYS_get_argc, SYS_get_argN_len,
8576         SYS_get_argN):
8577         * libc/sys/sh/syscalls.c (__setup_argv_for_main,
8578         __setup_argv_and_call_main): New.
8579
8580 2001-01-31  Jeff Johnston  <jjohnstn@redhat.com>
8581
8582         * libc/include/stdio.h (FILENAME_MAX): Changed to use __FILENAME_MAX__
8583         if defined.
8584         (FOPEN_MAX): Changed to use __FOPEN_MAX__ if defined.
8585         (L_tmpnam): Changed to use __L_tmpnam__ if defined.
8586         * libc/include/sys/config.h: Changed to set __FILENAME_MAX__
8587         appropriately for Cygwin and RTEMS so not to exceed PATH_MAX.
8588
8589 Mon Jan 29 23:03:06 2001  Christopher Faylor <cgf@cygnus.com>
8590
8591         * libc/stdlib/mallocr.c: Undefine windows preprocessor variables when
8592         compiling under Cygwin.
8593
8594 2001-01-29  Jeff Johnston  <jjohnstn@redhat.com>
8595
8596         * libc/include/math.h (signgam): Change to errno-like solution
8597         using a function to return the address of the real signgam.
8598         * libc/reent/signgam.c: New file containing __signgam().
8599         * libc/reent/Makefile.am: Added signgam.c to list of files.
8600         * libc/reent/Makefile.in: Regenerated.
8601
8602 2001-01-25  Alexandre Oliva  <aoliva@redhat.com>
8603
8604         * libc/sys/sh/syscalls.c (_times): New.
8605
8606         * configure.host (sh*-*-*): Add -DHAVE_GETTIMEOFDAY to newlib_cflags.
8607         * libc/sys/sh/syscalls.c (_gettimeofday): New.
8608
8609 2001-01-23  Jeff Johnston  <jjohnstn@redhat.com>
8610
8611         * libc/include/math.h (signgam): Regress previous fix as
8612         it does not handle programs with extern int signgam in them.
8613
8614 2001-01-23  Jeff Johnston  <jjohnstn@redhat.com>
8615
8616         * libc/include/math.h (signgam): Changed to a macro refering to
8617         its location in the reentrant structure.
8618
8619 2001-01-23  Jeff Johnston  <jjohnstn@redhat.com>
8620
8621         * libc/stdio/vfprintf.c (_VFPRINTF_R): Modification to fix
8622         that suppressed . for %.0f, 0.1.  Check now looks if there
8623         are padding zeroes (expt) in addition to any digits (ndig) to
8624         print.
8625
8626 2001-01-18  Jeff Johnston  <jjohnstn@redhat.com>
8627
8628         * libc/sys/arc/Makefile.am: New file.
8629         * libc/sys/arc/Makefile.in: Ditto.
8630         * libc/sys/arc/aclocal.m4: Ditto.
8631         * libc/sys/arc/configure: Ditto.
8632         * libc/sys/arc/configure.in: Ditto.
8633         * libc/sys/arc/crt0.S: Ditto.
8634         * libc/sys/arc/isatty.c: Ditto.
8635         * libc/sys/arc/mem-layout.c: Ditto.
8636         * libc/sys/arc/sbrk.c: Ditto.
8637         * libc/sys/arc/syscalls.c: Ditto.
8638         * libc/sys/arc/sys/syscall.h: Ditto.
8639
8640 Wed Jan 17 23:20:56 2001  Christopher Faylor <cgf@cygnus.com>
8641
8642         * libc/include/sys/unistd.h: Use correct declaration for setdtablesize.
8643
8644 Fri Jan 12 00:34:31 2001  Christopher Faylor <cgf@cygnus.com>
8645
8646         * libc/include/sys/signal.h: Add some SA_* defines for Cygwin.
8647
8648 Thu Jan 11 20:42:06  2001  Earnie Boyd  <earnie_boyd@yahoo.com>
8649
8650         * libc/include/sys/features.h: __CYGWIN__ preferred over __CYGWIN32__
8651
8652 2001-01-09  Nick Clifton  <nickc@redhat.com>
8653
8654         * configure.host (v859): Remove unsupported compiler options.
8655
8656 Fri Jan  5 19:57:00 EST 2001  Aaron J. Grier  <aaron@frye.com>
8657
8658         * src/newlib/configure.host (*-*-rtems*): add printf long long
8659         support for RTEMS.
8660
8661 2000-12-19  Graham Stott <grahams@redhat.com>
8662
8663         * libc/machine/xscale/memcmp.c (memcmp): Add clobber for "lr".
8664
8665 Wed Dec 14  Jeff Johnston  <jjohnstn@redhat.com>
8666
8667         * configure.host: Turn on long double I/O for Cygwin.
8668
8669 Wed Dec 14  Jeff Johnston  <jjohnstn@redhat.com>
8670
8671         * MAINTAINERS: Removed Ranjith.
8672         * NEWS: Updated for 1.9.0.
8673         * README: Updated.
8674         * acinclude.m4: Updated to release 1.9.0.
8675         * aclocal.m4 configure
8676           doc/aclocal.m4 doc/configure libc/aclocal.m4 libc/configure
8677           libc/machine/aclocal.m4 libc/machine/configure
8678           libc/machine/a29k/aclocal.m4 libc/machine/a29k/configure
8679           libc/machine/arm/aclocal.m4 libc/machine/arm/configure
8680           libc/machine/d10v/aclocal.m4 libc/machine/d10v/configure
8681           libc/machine/d30v/aclocal.m4 libc/machine/d30v/configure
8682           libc/machine/fr30/aclocal.m4 libc/machine/fr30/configure
8683           libc/machine/h8300/aclocal.m4 libc/machine/h8300/configure
8684           libc/machine/h8500/aclocal.m4 libc/machine/h8500/configure
8685           libc/machine/hppa/aclocal.m4 libc/machine/hppa/configure
8686           libc/machine/i386/aclocal.m4 libc/machine/i386/configure
8687           libc/machine/i960/aclocal.m4 libc/machine/i960/configure
8688           libc/machine/m32r/aclocal.m4 libc/machine/m32r/configure
8689           libc/machine/m68k/aclocal.m4 libc/machine/m68k/configure
8690           libc/machine/m88k/aclocal.m4 libc/machine/m88k/configure
8691           libc/machine/mips/aclocal.m4 libc/machine/mips/configure
8692           libc/machine/mn10200/aclocal.m4 libc/machine/mn10200/configure
8693           libc/machine/mn10300/aclocal.m4 libc/machine/mn10300/configure
8694           libc/machine/necv70/aclocal.m4 libc/machine/necv70/configure
8695           libc/machine/powerpc/aclocal.m4 libc/machine/powerpc/configure
8696           libc/machine/sh/aclocal.m4 libc/machine/sh/configure
8697           libc/machine/sparc/aclocal.m4 libc/machine/sparc/configure
8698           libc/machine/tic80/aclocal.m4 libc/machine/tic80/configure
8699           libc/machine/v850/aclocal.m4 libc/machine/v850/configure
8700           libc/machine/w65/aclocal.m4 libc/machine/w65/configure
8701           libc/machine/xscale/aclocal.m4 libc/machine/xscale/configure
8702           libc/machine/z8k/aclocal.m4 libc/machine/z8k/configure
8703           libc/sys/aclocal.m4 libc/sys/configure
8704           libc/sys/a29khif/aclocal.m4 libc/sys/a29khif/configure
8705           libc/sys/arm/aclocal.m4 libc/sys/arm/configure
8706           libc/sys/cygwin/aclocal.m4 libc/sys/cygwin/configure
8707           libc/sys/d10v/aclocal.m4 libc/sys/d10v/configure
8708           libc/sys/decstation/aclocal.m4 libc/sys/decstation/configure
8709           libc/sys/go32/aclocal.m4 libc/sys/go32/configure
8710           libc/sys/h8300hms/aclocal.m4 libc/sys/h8300hms/configure
8711           libc/sys/h8500hms/aclocal.m4 libc/sys/h8500hms/configure
8712           libc/sys/linux/aclocal.m4 libc/sys/linux/configure
8713           libc/sys/m88kbug/aclocal.m4 libc/sys/m88kbug/configure
8714           libc/sys/netware/aclocal.m4 libc/sys/netware/configure
8715           libc/sys/rtems/aclocal.m4 libc/sys/rtems/configure
8716           libc/sys/sh/aclocal.m4 libc/sys/sh/configure
8717           libc/sys/sparc64/aclocal.m4 libc/sys/sparc64/configure
8718           libc/sys/sun4/aclocal.m4 libc/sys/sun4/configure
8719           libc/sys/sysmec/aclocal.m4 libc/sys/sysmec/configure
8720           libc/sys/sysnec810/aclocal.m4 libc/sys/sysnec810/configure
8721           libc/sys/sysnecv850/aclocal.m4 libc/sys/sysnecv850/configure
8722           libc/sys/sysvi386/aclocal.m4 libc/sys/sysvi386/configure
8723           libc/sys/sysvnecv70/aclocal.m4 libc/sys/sysvnecv70/configure
8724           libc/sys/tic80/aclocal.m4 libc/sys/tic80/configure
8725           libc/sys/w65/aclocal.m4 libc/sys/w65/configure
8726           libc/sys/z8ksim/aclocal.m4 libc/sys/z8ksim/configure
8727           libm/aclocal.m4 libm/configure: Regenerated.
8728
8729 Wed Dec 13 11:52:00 2000  Corinna Vinschen <vinschen@cygnus.com>
8730
8731         * libc/include/sys/unistd.h: Add declarations for `chroot' and `getwd'
8732         when __CYGWIN__ is defined.
8733
8734 2000-12-13  Jeff Johnston  <jjohnstn@redhat.com>
8735
8736         * libc/stdlib/ldtoa.c (_ldcheck): New routine
8737         that categorizes a long double as NaN, Infinity, or other.
8738         * libc/stdio/vfprintf.c [WANT_IO_LONG_DBL](_VFPRINTF_R): Removed 
8739         isinfl and isnanl static routines which were i386-specific.  Changed 
8740         calls to the two removed routines to a single _ldcheck call.
8741         * libc/stdio/vfieeefp.h (ldieee): Fixed missing semi-colons.
8742
8743 2000-12-13  Jeff Johnston  <jjohnstn@redhat.com>
8744
8745         * Makefile.am: Fixed install-data-local target to use
8746         $(mkinstalldirs) for the installed header files to ensure
8747         the directories exist before copying.
8748         * Makefile.in: Regenerated.
8749
8750 2000-12-12  Jeff Johnston  <jjohnstn@redhat.com>
8751
8752         * libc/include/sys/unistd.h: Restored Cygwin _SC
8753         constants and moved new constants appropriately
8754         so Cygwin will build.
8755
8756 2000-12-11  Joel Sherrill <joel@OARcorp.com>
8757
8758         * Merge RTEMS specific .h files into main libc/include.
8759         * libc/sys/rtems/include/signal.h: Removed.
8760         * libc/sys/rtems/include/time.h: Removed.
8761         * libc/sys/rtems/sys/features.h: Removed.
8762         * libc/sys/rtems/sys/sched.h: Removed.
8763         * libc/sys/rtems/sys/siginfo.h: Removed.
8764         * libc/sys/rtems/sys/signal.h: Removed.
8765         * libc/sys/rtems/sys/time.h: Removed.
8766         * libc/sys/rtems/sys/times.h: Removed.
8767         definitions for time_t and clock_t since these are
8768         no longer in time.h.
8769         * libc/include/pthread.h: New file.
8770         * libc/include/sys/sched.h: New file.
8771         * libc/include/sys/features.h: New file.
8772         * libc/include/time.h: Removed duplicate definition of clock_t
8773         and time_t, get them from <sys/types.h> instead.  Add prototypes
8774         for POSIX clock and timer functionality.
8775         * libc/sys/linux/sys/types.h: Changed to include
8776         * libc/include/machine/types.h: Add _CLOCKID_T_ and _TIMER_T_.
8777         * libc/include/sys/signal.h: Add more complete set of POSIX
8778         signal functionality including real-time and threaded signals.
8779         * libc/include/sys/types.h: Add clock_t, time_t, struct
8780         timespec, and struct itimerspec.  Centralizing these makes 
8781         things cleaner.  RTEMS uses 64-bit dev_t.
8782         Added numerous primitive definitions
8783         for pthreads including macros, pthread_attr_t,
8784         pthread_mutexattr_t, pthread_condattr_t, pthread_key_t, 
8785         pthread_once_t, and pthread_t.
8786         * libc/include/sys/unistd.h: Added getlogin_r() prototype.
8787         If RTEMS follow POSIX on read(), write() and sbrk() prototype.
8788         Feature flags removed and moved to new file <sys/features.h>.
8789         Full set of POSIX sysconf() constants
8790
8791 2000-12-08  Werner Almesberger  <Werner.Almesberger@epfl.ch>
8792
8793         * configure.host: Added x86 linux target.
8794         * libc/unix/getpass.c (_PATH_PASSWD, _PASSWORD_LEN): Default
8795         definitions provided if not already defined.
8796         * libc/sys/linux/crt0.c: New file.
8797         * libc/sys/linux/Makefile.am: Ditto.
8798         * libc/sys/linux/Makefile.in: Ditto.
8799         * libc/sys/linux/aclocal.m4: Ditto.
8800         * libc/sys/linux/brk.c: Ditto.
8801         * libc/sys/linux/configure: Ditto.
8802         * libc/sys/linux/configure.in: Ditto.
8803         * libc/sys/linux/getoptlong.c: Ditto.
8804         * libc/sys/linux/ids.c: Ditto.
8805         * libc/sys/linux/inode.c: Ditto.
8806         * libc/sys/linux/io.c: Ditto.
8807         * libc/sys/linux/linux.c: Ditto.
8808         * libc/sys/linux/process.c: Ditto.
8809         * libc/sys/linux/realpath.c: Ditto.
8810         * libc/sys/linux/select.c: Ditto.
8811         * libc/sys/linux/signal.c: Ditto.
8812         * libc/sys/linux/systat.c: Ditto.
8813         * libc/sys/linux/termios.c: Ditto.
8814         * libc/sys/linux/time.c: Ditto.
8815         * libc/sys/linux/wait.c: Ditto.
8816         * libc/sys/linux/include/alloca.h: Ditto.
8817         * libc/sys/linux/include/getopt.h: Ditto.
8818         * libc/sys/linux/include/stdint.h: Ditto.
8819         * libc/sys/linux/include/unistd.h: Ditto.
8820         * libc/sys/linux/sys/cdefs.h: Ditto.
8821         * libc/sys/linux/sys/dirent.h: Ditto.
8822         * libc/sys/linux/sys/errno.h: Ditto.
8823         * libc/sys/linux/sys/fcntl.h: Ditto.
8824         * libc/sys/linux/sys/file.h: Ditto.
8825         * libc/sys/linux/sys/ioctl.h: Ditto.
8826         * libc/sys/linux/sys/resource.h: Ditto.
8827         * libc/sys/linux/sys/signal.h: Ditto.
8828         * libc/sys/linux/sys/stat.h: Ditto.
8829         * libc/sys/linux/sys/syscall.h: Ditto.
8830         * libc/sys/linux/sys/termios.h: Ditto.
8831         * libc/sys/linux/sys/time.h: Ditto.
8832         * libc/sys/linux/sys/types.h: Ditto.
8833         * libc/sys/linux/sys/utmp.h: Ditto.
8834         * libc/sys/linux/sys/utsname.h: Ditto.
8835         * libc/sys/linux/sys/wait.h: Ditto.
8836
8837 2000-12-08  Ralf Corsepius <corsepiu@faw.uni-ulm.de>
8838
8839         * Makefile.am: $(INSTALL), $(INSTALL_DATA), and $(INSTALL_PROGRAM)  
8840         can be a relative path to $(top_srcdir)/install.sh so ensure the
8841         autoconf detected settings are properly passed recursively.
8842         Similarly, add AM_MAKEFLAGS to FLAGS_TO_PASS so they also get passed
8843         properly to subdirectories.
8844         * Makefile.in: Regenerated.
8845
8846 2000-12-07  Jay Kulpinski <jskulpin@eng01.gdds.com>
8847
8848         * libc/stdio/vfprintf.c: Minor modification to avoid requiring
8849         a floating point register unless really printing a floating
8850         point number.
8851
8852 2000-12-07  Jeff Johnston  <jjohnstn@redhat.com>
8853
8854         * libc/stdlib/ldtoa.c: Removed include of alloca.h.
8855         Also removed \r's.
8856         (asctoeg): Replaced alloca call with stack array and malloc
8857         when storage exceeds reasonable limit.
8858         (e53toe): Fixed einfin calls missing ldp parameter.
8859         (eiisinf): Hide behind check for LDBL_MANT_DIG == 64.
8860
8861 2000-12-06  Jeff Johnston  <jjohnstn@redhat.com>
8862
8863
8864         * libc/stdio/vfscanf.c: Fix typo for _NO_LONGDBL macro.
8865
8866 2000-12-06  Jeff Johnston  <jjohnstn@redhat.com>
8867
8868         * libc/stdlib/Makefile.am: Added ldtoa.c to list of sources.
8869         * libc/stdlib/Makefile.in: Regenerated.
8870         * libc/stdio/floatio.h: Added suitable MAXEXP for long double.
8871         * libc/stdio/vfieeefp.h: Added long double bit structures.
8872         * libc/stdio/vfprintf.c[WANT_IO_LONG_DBL]: Added long double support.
8873         [WANT_IO_LONG_DBL](isinfl, isnanl): New static long double routines.
8874         (exponent): Changed expbuf to reasonable maximum instead of MAXEXP.
8875         * libc/stdio/vfscanf.c[WANT_IO_LONG_DBL]: Added long double support.
8876         * libc/stdlib/ldtoa.c: New file containing _ldtoa_r and
8877         _strtold routines used for conversions between character
8878         and long double.
8879
8880 Wed Dec  6 12:01:00 2000  Corinna Vinschen <vinschen@cygnus.com>
8881
8882         * libc/include/stdlib.h: Add declarations for `mkstemp' and `mktemp'.
8883
8884 2000-12-04  Joel Sherrill <joel@OARcorp.com>
8885
8886         * libc/include/machine/time.h: RTEMS systems can configure clock
8887         tick rate so use sysconf() to ask.
8888
8889 2000-12-04  Joel Sherrill <joel@OARcorp.com>
8890
8891         * libc/include/sys/times.h: Add reference to POSIX standard.
8892
8893 2000-12-04  Joel Sherrill <joel@OARcorp.com>
8894
8895         * libc/include/sys/time.h: Added BSD timer manipulation macros
8896         used by RTEMS code.
8897
8898 2000-12-04  Joel Sherrill <joel@OARcorp.com>
8899
8900         * libc/sys/rtems/crt0.c: Add stubs for functions implicitly
8901         referenced by code generated by gcc 2.8.1.
8902         (a29k): Add stubs for V_SPILL, V_FILL, V_BSD_OS, V_EPI_OS to 
8903         satisfy gcc.
8904
8905 2000-12-04  Joel Sherrill <joel@OARcorp.com>
8906
8907         * libc/stdlib/system.c: Avoid compiling do_system() for RTEMS.
8908
8909 2000-12-04  Joel Sherrill <joel@OARcorp.com>
8910
8911         * libc/include/ieeefp.h: Added entries for OpenCores CPUs.
8912
8913 2000-12-04  Joel Sherrill <joel@OARcorp.com>
8914
8915         * configure.host (or16, or32): New entries for OpenCores
8916         OpenRisc CPUs.
8917         (*-*-rtems*): Add -DNO_EXEC.
8918
8919 2000-12-04  Keith Outwater <vac4050@cae597.rsc.raytheon.com>
8920
8921         * libc/include/sys/errno.h: Added comments on many error numbers.
8922         * libc/string/strerror.c: Added some more strings.
8923
8924 2000-11-30  Jeff Johnston <jjohnstn@redhat.com>
8925
8926         * libc/sys/sh/syscalls.c (_link): New stub.
8927
8928 2000-11-29  Nick Clifton  <nickc@redhat.com>
8929
8930         * configure.host: Add xscale target.
8931         * libc/machine/xscale: New directory.
8932         * libc/machine/xscale/Makefile.am: New file.
8933         * libc/machine/xscale/Makefile.in: New file.
8934         * libc/machine/xscale/aclocal.m4: New file.
8935         * libc/machine/xscale/configure: New file.
8936         * libc/machine/xscale/configure.in: New file.
8937         * libc/machine/xscale/memchr.S: New file.
8938         * libc/machine/xscale/memcmp.S: New file.
8939         * libc/machine/xscale/memcpy.S: New file.
8940         * libc/machine/xscale/memmove.S: New file.
8941         * libc/machine/xscale/memset.S: New file.
8942         * libc/machine/xscale/strchr.S: New file.
8943         * libc/machine/xscale/strcmp.S: New file.
8944         * libc/machine/xscale/strcpy.S: New file.
8945         * libc/machine/xscale/strlen.S: New file.
8946
8947 Sat Nov 25 11:24:00 2000  Corinna Vinschen <vinschen@cygnus.com>
8948
8949         * libc/include/sys/types.h: Change i to `__i' in FD_ZERO macro to
8950         avoid compiler warnings.
8951
8952 2000-11-22  Michael Meissner  <meissner@redhat.com>
8953
8954         * libc/posix/execl.c (execl): Don't reference environ directly,
8955         reference it only via a static pointer to avoid problems with some
8956         shared library systems and with different uses of small data where
8957         the user specifies his own version of environ.
8958         * libc/posix/execv.c (execv): Ditto.
8959         * libc/stdlib/getenv_r.c (_findenv_r): Ditto.
8960         * libc/stdlib/setenv_r.c (_setenv_r,_unsetenv_r): Ditto.
8961         * libc/stdlib/system.c (system, !cygwin32 case): Ditto.
8962
8963         * libc/stdlib/getenv.c (environ): Delete unused reference to
8964         environ.
8965
8966         * libc/stdlib/getenv_r.c: Make initial comment friendlier to emacs
8967         colorization.
8968         * libc/stdlib/system.c: Ditto.
8969
8970 Tue Nov 21 20:32:21 2000  Christopher Faylor <cgf@cygnus.com>
8971
8972         * libc/sys/cygwin/sys/dirent.h: Change definition to avoid necessity of
8973         including windows headers.
8974
8975 2000-11-20  Jeff Johnston  <jjohnstn@redhat.com>
8976
8977         * libc/include/sys/unistd.h: Removed definition of MAXNAMLEN.
8978         * libc/include/dirent.h: Added definition of MAXNAMLEN if
8979         not defined by sys/dirent.h.
8980         * libc/posix/execvp.c: Added include of dirent.h to get
8981         MAXNAMLEN value which used to be in unistd.h.
8982
8983 Mon Nov  6 12:56:00 2000  Corinna Vinschen <vinschen@cygnus.com>
8984
8985         * libc/include/sys/types.h: Change type of i to `size_t' in
8986         FD_ZERO macro to avoid compiler warnings.
8987
8988 Sun Oct 29 20:06:41 2000  Christopher Faylor <cgf@cygnus.com>
8989
8990         * libc/include/stdlib.h: Avoid declaring cfree under Cygwin.
8991         * libc/include/malloc.h: Ditto.  Also remove obsolete declaration.
8992
8993 Tue Oct 24 20:16:00 2000  Corinna Vinschen <vinschen@cygnus.com>
8994
8995         * libc/include/sys/unistd.h: Add defines for sysconf values
8996         _SC_NPROCESSORS_CONF, _SC_NPROCESSORS_ONLN, _SC_PHYS_PAGES and
8997         _SC_AVPHYS_PAGES.
8998
8999 Mon Oct  9 20:26:33 2000  Christopher Faylor <cgf@cygnus.com>
9000
9001         * libc/include/sys/unistd.h: Add getdtablesize and setdtablesize
9002         declarations for __CYGWIN__.
9003
9004 2000-09-19  Geoffrey Keating  <geoffk@cygnus.com>
9005
9006         * libc/signal/signal.c (__sigtramp_r): ISO C requires
9007         case labels to be integral constant expressions, so
9008         use an if/else tree instead.
9009         (_raise_r): Likewise.
9010
9011 2000-09-13  Jeff Johnston  <jjohnstn@redhat.com>
9012
9013         * libc/machine/v850/setjmp.S: Fixed tab problems caused by
9014         clipping patch from e-mail reader.
9015
9016 2000-09-13  Will Cohen  <wcohen@redhat.com>
9017
9018         * libc/machine/v850/setjmp.S (_setjmp): Save r1 rather than r0.
9019         Added return value 0.
9020         (_longjmp): Allow longjmp to return value of second argument
9021         passed to it.
9022
9023 2000-09-06  Jeff Johnston <jjohnstn@redhat.com>
9024
9025         * libc/include/sys/types.h (FD_ZERO): Remove call to bzero and
9026         inline code to prevent having to include another header file.
9027
9028 Wed Sep  6 15:06:40 2000  Christopher Faylor <cgf@cygnus.com>
9029
9030         * Makefile.am: Fix space vs. tab problem in install-data-local.
9031         * Makefile.in: Regenerate.
9032
9033 Wed Sep  6 13:49:51 2000  Christopher Faylor <cgf@cygnus.com>
9034
9035         * libc/include/_ansi.h (_EXFUN): Define specially for __CYGWIN__.
9036         (_EXPARM): New macro for defining a function parameter.
9037         * libc/include/stdlib.h: Use _EXPARM.
9038         * libc/stdlib/mallocr.c: Don't build cfree for Cygwin.
9039
9040 2000-09-05  Manfred Hollstein  <manfredh@redhat.com>
9041
9042         * Makefile.am (install-data-local): Use optional $(DESTDIR) where
9043         required, as documented in the gnu coding standards.
9044         * Makefile.in: Regenerate.
9045
9046 2000-09-05  Jeff Johnston <jjohnstn@redhat.com>
9047
9048         * libc/include/fcntl.h (_FNDELAY): Changed to be _FNONBLOCK to
9049         make O_NDELAY and O_NONBLOCK have the same value.
9050
9051 2000-08-30  Kazu Hirata  <kazu@hxi.com>
9052
9053         * libc/sys/h8300hms/crt0.S: Optimize for both speed and code size.
9054
9055 2000-08-30  Werner Almesberger  <Werner.Almesberger@epfl.ch>
9056
9057         * libc/posix/execve.c: included unistd.h for "_execve" prototype.
9058         * libc/misc/unctrl.c libc/sys/sysvi386/crt0.c (sccsid): changed
9059         "#ifndef lint" to "#if defined(LIBC_SCCS) && !defined(lint)" like
9060         everywhere else.
9061
9062 2000-08-30  Geoffrey Keating  <geoffk@cygnus.com>
9063
9064         * libc/string/swab.c: Specify that it's defined in <unistd.h>.
9065         * libc/include/string.h: Don't include <sys/types.h>,
9066         as it causes really bad namespace pollution.  Don't declare
9067         swab(), it is properly declared in unistd.h.
9068
9069 2000-08-29  Werner Almesberger  <Werner.Almesberger@epfl.ch>
9070
9071         * libc/unix/getpwent.c (getpwnam, getpwuid, getpwent): removed
9072         (broken) support for non-existent /etc/passwd field "comment".
9073
9074 2000-08-27  Werner Almesberger  <Werner.Almesberger@epfl.ch>
9075
9076         * libc/posix/scandir.c (DIRSIZ, scandir): use struct dirent.d_namlen
9077         only if _DIRENT_HAVE_D_NAMLEN is defined.
9078         (alphasort): aligned prototype with
9079         libc/sys/cygwin/sys/dirent.h and simplified function body.
9080         * libc/posix/telldir.c (telldir): changed "telldir" prototype to
9081         long telldir (DIR *) as mentioned in annex B of POSIX.1
9082
9083 2000-08-27  Werner Almesberger  <Werner.Almesberger@epfl.ch>
9084
9085         * libc/machine/i386/i386mach.h: added SOTYPE_FUNCTION to set type
9086         of global entry points if _I386MACH_NEED_SOTYPE_FUNCTION is defined;
9087         Added __CLI and __STI macros (controlled via
9088         _I386MACH_ALLOW_HW_INTERRUPTS macro).
9089         * libc/machine/i386/f_atan2.S libc/machine/i386/f_atan2f.S
9090         libc/machine/i386/f_frexp.S libc/machine/i386/f_frexpf.S
9091         libc/machine/i386/f_ldexp.S libc/machine/i386/f_ldexpf.S
9092         libc/machine/i386/f_log.S libc/machine/i386/f_log10.S
9093         libc/machine/i386/f_log10f.S libc/machine/i386/f_logf.S
9094         libc/machine/i386/f_tan.S libc/machine/i386/f_tanf.S
9095         libc/machine/i386/memchr.S libc/machine/i386/memcmp.S
9096         libc/machine/i386/memcpy.S libc/machine/i386/memmove.S
9097         libc/machine/i386/memset.S libc/machine/i386/setjmp.S
9098         libc/machine/i386/strchr.S libc/machine/i386/strlen.S:
9099         (that's libc/machine/i386/*.S) added SOTYPE_FUNCTION(symbol)
9100         for all global entry points.
9101         * libc/machine/i386/setjmp.S: removed code replicated in
9102         libc/machine/i386/i386mach.h and included i386mach.h instead;
9103         Use __CLI and __STI instead of cli and sti.
9104
9105 2000-08-25  DJ Delorie  <dj@redhat.com>
9106
9107         * libc/include/sys/unistd.h (environ): this one isn't from the
9108         DLL, no __IMPORT
9109
9110 Fri Aug 25 13:37:11 2000  Christopher Faylor <cgf@cygnus.com>
9111
9112         * libc/stdlib/system.c (do_system): Eliminate explicit declaration of
9113         environ when compiling under cygwin since it is already declared in
9114         unistd.h.
9115
9116 2000-08-23  Werner Almesberger  <Werner.Almesberger@epfl.ch>
9117
9118         * libc/stdlib/mprec.c (ulp, b2d, d2b): changed a few expressions
9119         like  x << y-z  to the equivalent  x << (y-z).
9120         (d2b): changed if statements with assignment to perform the
9121         assignment prior to the if check.
9122         * libc/reent/reent.c: included stdlib.h for "_free_r" prototype.
9123         * libc/unix/getpass.c (getpass): moved "echo" assignment out of if.
9124         * libc/unix/ttyname.c: included string.h for "strcpy" prototype.
9125         * libc/unix/getcwd.c (ISDOT): added parentheses to clarify && and ||
9126         precedence.
9127         * libc/include/sys/unistd.h: added "vfork" prototype (for popen.c).
9128         Added "_execve" prototype (for execl.c, execle.c, execv.c, and 
9129         execve.c).
9130         * libc/posix/popen.c (popen): added parentheses to clarify && and ||
9131         precedence.
9132         * libm/math/e_cosh.c (__ieee754_cosh): changed parentheses to
9133         clarify && and || precendence (and to remove pascalism).
9134         * libm/math/e_sinh.c (__ieee754_sinh): Ditto.
9135         * libm/math/s_infconst.c: added another pair of braces to all
9136         initializers for __infinity (need three: for __infinity[1] array,
9137         for union __dmath, and for i[2]).
9138
9139 2000-08-23  Werner Almesberger  <Werner.Almesberger@epfl.ch>
9140
9141         * libc/stdlib/abort.c: changed description: uses "raise" instead of
9142         "getpid" and "kill"; added: uses "write" and "_exit".
9143         Also included unistd.h for "_exit" prototype.
9144         * libc/stdlib/system.c: included unistd.h for "execve" prototype,
9145         reent.h for "_fork_r" and "_wait_r" prototypes.
9146         (do_system): changed  extern char *environ[] to POSIX-friendly 
9147         extern char **environ.
9148         * libc/stdlib/wctomb_r.c: included string.h for "strlen" and "strcmp"
9149         prototypes.
9150         * libc/stdlib/remove.c: included reent.h for "_unlink_r" prototype.
9151         * libc/reent/execr.c: included sys/wait.h for "wait" prototype.
9152         * libc/reent/fstatr.c: included sys/stat.h for "fstat" prototype.
9153         * libc/reent/openr.c: included fcntl.h for "open" prototype.
9154         * libc/reent/signalr.c: included signal.h for "kill" prototype,
9155         unistd.h for "getpid" prototype.
9156         * libc/reent/statr.c: included sys/stat.h for "stat" prototype.
9157         * libc/reent/timer.c: included sys/time.h for "gettimeofday" prototype.
9158         * libc/unix/getut.c (utmpname): removed local, incorrect "strdup"
9159         prototype.  Also included stdlib.h for "abort", string.h for
9160         "strdup" and "strncmp" prototypes.
9161         * libc/unix/getlogin.c: included string.h for "strncmp", "memset", and
9162         "strncpy", unistd.h for "read" and "close" prototypes.
9163         * libc/posix/execvp.c: included string.h for "strchr", "strlen", and
9164         "strcat" prototypes.
9165
9166 2000-08-23  Werner Almesberger  <Wernen Almesberger@epfl.ch>
9167
9168         * libc/stdio/stdio.c (__swrite): declare "oldmode" only if it's
9169         used later (ifdef __SCLE)
9170         * libc/stdio/vfscanf.c (__svfscanf): declare "state" only if it's
9171         used later (ifdef MB_CAPABLE)
9172         * libc/string/memset.c (memset): removed unused variables "count"
9173         and "unaligned_addr"
9174         * libc/locale/locale.c (_setlocale_r): declare "lc_ctype" and
9175         "last_lc_ctype" only of they're used later (ifdef MB_CAPABLE)
9176         * libc/unix/getpwent.c (getpwnam): removed unused variables "uid"
9177         and "gid"
9178
9179 2000-08-23  Werner Almesberger  <Werner.Almesberger@epfl.ch>
9180
9181         * libc/stdlib/envlock.c: changed documented "__env_lock" and
9182         "__env_unlock" prototype from "void *" or "char *" to
9183         "struct _reent *" to match real function.  Also added include
9184         of envlock.h.
9185         * libc/stdlib/mlock.c: changed documented "__malloc_lock" and
9186         "__malloc_unlock" prototype from "void *" or "char *" to
9187         "struct _reent *" to match real function.
9188         * libc/stdlib/envlock.h: added "__env_lock" and "__env_unlock"
9189         prototypes (for getenv_r.c and setenv_r.c).
9190
9191 2000-08-22  Werner Almesberger  <Werner.Almesberger@epfl.ch>
9192
9193         * libc/unix/getut.c (utmpname): added _CONST to reflect common use
9194         and prototype in cygwin's utmp.h
9195
9196 2000-08-16  Eric Fifer  <efifer@sanwaint.com>
9197
9198         * libc/stdio/vfprintf.c (_vfprintf_r): suppress . with "%.0f", 0.1
9199
9200 2000-08-09  Nick Clifton  <nickc@cygnus.com>
9201
9202         * libc/sys/arm/setjmp.S: Recode to clean up function prologues and
9203         epilogue and to allow the functions to be used in a Thumb based
9204         toolchain.
9205
9206 2000-08-08  Jeff Johnston <jjohnstn@redhat.com>
9207
9208         * libc/stdio/snprintf.c (snprintf, _snprintf_r): Fixed code
9209         so size of 0 results in nothing being written to string.
9210         Also fixed code so that when size is non-zero, there is only
9211         a maximum of size - 1 characters written to the array and
9212         a nul terminator is appended at the end.
9213         * libc/stdio/vsnprintf.c (vsnprintf, _vsnprintf_r): Ditto.
9214
9215 2000-08-01  DJ Delorie  <dj@redhat.com>
9216
9217         * libc/include/sys/config.h: define __IMPORT appropriately
9218         * libc/include/ctype.h (_ctype_): use __IMPORT
9219         * libc/include/math.h (__infinity, signam, _LIB_VERSION): ditto
9220         * libc/include/math.h (__mb_cur_max): ditto
9221         * libc/include/time.h (_timezone, _daylight, _tzname): ditto
9222         * libc/include/unctrl.h (__unctrl, __unctrllen): ditto
9223         * libc/include/errno.h (_sys_errlist, _sys_nerr): ditto
9224         * libc/include/unistd.h (environ): ditto
9225
9226 2000-07-28  Michael Meissner  <meissner@redhat.com>
9227
9228         * libc/include/math.h (__infinity): Declare as an array without
9229         bounds to get around small data support.  Rewrite Cygwin support
9230         to be more general.
9231         * libm/math/s_infconst.c (__infinity): Ditto.
9232         * libm/mathfp/s_infconst.c (__infinity): Ditto.
9233
9234 Thu Jul 27 10:46:01 2000  Christopher Faylor <cgf@cygnus.com>
9235
9236         * libc/include/math.h: Use appropriate dll import linkage for
9237         __infinity under Cygwin.
9238
9239 2000-07-13  DJ Delorie  <dj@cygnus.com>
9240
9241         * libc/stdio/vfprintf.c: pad 0.0 correctly with %e
9242
9243 Wed Jun 28 14:08:00 2000  Keith Walker  <keith.walker@arm.com>
9244
9245         * libc/sys/arm/crt0.S (.LC30): Added missing length parameter
9246         to argument list for AngelSWI_Reason_GetCmdLine.
9247
9248 Tue Jun 27 15:49:00 2000  Marek Michalkiewicz  <marekm@linux.org.pl>
9249
9250         * configure.host: Add support for AVR target.
9251         * libc/include/machine/ieeefp.h: Likewise.
9252         * libc/include/sys/config.h: Likewise.
9253
9254 Thu Jun 22 18:35:00 2000  Ranjith Kumaran  <ranjith@cygnus.com>
9255
9256         * README: Newlib 1.8.2 must be built in a separate directory
9257         than the sources.
9258
9259 Tue Jun 20 14:30:00 2000  Jeff Johnston  <jjohnstn@cygnus.com>
9260
9261         * libc/include/sys/reent.h (_rand_next): Added __extension__
9262         qualifier as long long type is not strict ANSI.
9263         * libc/stdlib/rand.c (rand): Added __extension__ qualifier
9264         to long long constant.
9265
9266 Fri Jun 16 23:02:00 2000  Corinna Vinschen <corinna@vinschen.de>
9267
9268         * libc/include/sys/unistd.h: Add prototypes for `seteuid' and
9269         `setegid' provided by Cygwin.
9270
9271 Thu Jun 15  0:21:00 2000  Corinna Vinschen <corinna@vinschen.de>
9272
9273         * libc/stdio/fdopen.c: Take explicit given bin/textmode into
9274         account for Cygwin.
9275
9276 Fri Jun  9 14:28:00 2000  Jeff Johnston  <jjohnstn@cygnus.com>
9277
9278         * libc/include/sys/reent.h (_rand_next): Changed to
9279         unsigned long long and moved to end of _reent struct in _new union.
9280         (_REENT_INIT): Changed to move _rand_next initialization.
9281         * libc/stdlib/rand.c (rand): Changed to use unsigned long long
9282         linear congruential algorithm that is used by DJGPP.
9283
9284 Thu Jun  8 21:18:00 2000  Ranjith Kumaran  <ranjith@cygnus.com>
9285
9286         * libc/include/stdlib.h: Set RAND_MAX to __RAND_MAX.
9287         * libc/include/sys/config.h: Define __RAND_MAX.
9288
9289 Thu Jun  8 17:54:00 2000  Jeff Johnston  <jjohnstn@cygnus.com>
9290
9291         * libc/stdlib/rand_r.c: New algorithm that meets minimal
9292         standard.
9293
9294 Fri Jun  2 23:02:11 2000  Christopher Faylor <cgf@cygnus.com>
9295
9296         * libc/include/string.h: Work around problem with strsignal and gdb.
9297
9298 Tue May 30 13:13:01 2000  Christopher Faylor <cgf@cygnus.com>
9299
9300         * libc/include/ctype.h: __CYGWIN32__ -> __CYGWIN__
9301         * libc/include/malloc.h: Ditto.
9302         * libc/include/process.h: Ditto.
9303         * libc/include/stdio.h: Ditto.
9304         * libc/include/stdlib.h: Ditto.
9305         * libc/include/time.h: Ditto.
9306         * libc/include/machine/setjmp.h: Ditto.
9307         * libc/include/sys/errno.h: Ditto.
9308         * libc/include/sys/signal.h: Ditto.
9309         * libc/include/sys/stat.h: Ditto.
9310         * libc/include/sys/time.h: Ditto.
9311         * libc/include/sys/unistd.h: Ditto.
9312         * libc/include/string.h: Ditto.  strsignal should return a const char *.
9313
9314 2000-05-26  Marek Michalkiewicz  <marekm@linux.org.pl>
9315
9316         * libm/common/s_expm1.c (expm1): Add curly braces, avoid warnings.
9317         * libm/common/s_log1p.c (log1p): Likewise.
9318         * libm/common/s_scalbn.c (scalbn): Likewise.
9319         * libm/math/e_log.c: Likewise.
9320         * libm/math/e_asin.c: Likewise.
9321         * libm/math/ef_asin.c: Likewise.
9322         * libm/math/e_j0.c (pzero, qzero): Remove redundant test.
9323         * libm/math/e_j1.c (pone, qone): Likewise.
9324         * libm/math/ef_j0.c (pzerof, qzerof): Likewise.
9325         * libm/math/ef_j1.c (ponef, qonef): Likewise.
9326         * libm/mathfp/e_j0.c (pzero, qzero): Likewise.
9327         * libm/mathfp/e_j1.c (pone, qone): Likewise.
9328         * libm/mathfp/ef_j0.c (pzerof, qzerof): Likewise.
9329         * libm/mathfp/ef_j1.c (ponef, qonef): Likewise.
9330
9331 2000-05-19  DJ Delorie  <dj@cygnus.com>
9332
9333         * libc/stdio/stdio.c (__stextmode): new, see if file is text mode
9334         (__sread): always read in binary mode
9335         (__swrite): always write in binary mode
9336         * libc/include/stdio.h: no getc/putc macros for cygwin; causes
9337         compatibility issues with different dll versions
9338         * libc/stdio/fopen.c: use __stextmode
9339         * libc/stdio/fdopen.c: ditto
9340         * libc/stdio/freopen.c: ditto
9341         * libc/stdio/findfp.c: set up __SCLE for std{in,out,err}
9342         * libc/stdio/local.h: declare __stextmode
9343         
9344 2000-05-18  DJ Delorie  <dj@cygnus.com>
9345
9346         * libc/stdio/fgets.c (fgets): perform CRLF conversions if __SCLE
9347         
9348 Mon May 15 18:54:00 2000  Jeff Johnston  <jjohnstn@cygnus.com>
9349
9350         * libc/include/ctype.h: Changed tolower and toupper macros
9351         to use __extension__ to prevent pedantic warnings.
9352
9353 Mon May 15 14:26:00 2000  Joel Sherrill  <joel@oarcorp.com>
9354
9355         * libc/sys/rtems/sys/time.h: Add macros for manipulating timeval
9356         structures.
9357
9358 Wed May 10 19:24:53 2000  Jim Wilson  <wilson@cygnus.com>
9359
9360         * libc/include/machine/ieeefp.h: Add ia64 support.
9361         * configure.host: Likewise.
9362
9363 Wed May 10 13:52:24 2000  Egor Duda <deo@logos-m.ru>
9364
9365         * libc/time/asctime_r.c (asctime_r): Change output format. Day of
9366         month is now padded with space, not zero.  This now conforms to
9367         ANSI standard.
9368
9369 Wed May 03 17:57:00 2000  Corinna Vinschen <corinna@vinschen.de>
9370
9371         * libc/include/sys/errno.h: Add define for ENOSHARE ("No such
9372         host or network path") used by cygwin. Add some comments.
9373
9374 Tue May 02 23:45:48 2000  DJ Delorie  <dj@cygnus.com>
9375
9376         * libc/include/stdio.h (FILE): define __SCLE for "convert line
9377         endings" for Cygwin.
9378         (__sgetc): convert line endings if needed
9379         (__sputc): ditto
9380         * libc/stdio/fdopen.c (_fdopen_r): Remember if we opened in text mode
9381         * libc/stdio/fopen.c (_fopen_r): ditto
9382         * libc/stdio/freopen.c (freopen): ditto
9383         * libc/stdio/fread.c (fread): perform CRLF conversions if __SCLE
9384         * libc/stdio/fvwrite.c (__sfvwrite): ditto
9385
9386 Thu Apr 27 07:45:48 2000  Alexandre Oliva  <aoliva@cygnus.com>
9387
9388         * libc/machine/mn10300/setjmp.S (setjmp, longjmp): Use
9389         post-increment when it is worth it, spacewise.
9390
9391 Mon Apr 17 12:46:00 2000  Marek Michalkiewicz <marekm@linux.org.pl>
9392
9393         * libc/signal/signal.c (_signal_r) : Removed unused local variable temp.
9394         * libc/stdio/findfp.c (std): Added declaration of flags and file.
9395         * libc/stdio/mktemp.c (_gettemp, _mkstemp_r, mkstemp): Added int 
9396         return type.
9397         * libc/stdio/putchar.c (putchar): Added return statement.
9398         * libc/stdio/refill.c (lflush): Added correct parentheses.
9399         * libc/stdio/vfprintf.c (_VFPRINTF_R): Ditto.
9400         * libc/stdio/vfscanf.c (__svfscanf): Changed sprintf call which 
9401         prints long value to use l qualifier.
9402         * libc/stdlib/dtoa.c (_dtoa_r): Added parentheses to remove warning
9403         messages and initialized local values: ilim, ilim1, and spec_case.
9404         * libc/stdlib/ecvtbuf.c (print_e): Removed unused variable dp.
9405         * libc/stdlib/mbctype.h (_issjis1, _issjis2): Added parentheses.
9406         * libc/stdlib/mprec.c: Ditto.
9407         * libc/stdlib/setenv_r.c: Ditto.
9408         * libc/stdlib/strtod.c: Ditto.
9409         * libc/stdlib/strtol.c: Ditto.
9410         * libc/stdlib/strtoul.c: Ditto.
9411         * libm/common/sf_expm1.c: Added curly braces to if else clauses.
9412         * libm/common/sf_log1p.c: Ditto.
9413         * libm/common/sf_scalbn.c: Ditto.
9414         * libm/math/ef_log.c: Ditto.
9415
9416 Sun Apr 16 12:45:00 2000  Corinna Vinschen <corinna@vinschen.de>
9417
9418         * libc/posix/execvp.c (execvp): Check path for
9419         trailing slash.
9420
9421 Fri Mar 31 20:39:00 2000  Corinna Vinschen <corinna@vinschen.de>
9422
9423         * libc/include/sys/unistd.h: Add prototypes for
9424         fchmod, fchown, lchown.
9425
9426 Fri Mar 24 15:34:00 2000  Jeff Johnston  <jjohnstn@cygnus.com>
9427
9428         * acinclude.m4: Changed release to 1.8.2.
9429         * aclocal.m4 configure doc/aclocal.m4 doc/configure
9430           libc/aclocal.m4 libc/configure libc/machine/aclocal.m4
9431           libc/machine/configure libc/machine/a29k/aclocal.m4
9432           libc/machine/a29k/configure libc/machine/arm/aclocal.m4
9433           libc/machine/arm/configure libc/machine/d10v/aclocal.m4
9434           libc/machine/d10v/configure libc/machine/d30v/aclocal.m4
9435           libc/machine/d30v/configure libc/machine/fr30/aclocal.m4
9436           libc/machine/fr30/configure libc/machine/h8300/aclocal.m4
9437           libc/machine/h8300/configure libc/machine/h8500/aclocal.m4
9438           libc/machine/h8500/configure libc/machine/hppa/aclocal.m4
9439           libc/machine/hppa/configure libc/machine/i386/aclocal.m4
9440           libc/machine/i386/configure libc/machine/i960/aclocal.m4
9441           libc/machine/i960/configure libc/machine/m32r/aclocal.m4
9442           libc/machine/m32r/configure libc/machine/m68k/aclocal.m4
9443           libc/machine/m68k/configure libc/machine/m88k/aclocal.m4
9444           libc/machine/m88k/configure libc/machine/mips/aclocal.m4
9445           libc/machine/mips/configure libc/machine/mn10200/aclocal.m4
9446           libc/machine/mn10200/configure libc/machine/mn10300/aclocal.m4
9447           libc/machine/mn10300/configure libc/machine/necv70/aclocal.m4
9448           libc/machine/necv70/configure libc/machine/powerpc/aclocal.m4
9449           libc/machine/powerpc/configure libc/machine/sh/aclocal.m4
9450           libc/machine/sh/configure libc/machine/sparc/aclocal.m4
9451           libc/machine/sparc/configure libc/machine/tic80/aclocal.m4
9452           libc/machine/tic80/configure libc/machine/v850/aclocal.m4
9453           libc/machine/v850/configure libc/machine/w65/aclocal.m4
9454           libc/machine/w65/configure libc/machine/z8k/aclocal.m4
9455           libc/machine/z8k/configure libc/sys/aclocal.m4
9456           libc/sys/aclocal.m4 libc/sys/configure
9457           libc/sys/a29khif/aclocal.m4 libc/sys/a29khif/configure
9458           libc/sys/arm/aclocal.m4 libc/sys/arm/configure
9459           libc/sys/cygwin/aclocal.m4 libc/sys/cygwin/configure
9460           libc/sys/d10v/aclocal.m4 libc/sys/d10v/configure
9461           libc/sys/decstation/aclocal.m4 libc/sys/decstation/configure
9462           libc/sys/go32/aclocal.m4 libc/sys/go32/configure
9463           libc/sys/h8300hms/aclocal.m4 libc/sys/h8300hms/configure
9464           libc/sys/h8500hms/aclocal.m4 libc/sys/h8500hms/configure
9465           libc/sys/m88kbug/aclocal.m4 libc/sys/m88kbug/configure
9466           libc/sys/netware/aclocal.m4 libc/sys/netware/configure
9467           libc/sys/rtems/aclocal.m4 libc/sys/rtems/configure
9468           libc/sys/sh/aclocal.m4 libc/sys/sh/configure
9469           libc/sys/sparc64/aclocal.m4 libc/sys/sparc64/configure
9470           libc/sys/sun4/aclocal.m4 libc/sys/sun4/configure
9471           libc/sys/sysmec/aclocal.m4 libc/sys/sysmec/configure
9472           libc/sys/sysnec810/aclocal.m4 libc/sys/sysnec810/configure
9473           libc/sys/sysnecv850/aclocal.m4 libc/sys/sysnecv850/configure
9474           libc/sys/sysvi386/aclocal.m4 libc/sys/sysvi386/configure
9475           libc/sys/sysvnecv70/aclocal.m4 libc/sys/sysvnecv70/configure
9476           libc/sys/tic80/aclocal.m4 libc/sys/tic80/configure
9477           libc/sys/w65/aclocal.m4 libc/sys/w65/configure
9478           libc/sys/z8ksim/aclocal.m4 libc/sys/z8ksim/configure
9479           libm/aclocal.m4 libm/configure: Regenerated.
9480
9481 2000-03-24  Nick Clifton  <nickc@cygnus.com>
9482
9483         * libc/sys/arm/syscalls.c: Fix compile time warnings.
9484         (do_AngelSWI): Add "cc" to list o registers clobbered.
9485
9486 Thu Mar 22 14:57:00 2000  Fernando Nasser <fnasser@redhat.com>
9487
9488         * libc/sys/arm/syscalls.c (do_AngelSWI): Prevent registers with valid
9489         information to be clobbered by an Angel C library support syscall. 
9490
9491 Tue Mar 21 19:08:00 2000  Jeff Johnston <jjohnstn@cygnus.com>
9492
9493         * libc/stdlib/envlock.c: Fixed comment typo.
9494
9495 Fri Mar 17 15:37:00 2000  Jeff Johnston <jjohnstn@cygnus.com>
9496
9497         * libc/stdio/vfscanf.c (__svfscanf): Fixed floating point
9498         code to update nread as each character is processed instead
9499         of using buffer contents which throw away leading zeroes.
9500
9501 Mon Mar 13 15:22:00 2000  Sergei Organov <osv@javad.ru>
9502
9503         * libm/mathfp/sf_sqrt.c: Change _DOUBLE_IS_32BITS sqrt call to sqrtf.
9504
9505 Fri Mar 10 16:09:20 2000  Jeff Johnston <jjohnstn@cygnus.com>
9506
9507         * libc/include/string.h: Include <sys/types.h>.
9508
9509 Fri Mar 10 14:53:50 2000  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
9510
9511         * libc/stdio/putw.c (putw): Return 0 on success, to be compliant
9512         with XSH5, not SVID.
9513
9514 Thu Mar  9 17:20:41 2000  Jeff Johnston <jjohnstn@cygnus.com>
9515
9516         * libc/include/string.h: Changed last argument back to ssize_t
9517         to make it compatible with XPG4 definition which is 
9518         defined in <unistd.h>.  There is a conflict in the SVID 3
9519         and XPG4 definitions and newlib will settle with XPG4.
9520         * libc/string/swab.c: Ditto.
9521
9522 Wed Mar  8 17:11:41 2000  Jeff Johnston <jjohnstn@cygnus.com>
9523
9524         * libc/include/string.h: Changed last argument to size_t.
9525         * libc/string/swab.c: Changed last argument to size_t.
9526
9527 Wed Mar  8 00:46:41 2000  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
9528
9529         * libc/reent/Makefile.am (lib_a_SOURCES): Added unlinkr.c.
9530         (CHEWOUT_FILES): Added unlinkr.def.
9531         * libc/reent/Makefile.in: Rebuilt.
9532         * libc/sys.tex: Include unlinkr.def.
9533         * libc/reent/linkr.c (_unlink_r): Moved to...
9534         * libc/reent/unlinkr.c: ... new file.
9535
9536 Wed Mar  8 00:43:07 2000  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
9537
9538         * libc/string/Makefile.am (lib_a_SOURCES): Added swab.c.
9539         (CHEWOUT_FILES): Added swab.def.
9540         * libc/string/Makefile.in: Rebuilt.
9541         * libc/string/string.tex: Include swab.def.
9542         * libc/include/string.h (swab): Declare.
9543         * libc/string/swab.c: New file.
9544
9545 Wed Mar  8 00:38:35 2000  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
9546
9547         * libc/stdio/Makefile.am (lib_a_SOURCES): Added getw.c and putw.c.
9548         (CHEWOUT_FILES): Added getw.def and putw.def.
9549         * libc/stdio/Makefile.in: Rebuilt.
9550         * libc/stdio/stdio.tex: Include getw.def and putw.def.
9551         * libc/stdio/getw.c: New file.
9552         * libc/stdio/putw.c: New file.
9553
9554 Fri Feb 25 14:50:50 2000  Jeff Johnston <jjohnstn@cygnus.com>
9555
9556         * libc/stdio/flags.c (__sflags): Added check that mode[1]
9557         is non-null before looking at mode[2].
9558
9559 Thu Feb 24 11:43:00 2000  Ran Cabell <rcabell@norfolk.infi.net>
9560
9561         * libm/mathfp/sf_atan2.c: Fix atan2 typo for _DOUBLE_IS_32_BITS.
9562         * libm/mathfp/sf_atan.c: Ditto.
9563
9564 Thu Feb 24 11:39:00 2000  Joel Sherrill <joel@OARcorp.com>
9565
9566         * libc/include/sys/stat.h: Add RTEMS prototype for lstat.
9567
9568 Tue Feb 22 14:37:00 2000  Ran Cabell <rcabell@norfolk.infi.net>
9569
9570         * libm/mathfp/sf_exp.c: Corrected _DOUBLE_IS_32_BITS to be
9571         _DOUBLE_IS_32BITS.
9572
9573 Mon Feb 21 11:43:50 2000  Jeff Johnston <jjohnstn@cygnus.com>
9574
9575         * libc/stdio/vfprintf.c (VFPRINTF): Added CHECK_INIT
9576         call prior to calling _VFPRINTF_R so reentrant data area is set.
9577         (_VFPRINTF_R): Removed now extraneous CHECK_INIT call.
9578
9579 Thu Feb 17 01:42:50 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
9580
9581         * libc/stdio/vfscanf.c (limits.h): #include.
9582         (MAX_LONG_LEN): #define.
9583         (__svfscanf): Handle floating point numbers with arbitrary amounts
9584         of leading zeroes.
9585
9586 2000-02-15  Nick Clifton  <nickc@cygnus.com>
9587
9588         * libc/sys/arm/syscalls.c (_fstat): Initialise all fields to
9589         zero.  Set the blocksize to 1024/
9590
9591 Thu Jan 20 18:57:00 2000  Fernando Nasser <fnasser@redhat.com>
9592
9593         * setvbuf.c (setvbuf):  Set size to BUFSIZ when passed a zero size
9594         with line buffering.
9595
9596 Mon Jan 10 18:43:00 2000  Jeff Johnston <jjohnstn@cygnus.com>
9597
9598         * acinclude.m4: Changed include directory for winsup headers. 
9599         * aclocal.m4 configure libc/aclocal.m4
9600           libc/configure libc/ctype/Makefile.in libc/errno/Makefile.in
9601           libc/locale/Makefile.in libc/machine/aclocal.m4
9602           libc/machine/configure libc/machine/a29k/aclocal.m4
9603           libc/machine/a29k/configure libc/machine/arm/aclocal.m4
9604           libc/machine/arm/configure libc/machine/d10v/aclocal.m4
9605           libc/machine/d10v/configure libc/machine/d30v/aclocal.m4
9606           libc/machine/d30v/configure libc/machine/fr30/aclocal.m4
9607           libc/machine/fr30/configure
9608           libc/machine/h8300/aclocal.m4
9609           libc/machine/h8300/configure libc/machine/h8500/aclocal.m4
9610           libc/machine/h8500/configure libc/machine/hppa/aclocal.m4
9611           libc/machine/hppa/configure libc/machine/i386/aclocal.m4
9612           libc/machine/i386/configure libc/machine/i960/aclocal.m4
9613           libc/machine/i960/configure libc/machine/m32r/aclocal.m4
9614           libc/machine/m32r/configure libc/machine/m68k/aclocal.m4
9615           libc/machine/m68k/configure libc/machine/m88k/aclocal.m4
9616           libc/machine/m88k/configure libc/machine/mips/aclocal.m4
9617           libc/machine/mips/configure libc/machine/mn10200/aclocal.m4
9618           libc/machine/mn10200/configure libc/machine/mn10300/aclocal.m4
9619           libc/machine/mn10300/configure libc/machine/necv70/aclocal.m4
9620           libc/machine/necv70/configure libc/machine/powerpc/aclocal.m4
9621           libc/machine/powerpc/configure 
9622           libc/machine/sh/aclocal.m4
9623           libc/machine/sh/configure libc/machine/sparc/aclocal.m4
9624           libc/machine/sparc/configure
9625           libc/machine/tic80/aclocal.m4 libc/machine/tic80/configure
9626           libc/machine/v850/aclocal.m4 libc/machine/v850/configure
9627           libc/machine/w65/aclocal.m4 libc/machine/w65/configure
9628           libc/machine/z8k/aclocal.m4 libc/machine/z8k/configure
9629           libc/misc/Makefile.in libc/posix/Makefile.in
9630           libc/reent/Makefile.in 
9631           libc/signal/Makefile.in
9632           libc/string/Makefile.in libc/sys/aclocal.m4 libc/sys/configure
9633           libc/sys/a29khif/aclocal.m4 libc/sys/a29khif/configure
9634           libc/sys/arm/Makefile.in libc/sys/arm/aclocal.m4
9635           libc/sys/arm/configure libc/sys/cygwin/aclocal.m4
9636           libc/sys/cygwin/configure libc/sys/d10v/Makefile.in
9637           libc/sys/d10v/aclocal.m4 libc/sys/d10v/configure
9638           libc/sys/decstation/aclocal.m4 libc/sys/decstation/configure
9639           libc/sys/go32/aclocal.m4 libc/sys/go32/configure
9640           libc/sys/h8300hms/aclocal.m4 libc/sys/h8300hms/configure
9641           libc/sys/h8500hms/aclocal.m4 libc/sys/h8500hms/configure
9642           libc/sys/m88kbug/aclocal.m4 libc/sys/m88kbug/configure
9643           libc/sys/netware/aclocal.m4 libc/sys/netware/configure
9644           libc/sys/rtems/aclocal.m4 libc/sys/rtems/configure
9645           libc/sys/sh/Makefile.in libc/sys/sh/aclocal.m4
9646           libc/sys/sh/configure libc/sys/sparc64/aclocal.m4
9647           libc/sys/sparc64/configure libc/sys/sun4/aclocal.m4
9648           libc/sys/sun4/configure libc/sys/sysmec/aclocal.m4
9649           libc/sys/sysmec/configure libc/sys/sysnec810/aclocal.m4
9650           libc/sys/sysnec810/configure libc/sys/sysnecv850/aclocal.m4
9651           libc/sys/sysnecv850/configure libc/sys/sysvi386/aclocal.m4
9652           libc/sys/sysvi386/configure libc/sys/sysvnecv70/aclocal.m4
9653           libc/sys/sysvnecv70/configure libc/sys/tic80/aclocal.m4
9654           libc/sys/tic80/configure libc/sys/w65/aclocal.m4
9655           libc/sys/w65/configure libc/sys/z8ksim/aclocal.m4
9656           libc/sys/z8ksim/configure libc/syscalls/Makefile.in
9657           libc/time/Makefile.in libc/unix/Makefile.in libm/aclocal.m4
9658           libm/configure: Regenerated.
9659
9660 Mon Jan 10 18:43:46 2000  Jeff Johnston <jjohnstn@cygnus.com>
9661
9662         * libc/stdlib/putenv_r.c (_putenv_r): New file.
9663         * libc/stdlib/strdup_r.c (_strdup_r): New file.
9664         * libc/include/string.h: Added _strdup_r.
9665         * libc/stdlib/putenv.c: Added call to reentrant version. 
9666         * libc/stdlib/strdup.c: Ditto.
9667         * libc/stdlib/Makefile.am: Added _putenv_r and _unsetenv_r.
9668         * libc/include/stdlib.h: Ditto.
9669         * libc/stdlib/Makefile.in: Regenerated. 
9670         * libc/string/Makefile.in: Regenerated.
9671         * libc/stdlib/setenv.c: Added reentrant version of unsetenv.
9672         * libc/stdlib/setenv_r.c: Added unsetenv_r and changed memory
9673         management calls to reentrant versions.
9674         * libc/stdlib/wcstombs.c: Added #ifndef _REENT_ONLY wrapper.
9675         * libc/stdlib/wctomb.c: Ditto.
9676         * libc/stdlib/mblen.c: Ditto.
9677         * libc/stdlib/mbstowcs.c: Ditto.
9678         * libc/stdlib/mbtowc.c: Ditto. 
9679         * libc/stdlib/getenv.c: Ditto.
9680         * libc/reent/reent.tex: Added references to _putenv_r, _setenv_r,
9681         and _strdup_r.
9682
9683 Thu Jan  6 15:33:46 2000  Christopher Faylor <cgf@cygnus.com>
9684
9685         patch from Corinna Vinschen <corinna@vinschen.de>
9686         * libc/sys/cygwin/sys/param.h: Define NGROUP_MAX as 16.
9687
9688 Mon Jan 03 14:36:00 2000  Sergei Organov <osv@javad.ru>
9689
9690         * libm/mathfp/s_atangent.c: Fix exponent calculation.
9691         * libm/mathfp/s_ldexp.c: Ditto.
9692         * libm/mathfp/sf_atangent.c: Ditto.
9693         * libm/mathfp/sf_ldexp.c: Ditto.
9694
9695 Tue Dec 14 5:42:00 1999  Ranjith Kumaran <ranjith@cygnus.com>
9696
9697         * libc/machine/i960/setjmp.S: fix typo leaving .link_pix uncommented
9698         * libc/include/locale.h: define NULL to be 0.
9699
9700 Tue Dec  7 15:41:45 1999  Jim Wilson  <wilson@cygnus.com>
9701
9702         * libc/sys/sh/syscalls.c (stack_ptr): Move definition before first
9703         function.
9704
9705 Wed Dec  1 17:39:29 1999  Jeffrey A Law  (law@cygnus.com)
9706
9707         * libc/machine/mn10300/setjmp.S: Handle am33.
9708
9709 1999-11-26  Nick Clifton  <nickc@cygnus.com>
9710
9711         * libc/sys/arm/syscalls.c: Add function prototypes.
9712         (stack_ptr): Move declaration before function definitions.
9713
9714 Sat Nov 20 17:13:00 1999  Ranjith Kumaran <ranjith@cygnus.com>
9715
9716         * NEWS: Updated version information.
9717         * README: Ditto.
9718
9719 Tue Nov 09 12:19:21 1999  Jeff Johnston <jjohnstn@cygnus.com>
9720
9721         * libc/machine/i386/strchr.S: Fixed alignment test.
9722
9723 Thu Oct 28 05:30:46 1999  Andrew Cagney  <cagney@makita.cygnus.com>
9724
9725         * libc/sys/d10v/crt0.S (_start): Construct a real stack frame.
9726
9727 Thu Oct 28 15:29:11 1999  Andrew Cagney  <cagney@b1.cygnus.com>
9728
9729         * libc/sys/d10v/crt0.S (_start): Initialize both SPI and SPU
9730         ensuring that there is space between the two.
9731
9732 Thu Oct 14 13:39:21 1999  Christopher Faylor <cgf@cygnus.com>
9733
9734         * libc/stdio/flags.c: Conditionalize check for 't' for cygwin case
9735         only.
9736
9737 1999-10-08  Vadim Egorov  <egorovv@1c.ru>
9738
9739         * libc/include/stdlib.h: add ptsname, grantpt, unlockpt to cygwin
9740         section
9741
9742 Sat Oct  2 02:02:00 MEST 1999  Ralf Corsepius <corsepiu@faw.uni-ulm.de>
9743
9744         * libc/machine/sh/asm.h: Added __SH4_SINGLE__ to DELAYED_BRANCHES
9745         * libc/machine/sh/memcpy.S: Fix line wrapping in SL macro
9746
9747 Fri Oct  1 13:17:59 CDT 1999  <joel@OARcorp.com>
9748         * libc/include/grp.h: Added getgrnam_r and getgrgid_r prototypes
9749           per POSIX 1003.1b.
9750         * libc/include/pwd.h: Added getpwnam_r and getpwuid_r prototypes
9751           per POSIX 1003.1b.
9752
9753 1999-09-13  DJ Delorie  <dj@cygnus.com>
9754
9755         * libc/stdio/mktemp.c (_gettemp): on cygwin, check for EACCESS
9756         also.
9757
9758 Thu Sep  9 15:31:00 1999  Jeff Johnston <jjohnstn@cygnus.com>
9759
9760         * setvbuf.c (setvbuf):  When mallocing a buffer of size BUFSIZ,
9761         also note BUFSIZ as its size.
9762
9763 Tue Sep  7 17:15:00 1999  Joel Sherrill <joel@OARcorp.com>
9764
9765         * configure.host: Corrected feature defines for RTEMS.
9766         * libc/include/sys/stat.h: Added protototype for RTEMS mknod.
9767         * libc/include/sys/stat.h: mkfifo() should take const path arg.
9768         * libc/include/sys/unistd.h: pathconf() should take const path arg.
9769           Enabled usleep(), ftruncate(), and truncate() prototypes for RTEMS.
9770           Added defines for _POSIX_JOB_CONTROL, _POSIX_SAVED_IDS, and
9771           _POSIX_VERSION for RTEMS.  Added defines for _PC_ASYNC_IO,
9772           _PC_PRIO_IO, and _PC_SYNC_IO.
9773         * libc/machine/m68k/Makefile.am: Added strcpy.c and strlen.c.
9774         * libc/machine/m68k/Makefile.in: Regenerated.
9775         * libc/machine/m68k/strcpy.c: New file.
9776         * libc/machine/m68k/strlen.c: New file.
9777         * libc/stdio/tmpnam.c: Always make the returned name usable.
9778         * libc/sys/rtems/crt0.c: New version that passes all autoconf tests.
9779         * libc/sys/rtems/sys/dirent.h: New file.
9780         * libc/sys/rtems/sys/types.h: Added dev_t.
9781
9782 Tue Sep  7 17:15:00 1999   Jay Kulpinski <jskulpin@eng01.gdds.com>
9783
9784         * libc/stdlib/mprec.c: Fixed unitialized variable problem.
9785
9786 Fri Sep  3 12:35:20 1999  Jeff Johnston <jjohnstn@cygnus.com>
9787
9788         * libc/stdio/ftell.c (ftell): Backing off Joern's fix and
9789         my patch.
9790
9791 Thu Sep  2 22:05:20 1999  Christopher Faylor <cgf@cygnus.com>
9792
9793         patch from Jeff Johnston <jjohnstn@cygnus.com>
9794         * libc/stdio/ftell.c (ftell): Avoid using buffer position when the
9795         buffer is not in a useful state.
9796
9797 1999-09-01  Nick Clifton  <nickc@cygnus.com>
9798
9799         * libc/sys/arm/syscalls.c (_link): Add stub.
9800
9801 Fri Aug 27 23:09:09 1999  J"orn Rennecke <amylaar@cygnus.co.uk>
9802
9803         * ftell.c (ftell): Use actual position within buffer for text mode.
9804         * findfp.c (std): Initialize ptr->_bf._size.
9805
9806 Wed Aug 18 18:48:02 1999  Christopher Faylor <cgf@cygnus.com>
9807
9808         * libc/include/sys/unistd.h: Add nice() declaration.
9809
9810 1999-08-09  Nick Clifton  <nickc@cygnus.com>
9811
9812         * libc/sys/arm/crt0.S (change_mode): Rename to __change_mode and
9813         declare as a thumb function so that the disassembler will see the
9814         mode change.
9815
9816 Thu Aug  5 17:37:00 1999  Ranjith Kumaran <ranjith@cygnus.com>
9817
9818         * libc/reent/reent.tex: Updated list of reentrant functions.
9819
9820 1999-07-09  Michael Meissner  <meissner@cygnus.com>
9821
9822         * libc/include/stdlib.h (_findenv{,_r}): Add prototypes.
9823         
9824 Tue Jul  6 10:46:24 1999  Jeff Johnston <jjohnstn@cygnus.com>
9825
9826         * libc/stdio/sprintf.c: Moved snprintf and _snprintf_r to
9827         separate file.
9828         * libc/stdio/snprintf.c: New file.
9829         * libc/stdio/vsprintf.c: Moved vsnprintf and _vsnprintf_r to
9830         separate file.
9831         * libc/stdio/vsnprintf.c: New file.
9832         * libc/stdio/Makefile.am: Added snprintf.c and vsnprintf.c.
9833         * libc/stdio/Makefile.in: Regenerated.
9834
9835 Mon Jul  5 14:43:24 1999  Christopher Faylor <cgf@cygnus.com>
9836
9837         Patch submitted by Egor Duda <deo@logos-m.ru>:
9838         * libc/include/stdio.h: Add declarations for *nprintf.
9839         * libc/stdio/sprintf.c (snprintf): New function.
9840         (_snprintf_r): New function.
9841         * libc/stdio/vsprintf.c (vsnprintf): New function.
9842         (_vnsprintf_r): New function.
9843
9844 Wed Jun 30 16:36:27 1999  Jeff Johnston  <jjohnstn@cygnus.com>
9845
9846         * libc/Makefile.am (stmp-targetdep): Remove extraneous blank.
9847         * libm/Makefile.am (stmp-targetdep): Ditto.
9848         * libc/Makefile.in: Regenerated.
9849         * libm/Makefile.in: Ditto.
9850
9851 Fri Jun 25 10:49:27 1999  Jeff Johnston  <jjohnstn@cygnus.com>
9852
9853         * libc/Makefile.am (stmp-targetdep): Ignore "." in SUBDIRS.
9854         * libm/Makefile.am (stmp-targetdep): Ditto.
9855         * libc/Makefile.in: Regenerated.
9856         * libm/Makefile.in: Ditto.
9857
9858 Thu June 03 16:25:00 1999  Jeff Johnston <jjohnstn@cygnus.com>
9859
9860         * Makefile.am: Removed dependencies on all-recursive and added "."
9861         to the SUBDIRS list to prevent infinite recursion from occurring.
9862         Also removed any references to EXTRA_DATA.
9863         * libc/Makefile.am: Ditto.
9864         * libc/machine/Makefile.am: Ditto.
9865         * libc/machine/i386/Makefile.am: Ditto.
9866         * libm/Makefile.am: Ditto.
9867         * libc/sys/Makefile.am: Ditto.
9868         * Makefile.in: Regenerated.
9869         * aclocal.m4: Ditto.
9870         * configure: Ditto.
9871         * doc/Makefile.in: Ditto.
9872         * doc/aclocal.m4: Ditto.
9873         * doc/configure: Ditto.
9874         * libc/Makefile.in: Ditto.
9875         * libc/aclocal.m4: Ditto.
9876         * libc/configure: Ditto.
9877         * libc/machine/Makefile.in: Ditto.
9878         * libc/machine/aclocal.m4: Ditto.
9879         * libc/machine/configure: Ditto.
9880         * libc/machine/mn10300/Makefile.in: Ditto.
9881         * libc/machine/mn10300/aclocal.m4: Ditto.
9882         * libc/machine/mn10300/configure: Ditto.
9883         * libc/sys/Makefile.in: Ditto.
9884         * libc/sys/aclocal.m4: Ditto.
9885         * libc/sys/configure: Ditto.
9886         * libm/Makefile.in: Ditto.
9887         * libm/aclocal.m4: Ditto.
9888         * libm/configure: Ditto.
9889
9890 Thu June 03 16:20:00 1999  Ranjith Kumaran <ranjith@cygnus.com>
9891
9892         * libc/include/stdlib/stdlib.tex: Add link to env_lock.
9893
9894 Fri May 28 17:09:00 1999  Ranjith Kumaran <ranjith@cygnus.com>
9895
9896         * libc/include/stdlib.h: Add reentrant routines.
9897         * libc/stdlib/Makefile.am: Add reentrant routines.
9898         * libc/stdlib/Makefile.in: Ditto.
9899         * libc/stdlib/envlock.c: New file.
9900         * libc/stdlib/envlock.h: New file.
9901         * libc/stdlib/getenv.c: Modify to call reentrant routine.
9902         * libc/stdlib/getenv_r.c: New file.
9903         * libc/stdlib/mblen.c: Modify to call reentrant routine.
9904         * libc/stdlib/mblen_r.c: New file.
9905         * libc/stdlib/setenv.c: Modify to call reentrant routine.
9906         * libc/stdlib/setenv_r.c: New file.
9907         * libc/stdlib/stdlib.tex: Add reentrant routines.
9908
9909 Mon May 17 22:01:38 1999  Christopher Faylor <cgf@cygnus.com>
9910
9911         * libc/include/sys/types.h: Define __MS_types__ whenever
9912         cygwin or win32.
9913
9914 Sun May 16 16:02:41 1999  Christopher Faylor <cgf@cygnus.com>
9915
9916         * libc/include/machine/ieeefp.h: Always default to little
9917         endian if Windows, regardless of architecture.
9918         * libc/include/machine/sethmp.h: Define JBLEN if CYGWIN
9919         regardless of architecture.
9920
9921 Mon May  3 11:49:18 1999  Geoffrey Noer  <noer@cygnus.com>
9922
9923         * libc/include/machine/setjmp.h: Accept CYGWIN define, even if
9924         _WIN32 isn't defined.
9925
9926 Mon May  3 11:41:51 1999  Jeff Johnston  <jjohnstn@cygnus.com>
9927
9928         * libm/common/s_rint.c (rint): Add volatile qualifier for
9929         intermediate value w.
9930         * libm/common/sf_rint.c (rintf): Ditto.
9931
9932 Thu Apr 29 20:34:27 1999  Jeff Johnston  <jjohnstn@cygnus.com>
9933
9934         * libc/sys/arm/syscalls.c (remap_handle): Added check to
9935         ensure that std streams are initialized before being referenced.
9936
9937 1999-04-27  Jason Molenda  (jsm@bugshack.cygnus.com)
9938
9939         * README: Update reference to newlib@cygnus.com new
9940         newlib@sourceware.cygnus.com address.
9941
9942 Mon Apr 26 18:17:33 1999  Geoffrey Noer  <noer@cygnus.com>
9943
9944         * libc/include/sys/types.h: Define MS_types if CYGWIN is defined.
9945         * libc/include/sys/fcntl.h: Define _O_BINARY et al if CYGWIN is
9946         defined, even if _WIN32 isn't defined.
9947
9948 Sat Apr 24 19:59:55 1999  Christopher Faylor <cgf@cygnus.com>
9949
9950         * libc/include/sys/fcntl.h: Correct _O_CREATE to _O_CREAT.
9951
9952 Wed Apr 21 18:01:00 1999  Ranjith Kumaran  <ranjith@cygnus.com>
9953
9954         * libc/include/sys/reent.h: Change Long and ULong to __Long and
9955         __ULong.
9956         * libc/stdlib/dtoa.c: Ditto.
9957         * libc/stdlib/mprec.c: Ditto.
9958         * libc/stdlib/mprec.h: Ditto.
9959         * libc/stdlib/strtod.c: Ditto.
9960
9961 1999-04-21  Nick Clifton  <nickc@cygnus.com>
9962
9963         * configure.host (mcore): Remove mcore machine directory.
9964
9965 1999-04-18  Nick Clifton  <nickc@cygnus.com>
9966
9967         * libc/include/machine/ieeefp.h: Add support for mcore target.
9968         * libc/include/machine/setjmp.h: Add support for mcore target.
9969         * configure.host: Add support for mcore target.
9970
9971 1999-04-13  Mark Salter  <msalter@cygnus.com>
9972
9973         * libc/sys/arm/libcfunc.c: Moved isatty to syscall.c
9974         * libc/sys/arm/syscalls.c: Added isatty.
9975
9976 Wed Apr 07 16:06:04 1999  Jeff Johnston  <jjohnstn@cygnus.com>
9977
9978         * libc/stdlib/ecvtbuf.c (fcvtbuf): Fixed code to properly
9979         insert zeroes after significant digits.
9980
9981 Wed Mar 17 22:06:04 1999  Jeff Johnston  <jjohnstn@cygnus.com>
9982         
9983         * libc/stdio/vfprintf.c (cvt): Changed floating point
9984         cvt routine to use union used by dtoa to properly determine
9985         if the sign bit is on or not.
9986         * libc/stdio/vfieeefp.h: New file
9987         
9988 Wed Mar 17 17:35:04 1999  Jeff Johnston  <jjohnstn@cygnus.com>
9989
9990         * aclocal.m4: Regenerated.
9991         * configure: Regenerated.
9992
9993 Wed Mar 17 16:35:04 1999  Jeff Johnston  <jjohnstn@cygnus.com>
9994
9995         * libc/machine/i386/Makefile.am (lib_a_SOURCES): Added missing
9996         f_tanf reference.
9997         * libc/machine/i386/Makefile.in: Regenerated.
9998
9999 Tue Mar 16 14:56:36 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10000
10001         * acinclude.m4: Changed to work with new automake.
10002         * configure: Regenerated.
10003         * libc/machine/i386/aclocal.m4: Regenerated.
10004         * libc/machine/i386/configure: Regenerated.
10005
10006 Tue Mar 16 13:55:36 1999  Corinna Vinschen  <corinna.vinschen@cityweb.de>
10007
10008         * libc/sys/cygwin/sys/dirent.h: Add additional prototypes
10009         for telldir() and seekdir().  Rename unused structure element
10010         for use with these two routines.
10011
10012 Fri Mar 12 19:11:58 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10013
10014         * libc/time/mktime.c (validate_structure): Multiple fixes to
10015         code to handle cases where input fields are outside valid ranges.
10016         * libc/stdlib/div.c (div): Modified invalid rounding check.
10017         * libc/stdlib/ldiv.c (ldiv): Ditto.
10018
10019 Thu Mar 11 21:32:13 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10020
10021         * libc/machine/i386/memcpy.S: Performance rewrite.
10022         * libc/machine/i386/memmove.S: Ditto.
10023         * libc/machine/i386/i386mach.h: Added more register definitions.
10024         * libc/include/math.h: Include <machine/fastmath.h> if -ffast-math
10025         option used.
10026         * libc/include/machine/fastmath.h: Add definitions for x86
10027         fast-math routines.
10028
10029 Wed Mar 10 17:56:00 1999 Ranjith Kumaran  <ranjith@cygnus.com>
10030
10031         * libc/stdlib/strtod.c: Change from unsigned long to ULong.
10032
10033 Tue Mar  9 14:31:58 1999  Geoffrey Noer  <noer@cygnus.com>
10034
10035         Adjust newlib headers for new Cygwin Win32 API header files:
10036         * libc/include/sys/time.h: Check _WINSOCK_H rather than
10037         _GNU_H_WINDOWS32_SOCKETS.
10038         * libc/include/sys/types.h: Ditto.
10039
10040 Tue Mar 09 15:55:00 1999 Ranjith Kumaran  <ranjith@cygnus.com>
10041
10042         *include/sys/reent.h: Add checks for size of Bigint element Long.
10043         *libc/dtoa.c: Change routines to use generic Long type.
10044         *libc/mprec.c: Change routines to use generic Long type.
10045         *libc/mprec.h: Change routines to use generic Long type.
10046
10047 Tue Mar 02 18:07:49 1999 Ranjith Kumaran  <ranjith@cygnus.com>
10048
10049         * libc/Makefile.am: Add .def files.
10050         * libc/Makefile.in: Regenerate.
10051         * libc/e_acosh.c: Documentation update.
10052         * libc/e_atanh.c: Documentation update.
10053         * libc/e_hypot.c: Documentation update.
10054         * libc/e_remainder.c: Documentation update.
10055         * libc/er_lgamma.c: Documentation update.
10056         * libc/mathfp.tex: Documentation update.
10057         * libc/s_acos.c: Documentation update.
10058         * libc/s_atan.c: Documentation update.
10059         * libc/s_atan2.c: Documentation update.
10060         * libc/s_cosh.c: Documentation update.
10061         * libc/s_fmod.c: Documentation update.
10062         * libc/s_isnan.c: Documentation update.
10063         * libc/s_log10.c: Documentation update.
10064         * libc/s_pow.c: Documentation update.
10065         * libc/w_jn.c: Documentation update.
10066
10067 Sun Feb 28 23:18:49 1999  Geoffrey Noer  <noer@cygnus.com>
10068
10069         * aclocal.m4: Regenerate.
10070         * configure: Regenerate.
10071
10072 Tue Feb 23 13:57:26 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10073
10074         * libc/machine/mn10300/setjmp.S (_longjmp): Fixed longjmp
10075         to return 1 if user specified return code is 0.
10076         * libc/machine/mn10200/setjmp.S (_longjmp): Ditto.
10077
10078 Thu Feb 18 11:13:28 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10079
10080         * libc/machine/mn10200/setjmp.S (_setjmp/_longjmp): Fixed setjmp
10081         to save the return address.  Fixed longjmp to return to the original
10082         calling address of setjmp and to return the user specified return code
10083         rather than default to 1.
10084         * libc/machine/mn10300/setjmp.S (_setjmp/_longjmp): Ditto.
10085
10086 Mon Feb 15 17:48:17 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10087
10088         * libc/stdlib/mprec.h (mult): Define mult to be _multiply instead of _mult.
10089
10090 1999-02-10  Nick Clifton  <nickc@cygnus.com>
10091
10092         * libc/sys/arm/syscalls.c (initialise_monitor_handles): Make block
10093         volatile so that its assignments will not be discarded.
10094
10095 Wed Feb 10 17:19:40 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10096
10097         * libc/include/_ansi.h: Corrected _STRICT_ANSI reference to
10098         be __STRICT_ANSI__ which is generated by compiler.
10099         * libc/include/ctype.h: Ditto.
10100         * libc/include/math.h: Ditto.
10101         * libc/include/stdio.h: Ditto.
10102         * libc/include/stdlib.h: Ditto.
10103         * libc/include/string.h: Ditto.
10104         * libc/include/sys/signal.h: Ditto.
10105
10106 1999-02-08  Nick Clifton  <nickc@cygnus.com>
10107
10108         * configure.host: Add support for StrongARM target.
10109
10110 Fri Feb  5 11:13:14 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10111
10112         * libc/string/strncpy.c (strncpy): Removed redundant code
10113         that was copying bytes if data unaligned.
10114
10115 1999-02-02  Brendan Kehoe  <brendan@cygnus.com>
10116
10117         * libc/stdlib/Makefile.{am,in} (CHEWOUT_FILES): Add mblen.def,
10118         mbstowcs.def, and wcstombs.def.
10119
10120 Sat Jan 30 02:36:33 1999  Christopher Faylor <cgf@cygnus.com>
10121
10122         * libc/include/sys/errno.h: Add Cygwin errno.
10123         * libc/stdio/flags.c: Don't default to O_TEXT if no other flag
10124         is specified.
10125
10126 1999-01-29  Nick Clifton  <nickc@cygnus.com>
10127
10128         * libc/sys/arm/syscalls.c: Move C library functions into seperate
10129         file.
10130         
10131         * libc/sys/arm/libcfunc.c: New file containing C library functions
10132         from syscalls.c
10133
10134         * libc/sys/arm/Makefile.am (lib_a_SOURCES): Add libcfuncs.c
10135         * libc/sys/arm/Makefile.in (lib_a_SOURCES): Regenerate.
10136
10137
10138 1999-01-27  Michael Meissner  <meissner@cygnus.com>
10139
10140         * libc/include/machine/setjmp.h (D30V _JBLEN/_JBTYPE): Use double
10141         type, and cut size in half so that the jmp_buf array is guaranteed
10142         to be aligned on a 64-bit boundary.
10143
10144 Mon Jan 25 12:05:38 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10145
10146         * libc/string/strings.tex: Added information about
10147         strcasecmp and strncasecmp.
10148         * libc/stdlib/stdlib.tex: Added missing information
10149         about mblen, mbstowcs, and wcstombs.
10150         * libc/string/strchr.c: Changed how mask is built to use
10151         shift operators so register will be used instead of storage.
10152
10153 1999-01-22  DJ Delorie  <dj@cygnus.com>
10154
10155         * libc/include/stdlib.h: don't use dllimport if we're building
10156         newlib, since it's inside cygwin.dll
10157
10158 Fri Jan 22 14:57:18 1999  Christopher Faylor <cgf@cygnus.com>
10159
10160         * libc/ctype/ctype_.c: Need to use __declspec(dllexport) for
10161         _ctype_ under cygwin.
10162
10163 Fri Jan 22 09:50:19 1999  Christopher Faylor <cgf@cygnus.com>
10164
10165         * include/stdlib.h: Fix typo from previous checkin.
10166
10167 Thu Jan 21 22:42:21 1999  Christopher Faylor <cgf@cygnus.com>
10168
10169         * include/ctype.h: Use __declspec(dllimport) method for exporting
10170         variable from cygwin DLL.
10171         * include/time.h: Ditto.
10172         * sys/errno.h: Ditto.
10173         * include/stdlib.h: Export __mb_cur_max from cygwin DLL.
10174         * libc/locale/locale.c: Use __declspec(dllexport) method for
10175         exporting variable from cygwin DLL.
10176
10177 Sat Jan 16 13:29:54 1999  Christopher Faylor <cgf@cygnus.com>
10178
10179         * libc/stdio/setvbuf.c: Always clean up when _IONBF or possible
10180         access of bogus pointer will result in SIGSEGV.
10181
10182 1999-01-07  Nick Clifton  <nickc@cygnus.com>
10183
10184         * libc/sys/arm/setjmp.S: Use C macros to cope with the possibility
10185         of an underscore prefix to function names.
10186
10187 Fri Jan  8 19:00:07 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10188
10189         * libc/machine/i386/i386mach.h (__REG_PREFIX__): Create new
10190         define __REG_PREFIX__ instead of using __REGISTER_PREFIX__.
10191
10192 1998-12-31  Michael Meissner  <meissner@cygnus.com>
10193
10194         * libc/machine/i386/i386mach.h (__REGISTER_PREFIX__): Only define
10195         to `%' if not already defined.
10196
10197 1998-12-30  Michael Meissner  <meissner@cygnus.com>
10198
10199         * libc/stdio/tmpnam.c (_tempnam_r): Make directory and prefix
10200         arguments const char *, not char *.
10201         * libc/include/stdio.h (_tempnam_r): Ditto.
10202
10203         * libc/include/sys/reent.h (struct _reent): The _sig_func type
10204         points to a function taking an integer, not void.
10205
10206 Tue Dec 29 14:35:53 1998  Christopher Faylor <cgf@cygnus.com>
10207
10208         * configure.host: Add a define for Cygwin builds.
10209         * libc/include/ctype.h: Don't use dll imported variables in newlib.
10210
10211 Mon Dec 28 09:19:56 1998  Christopher Faylor <cgf@cygnus.com>
10212
10213         * libc/include/ctype.h: Define _ctype_ as dll imported variable
10214         for use with Cygwin.
10215         * libc/include/sys/errno.h: Define _sys_errlist and _sys_nerr as
10216         dll imported variables for use with Cygwin.
10217         * libc/ctype/ctype_.c: Undefine _ctype_ in case it has been defined
10218         as a dll imported variable for Cygwin.
10219
10220 Sat Dec 26 00:13:53 1998  Christopher Faylor <cgf@cygnus.com>
10221
10222         * libc/include/sys/unistd.h: Add proto for getpass.
10223
10224 Fri Dec 18 19:28:19 1998  Geoffrey Noer  <noer@cygnus.com>
10225
10226         * libc/sys/cygwin/sys/dirent.h: add protos for scandir and
10227         alphasort.
10228
10229 Fri Dec 18 16:33:25 1998  Geoffrey Noer  <noer@cygnus.com>
10230
10231         * libc/posix/execvp.c (execvp): call cygwin_posix_path_list_p,
10232         not posix_path_list_p.
10233
10234 1998-12-15  Nick Clifton  <nickc@cygnus.com>
10235
10236         * libc/string/memchr.c: Treat 'c' argument as an unsigned byte not
10237         a signed int.
10238
10239 1998-12-13  Nick Clifton  <nickc@cygnus.com>
10240
10241         * libc/include/machine/setjmp.h (_JBLEN): Set to 10.
10242
10243 1998-12-12  Nick Clifton  <nickc@cygnus.com>
10244
10245         * libc/machine/fr30/setjmp.S: New file, supplied by Mark Slater
10246         <msalter@cygnus.com>
10247         * libc/machine/fr30/Makefile.am: Add build of setjmp.S
10248         * libc/machine/fr30/Makefile.in: Regenerated.
10249
10250 1998-12-11  Nick Clifton  <nickc@cygnus.com>
10251
10252         * configure.host: Remove use of libc/sys for FR30 port.
10253         * libc/sys/fr30: Remove directory (replaced by libgloss).
10254
10255 1998-12-10  Ken Raeburn  <raeburn@cygnus.com>
10256
10257         * libc/string/strcat.c (ALIGNED): Sense of result was reversed.
10258         * libc/string/strncat.c (ALIGNED): Ditto.
10259
10260 Wed Dec  9 14:37:57 1998  Geoffrey Noer  <noer@cygnus.com>
10261
10262         * libc/include/sys/time.h: include sys/types.h
10263
10264 Tue Dec  8 15:53:18 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10265
10266         * libc/machine/i386/memcmp.S (memcmp): Fix for unequal
10267         comparison found when checking word at a time.
10268
10269 1998-12-04  Nick Clifton  <nickc@cygnus.com>
10270
10271         * libc/sys/fr30/crt0.s (_start): Initialise frame pointer.
10272
10273 1998-12-03  Nick Clifton  <nickc@cygnus.com>
10274
10275         * libc/sys/fr30/syscalls.c (_times): New function stub.
10276
10277 Thu Dec  3 15:59:19 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10278
10279         * configure.host (mach_add_setjmp): Replaced mach_add_objs
10280         with mach_add_setjmp flag which indicates if setjmp should
10281         be added to the machine directory objects.
10282         * acinclude.m4: Removed reference to mach_add_objs.
10283         * aclocal.m4: Regenerated.
10284         * Makefile.in: Regenerated.
10285         * configure: Regenerated.
10286         * libc/aclocal.m4: Regenerated.
10287         * libc/Makefile.in: Regenerated.
10288         * libc/configure: Regenerated.
10289         * libc/machine/aclocal.m4: Regenerated.
10290         * libc/machine/Makefile.in: Regenerated.
10291         * libc/machine/configure: Regenerated.
10292         * libc/machine/i386/aclocal.m4: Regenerated.
10293         * libc/machine/i386/Makefile.am: Altered to selectively add
10294         setjmp.S to the src files list.
10295         * libc/machine/i386/Makefile.in: Regenerated.
10296         * libc/machine/i386/configure.in: Altered to test mach_add_setjmp.
10297         * libc/machine/i386/configure: Regenerated.
10298
10299 1998-12-02  Nick Clifton  <nickc@cygnus.com>
10300
10301         * libc/sys/fr30/crt0.s (_start): Fix function names.
10302
10303         * libc/machine/fr30: New directory
10304         * libc/machine/fr30/Makefile.am: New file.
10305         * libc/machine/fr30/Makefile.in: New generated file.
10306         * libc/machine/fr30/configure.in: New file.
10307         * libc/machine/fr30/configure: New generated file.
10308         * libc/machine/fr30/aclocal.m4: New generated file.
10309         * libc/sys/fr30/Makefile.am: New file.
10310         * libc/sys/fr30/Makefile.in: New generated file.
10311         * libc/sys/fr30/configure.in: New file.
10312         * libc/sys/fr30/configure: New generated file.
10313         * libc/sys/fr30/syscalls.c: New file.
10314
10315 Tue Dec  1 16:28:56 1998  Geoffrey Noer  <noer@cygnus.com>
10316
10317         * libc/sys/cygwin/sys/utmp.h: new file, moved from winsup/include.
10318
10319 1998-12-01  Ken Raeburn  <raeburn@cygnus.com>
10320
10321         * libc/time/strftime.c (strftime): Also handle %y for years before
10322         1900.
10323
10324 Tue Dec  1 13:26:07 1998  Christopher Faylor <cgf@cygnus.com>
10325
10326         * libc/string/strcasecmp.c (strcasecmp): Adhere to standard
10327         UNIX convention.  Perform tolower on characters before comparing
10328         them rather than use toupper.
10329         * libc/string/strncasecmp.c (strncasecmp): Ditto.
10330
10331 Mon Nov 30 16:24:19 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10332         
10333         * configure.host: Added using i386 machine directory
10334         for all x86 cross-compiler and configuring
10335         which added object files to use via new "mach_add_objs" variable.
10336         * configure: Regenerated.
10337         * libc/configure: Regenerated.
10338         * libc/Makefile.in: Regenerated.
10339         * libc/aclocal.m4: Regenerated.
10340         * libc/ctype/Makefile.in: Regenerated.
10341         * libc/errno/Makefile.in: Regenerated.
10342         * libc/locale/Makefile.in: Regenerated.
10343         * libc/machine/Makefile.in: Regenerated.
10344         * libc/machine/aclocal.m4: Regenerated.
10345         * libc/machine/configure: Regenerated.
10346         * libc/posix/Makefile.in: Regenerated.
10347         * libc/reent/Makefile.in: Regenerated.
10348         * libc/signal/Makefile.in: Regenerated.
10349         * libc/stdio/Makefile.in: Regenerated.
10350         * libc/stdlib/Makefile.in: Regenerated.
10351         * libc/string/Makefile.in: Regenerated.
10352         * libc/string/memmove.c: Optimized code to use memcpy
10353         logic when performing a non-destructive copy.
10354         * libc/string/strncmp.c: Altered code to allow building
10355         optimized for size or speed.
10356         * libc/syscalls/Makefile.in: Regenerated.
10357         * libc/time/Makefile.in: Regenerated.
10358         * libc/unix/Makefile.in: Regenerated.
10359         * libc/machine/i386/Makefile.am: Added new files and reference
10360         to "mach_add_objs" to indicate optional object files.
10361         * libc/machine/i386/Makefile.in: Regenerated.
10362         * libc/machine/i386/aclocal.m4: Regenerated.
10363         * libc/machine/i386/configure: Regenerated.
10364         * libc/machine/i386/memchr.S: New file that implements
10365         function in Intel assembler.
10366         * libc/machine/i386/memcmp.S: ditto.
10367         * libc/machine/i386/memcpy.S: ditto.
10368         * libc/machine/i386/memmove.S: ditto.
10369         * libc/machine/i386/memset.S: ditto.
10370         * libc/machine/i386/strchr.S: ditto.
10371         * libc/machine/i386/strlen.S: ditto.
10372         * libc/machine/i386/f_atan2.S: New file that implements
10373         fast version of math function to be used by compiler when
10374         --ffast_math compile option is used.
10375         * libc/machine/i386/f_atan2f.S: ditto.
10376         * libc/machine/i386/f_exp.c: ditto.
10377         * libc/machine/i386/f_expf.c: ditto.
10378         * libc/machine/i386/f_frexp.S: ditto.
10379         * libc/machine/i386/f_frexpf.S: ditto.
10380         * libc/machine/i386/f_ldexp.S: ditto.
10381         * libc/machine/i386/f_ldexpf.S: ditto.
10382         * libc/machine/i386/f_log.S: ditto.
10383         * libc/machine/i386/f_logf.S: ditto.
10384         * libc/machine/i386/f_log10.S: ditto.
10385         * libc/machine/i386/f_log10f.S: ditto.
10386         * libc/machine/i386/f_math.h: New file.
10387         * libc/machine/i386/f_pow.c: ditto.
10388         * libc/machine/i386/f_powf.S: ditto.
10389         * libc/machine/i386/f_tan.S: ditto.
10390         * libc/machine/i386/f_tan.S: ditto.
10391         * libc/machine/i386/i386mach.h: New file.
10392
10393 Mon Nov 30 13:02:17 1998  Christopher Faylor <cgf@cygnus.com>
10394
10395         patch from Mumit Khan <khan@xraylith.wisc.edu>
10396         * libc/include/stdio.h (tempnam): Add prototype.
10397         * libc/stdio/tmpnam.c (_tempnam_r): Handle NULL prefix.
10398         (tempnam): Adhere to prototype.
10399
10400 Thu Nov 26 00:21:32 1998  Christopher Faylor <cgf@cygnus.com>
10401
10402         * Makefile.am: Add default for AR_FLAGS.
10403         * Makefile.in: Regenerate.
10404
10405 Tue Nov 24 18:48:56 1998  Geoffrey Noer  <noer@cygnus.com>
10406
10407         * libc/include/time.h: move __cplusplus wrapper after includes
10408         * libc/include/sys/time.h: ditto.  If Cygwin, include
10409         sys/select.h.
10410         * libc/include/sys/types.h: lose "32" in comment about Cygwin.
10411
10412 1998-11-23  Ken Raeburn  <raeburn@cygnus.com>
10413
10414         * libc/time/strftime.c (strftime): Handle %y after year 2000.
10415
10416 Wed Nov 18 12:22:41 1998  Nick Clifton  <nickc@cygnus.com>
10417
10418         * libc/sys/fr30/crt0.s (_start): Switch over to using int #9 as
10419         abnormnal end-of-crt0 marker.
10420
10421 Tue Nov 17 16:27:58 1998  Nick Clifton  <nickc@cygnus.com>
10422
10423         * libc/sys/fr30/crt0.s: New file/directory.
10424         * libc/include/machine/setjmp.h: Add FR30 target.
10425         * libc/include/machine/ieeefp.h: Add FR30 target.
10426         * configure.host: Add FR30 target.
10427
10428 Mon Nov  16 23:15:00 1998  Ranjith Kumaran <ranjith@cygnus.com>
10429
10430         * libm/math: Files that are duplicated in common directory removed.
10431         * libm/math/fdlibm.h: Removed.
10432         * libm/math/s_cbrt.c: Removed.
10433         * libm/math/s_copysign.c: Removed.
10434         * libm/math/s_expm1.c: Removed.
10435         * libm/math/s_finite.c: Removed.
10436         * libm/math/s_ilogb.c: Removed.
10437         * libm/math/s_infinity.c: Removed.
10438         * libm/math/s_lib_ver.c: Removed.
10439         * libm/math/s_log1p.c: Removed.
10440         * libm/math/s_logb.c: Removed.
10441         * libm/math/s_matherr.c: Removed.
10442         * libm/math/s_modf.c: Removed.
10443         * libm/math/s_nan.c: Removed.
10444         * libm/math/s_nextafter.c: Removed.
10445         * libm/math/s_rint.c: Removed.
10446         * libm/math/s_scalbn.c: Removed.
10447         * libm/math/sf_cbrt.c: Removed.
10448         * libm/math/sf_copysign.c: Removed.
10449         * libm/math/sf_expm1.c: Removed.
10450         * libm/math/sf_finite.c: Removed.
10451         * libm/math/sf_ilogb.c: Removed.
10452         * libm/math/sf_infinity.c: Removed.
10453         * libm/math/sf_log1p.c: Removed.
10454         * libm/math/sf_logb.c: Removed.
10455         * libm/math/sf_modf.c: Removed.
10456         * libm/math/sf_nan.c: Removed.
10457         * libm/math/sf_nextafter.c: Removed.
10458         * libm/math/sf_rint.c: Removed.
10459         * libm/math/sf_scalbn.c: Removed.
10460         * libm/math/Makefile.am: Removed references to deleted files (above).
10461         * libm/math/Makefile.in: Regenerated.
10462         * libm/Makefile.am: Added common directory to math.
10463         * libm/Makefile.in: Regenerated.
10464
10465 Mon Nov  2 23:12:00 1998  Ranjith Kumaran <ranjith@cygnus.com>
10466
10467         * libm/mathfp: Add non-ANSI functions.
10468         * libm/mathfp/e_acosh.c acosh(): New file.
10469         * libm/mathfp/e_atanh.c atanh(): New file.
10470         * libm/mathfp/e_hypot.c hypot(): New file.
10471         * libm/mathfp/e_j0.c j0(): New file.
10472         * libm/mathfp/e_j1.c j1(): New file.
10473         * libm/mathfp/e_remainder.c remainder(): New file.
10474         * libm/mathfp/e_scalb.c scalb(): New file.
10475         * libm/mathfp/ef_acosh.c acoshf(): New file.
10476         * libm/mathfp/ef_atanh.c atanhf(): New file.
10477         * libm/mathfp/ef_hypot.c hypotf(): New file.
10478         * libm/mathfp/ef_j0.c j0f(): New file.
10479         * libm/mathfp/ef_j1.c j1f(): New file.
10480         * libm/mathfp/ef_remainder.c remainderf(): New file.
10481         * libm/mathfp/ef_scalb.c scalbf(): New file.
10482         * libm/mathfp/er_gamma.c gamma_r: New file.
10483         * libm/mathfp/er_lgamma.c lgamma_r(): New file.
10484         * libm/mathfp/erf_gamma.c gamma_rf(): New file.
10485         * libm/mathfp/erf_lgamma.c lgamma_rf(): New file.
10486         * libm/mathfp/w_cabs.c cabs(): New file.
10487         * libm/mathfp/w_drem.c drem(): New file.
10488         * libm/mathfp/w_jn.c jn(): New file.
10489         * libm/mathfp/wf_cabs.c cabsf(): New file.
10490         * libm/mathfp/wf_drem.c dremf(): New file.
10491         * libm/mathfp/wf_jn.c jnf(): New file.
10492
10493 Mon Nov  2 16:43:18 1998  Geoffrey Noer  <noer@cygnus.com>
10494
10495         * libc/sys/cygwin32: remove directory and contents
10496         * libc/sys/cygwin: and add back, losing the "32".
10497         * configure.host: check for cygwin* instead of cygwin32.
10498         * acinclude.m4: ditto.
10499         * aclocal.m4: regenerate with aclocal
10500         * configure: regenerate with autoconf
10501
10502 Tue Oct 20 17:28:28 1998  Geoffrey Noer  <noer@cygnus.com>
10503
10504         * libc/stdio/tmpnam.c (_tempnam_r): not enough memory allocated
10505         for length
10506
10507 Tue Oct 20 18:49:05 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10508
10509         * libc/include/sys/reent.h (struct _reent): Added variables _rand_next, _strtok_last,
10510         _asctime_buf, _localtime_buf and _gamma_signgam to struct reent
10511         to make rand/srand, strtok, asctime, localtime, w_gamma,
10512         w_lgamma, wf_gamma, and wf_lgamma reentrant.  Included
10513         time.h to bring in struct tm definition.
10514         * libc/stdlib/rand.c (rand, srand): Don't emit functions 'rand' and 'srand' if
10515         '_REENT_ONLY' is set. Used variable '_rand_next' from struct reent.
10516         * libc/stdlib/strtok.c (strtok): Used variable '_strtok_last' from struct reent
10517         instead of static variable.
10518         * libc/stdlib/asctime.c (asctime): Used variable '_asctime_buf' from
10519         struct reent instead of static variable.
10520         * libc/stdlib/lcltime.c (localtime): Used variable '_localtime_buf' from
10521         struct reent instead of static variable.
10522         * libm/math/Makefile.am: Removed s_signgam.o.
10523         * libm/math/Makefile.in: Regenerated.
10524         * libm/math/w_gamma.c (gamma): Used variable '_gamma_signgam' from
10525         struct reent instead of global variable 'signgam'.
10526         * libm/math/w_lgamma.c (lgamma): Likewise.
10527         * libm/math/wf_gamma.c (gammaf): Likewise.
10528         * libm/math/wf_lgamma.c (lgammaf): Likewise.
10529         * libm/math/s_signgam.c: Removed.
10530         * libc/include/unctrl.h: Defined arrays __unctrl and __unctrllen
10531         to be const.
10532         * libc/misc/unctrl.c: Defined arrays __unctrl and __unctrllen
10533         to be const.
10534         * libc/reent/Makefile.am: Added dependence for impure.o on impure.c and
10535         libc/include/reent.h.
10536         * libc/reent/Makefile.in: Regenerated.
10537         * libc/stdio/vfprintf.c (_vfprintf_r): Defined arrays 'blanks' and 'zeroes'
10538         to be const.
10539         * libc/stdlib/mbtowc_r.c (_mbtowc_r): Defined arrays 'JIS_state_table' and
10540         'JIS_action_table' to be const.
10541         * libm/math/s_lib_ver.c: define variable _LIB_VERSION to be const.
10542
10543 Mon Oct 12 00:26:33 1998  Christopher Faylor <cgf@cygnus.com>
10544
10545         * acinclude.m4:  $with_target_subdir should default to '.'
10546         or confusion results when configuring in same directory as sources.
10547         * Regenerate all aclocal.m4 and configure files.
10548
10549 Fri Oct  9 16:27:36 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10550
10551         * libc/stdlib/mallocr.c: Added 16 byte alignment support which
10552         can be set by defining MALLOC_ALIGNMENT=16.  Also added support
10553         for platforms where sizeof(size_t) < sizeof(long) via
10554         SIZE_T_SMALLER_THAN_LONG macro.
10555         
10556 Wed Oct  7 14:02:40 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10557
10558         * libc/include/time.h (CLOCKS_PER_SEC): Change CLOCKS_PER_SEC
10559         to refer to _CLOCKS_PER_SEC_ and added including <machine/time.h>
10560         which sets _CLOCKS_PER_SEC_ for selected machines.
10561         * libc/include/machine/time.h: New file.
10562
10563 Tue Oct  6 16:08:05 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10564
10565         * libc/syscalls/sysexecve.c: New file.
10566         * libc/syscalls/sysgettod.c: New file.
10567         * libc/syscalls/systimes.c: New file.
10568         * libc/syscalls/Makefile.am: Added new objects.
10569         * libc/syscalls/Makefile.in: Regenerated.
10570         * libc/include/_syslist.h (_execve): Moved define in file.
10571         * libc/include/reent.h:  Added _execve_r declaration.
10572         * libc/Makefile.in: Regenerated.
10573         * libc/ctype/Makefile.in: Regenerated.
10574         * libc/errno/Makefile.in: Regenerated.
10575         * libc/locale/Makefile.in: Regenerated.
10576         * libc/machine/Makefile.in: Regenerated.
10577         * libc/misc/Makefile.in: Regenerated.
10578         * libc/posix/Makefile.in: Regenerated.
10579         * libc/reent/Makefile.in: Regenerated.
10580         * libc/reent/execr.c (_execve_r): Added _execve_r function.
10581         * libc/signal/Makefile.in: Regenerated.
10582         * libc/stdio/Makefile.in: Regenerated.
10583         * libc/time/Makefile.in: Regenerated.
10584         * libc/unix/Makefile.in: Regenerated.
10585         * libm/mathfp/Makefile.in: Regenerated.
10586
10587 Tue Oct  6 14:14:05 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10588
10589         * libc/string/Makefile.in: Regenerated.
10590         * libc/string/memchr.c (memchr): Moved code to reduce object size.
10591         * libc/string/memcpy.c (memcpy): Ditto.
10592         * libc/string/memcmp.c (memcmp): Ditto.
10593         * libc/string/memset.c (memset): Ditto.
10594         * libc/string/strchr.c (strchr): Ditto.
10595         * libc/string/strcmp.c (strcmp): Ditto.
10596         * libc/string/strcpy.c (strcpy): Ditto.
10597         * libc/string/strlen.c (strlen): Ditto.
10598
10599 Tue Oct  6 13:58:05 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10600
10601         * libm/acinclude.m4: Removed since newlib/acinclude.m4 can be used
10602         to generate aclocal.m4.
10603         * libm/Makefile.in: Regenerated.
10604         * libm/aclocal.m4: Regenerated.
10605         * libm/configure: Regenerated.
10606         * libm/math/Makefile.in: Regenerated.
10607         * libm/mathfp/Makefile.in: Regenerated.
10608
10609 1998-09-25  Mark Salter  <msalter@cygnus.com>
10610
10611         * libc/include/machine/setjmp.h: Fixed test for mn10300 and mn10200
10612         by adding leading and trailing underscores to symbol names.
10613
10614 Tue Sep 22 15:33:41 1998  Christopher Faylor <cgf@cygnus.com>
10615
10616         * Makefile.in: Add default for AR_FLAGS.
10617
10618 Tue Sep 22 15:02:49 1998  Christopher Faylor <cgf@cygnus.com>
10619
10620         patch from ian@airs.com (Ian Taylor):
10621         * acinclude.m4: Run AC_CANONICAL_BUILD explicitly before
10622         NEWLIB_CONFIGURE so AC_CANONICAL_HOST will be run before it
10623         is needed for detecting the build machine.  Required for
10624         cygwin native builds.
10625
10626         * Regenerate all aclocal.m4 and configure files.
10627
10628 Mon Sep 21 14:44:16 1998  Nick Clifton  <nickc@cygnus.com>
10629
10630         * libc/sys/arm/crt0.S: Prepend a period to all local labels that
10631         used to start with LC.
10632
10633 Thu Sep 17 18:18:11 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
10634
10635         * libc/machine/sh/setjmp.S (setjmp): Handle __SH4* like __SH3E__ .
10636         (longjmp): Likewise.
10637
10638 Thu Sep 17 16:25:33 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
10639
10640         * libc/machine/sh/memset.S (memset): Move copy from r4 to r4 before
10641         the test for small number of bytes.
10642
10643 Thu Sep 10 11:40:00 1998  Ranjith Kumaran <ranjith@cygnus.com>
10644
10645         * Makefile.am: Add --enable-newlib-hw-fp check.  This builds the new
10646         math library that uses floating point algorithms instead of the old
10647         libm.
10648         * Makefile.in: Regenerate with automake version 1.3b.
10649         * configure: Rebuild.
10650         * libm/Makefile.in: Regenerate with automake version 1.3b.
10651         * libm/aclocal.m4: Regenerate.
10652         * libm/configure: Rebuild.
10653         * libm/configure.in: Add newlib_hw_fp definition and mathfp directory.
10654         * libm/acinclude.m4: Define macros for configure.in.
10655         * libm/config.h.in: Generate.
10656         * libm/mathfp/Makefile.am: New file.
10657         * libm/mathfp/Makefile.in: Generate.
10658         * libm/mathfp/s_acos.c (acos): New file.
10659         * libm/mathfp/s_asin.c (asin): New file.
10660         * libm/mathfp/s_asine.c (asine): New file.
10661         * libm/mathfp/s_atan.c (atan): New file.
10662         * libm/mathfp/s_atan2.c (atan2): New file.
10663         * libm/mathfp/s_atangent.c (atangent): New file.
10664         * libm/mathfp/s_ceil.c (ceil): New file.
10665         * libm/mathfp/s_copysign.c (copysign): New file.
10666         * libm/mathfp/s_cos.c (cos): New file.
10667         * libm/mathfp/s_cosh.c (cosh): New file.
10668         * libm/mathfp/s_exp.c (exp): New file.
10669         * libm/mathfp/s_fabs.c (fabs): New file.
10670         * libm/mathfp/s_finite.c (finite): New file.
10671         * libm/mathfp/s_floor.c (floor): New file.
10672         * libm/mathfp/s_fmod.c (fmod): New file.
10673         * libm/mathfp/s_frexp.c (frexp): New file.
10674         * libm/mathfp/s_infconst.c: New file.
10675         * libm/mathfp/s_isinf (isinf).c: New file.
10676         * libm/mathfp/s_isnan.c (isnan): New file.
10677         * libm/mathfp/s_ispos.c (ispos): New file.
10678         * libm/mathfp/s_ldexp.c (ldexp): New file.
10679         * libm/mathfp/s_log.c (log): New file.
10680         * libm/mathfp/s_log10.c (log10): New file.
10681         * libm/mathfp/s_logarithm.c (logarithm): New file.
10682         * libm/mathfp/s_mathcnst.c: New file.
10683         * libm/mathfp/s_modf (modf).c: New file.
10684         * libm/mathfp/s_numtest.c (numtest): New file.
10685         * libm/mathfp/s_pow.c (pow): New file.
10686         * libm/mathfp/s_scalbn.c (scalbn): New file.
10687         * libm/mathfp/s_sin (sin).c: New file.
10688         * libm/mathfp/s_sine.c (sine): New file.
10689         * libm/mathfp/s_sineh.c (sineh): New file.
10690         * libm/mathfp/s_sinf.c (sinf): New file.
10691         * libm/mathfp/s_sinh.c (sinh): New file.
10692         * libm/mathfp/s_sqrt.c (sqrt): New file.
10693         * libm/mathfp/s_tan.c (tan): New file.
10694         * libm/mathfp/s_tanh.c (tanh): New file.
10695         * libm/mathfp/sf_acos.c (acosf): New file.
10696         * libm/mathfp/sf_asin.c (asinf): New file.
10697         * libm/mathfp/sf_asine.c (asinef): New file.
10698         * libm/mathfp/sf_atan.c (atanf): New file.
10699         * libm/mathfp/sf_atan2.c (atan2f): New file.
10700         * libm/mathfp/sf_atangent.c (atangent): New file.
10701         * libm/mathfp/sf_ceil.c (ceilf): New file.
10702         * libm/mathfp/sf_copysign.c (copysignf): New file.
10703         * libm/mathfp/sf_cos.c (cosf): New file.
10704         * libm/mathfp/sf_cosh.c (coshf): New file.
10705         * libm/mathfp/sf_exp.c (expf): New file.
10706         * libm/mathfp/sf_fabs.c (fabsf): New file.
10707         * libm/mathfp/sf_finite.c (finitef): New file.
10708         * libm/mathfp/sf_floor.c (floorf): New file.
10709         * libm/mathfp/sf_fmod.c (fmodf): New file.
10710         * libm/mathfp/sf_frexp.c (frexpf): New file.
10711         * libm/mathfp/sf_isinf.c (isinff): New file.
10712         * libm/mathfp/sf_isnan.c (isnanf): New file.
10713         * libm/mathfp/sf_ispos.c (isposf): New file.
10714         * libm/mathfp/sf_ldexp.c (ldexpf): New file.
10715         * libm/mathfp/sf_log.c (logf): New file.
10716         * libm/mathfp/sf_log10.c (log10f): New file.
10717         * libm/mathfp/sf_logarithm.c (logarithmf): New file.
10718         * libm/mathfp/sf_modf.c (modff): New file.
10719         * libm/mathfp/sf_numtest.c (numtestf): New file.
10720         * libm/mathfp/sf_pow.c (powf): New file.
10721         * libm/mathfp/sf_scalbn.c (scalbnf): New file.
10722         * libm/mathfp/sf_sin.c (sinf): New file.
10723         * libm/mathfp/sf_sine.c (sinef): New file.
10724         * libm/mathfp/sf_sineh.c (sinehf): New file.
10725         * libm/mathfp/sf_sinh.c (sinhf): New file.
10726         * libm/mathfp/sf_sqrt.c (sqrtf): New file.
10727         * libm/mathfp/sf_tan.c (tanf): New file.
10728         * libm/mathfp/sf_tanh.c (tanhf): New file.
10729         * libm/mathfp/zmath.h: New file.
10730
10731 Wed Sep  2 02:49:03 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
10732
10733         * libc/machine/sh/strcmp.S (L_char_loop): Re-load r0 at loop
10734         exit if it has been overwritten by pre-fetching in delay slot.
10735
10736 1998-09-01  Michael Meissner  <meissner@cygnus.com>
10737
10738         * Makefile.am (tooldir): Add in host_alias, so that multilib
10739         libraries are installed in the directory the compiler looks in.
10740         * Makefile.in: Regenerate.
10741
10742         * libc/stdlib/Makefile.in: Regenerate with automake version 1.3b.
10743
10744 Mon Aug 31 11:39:31 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10745
10746         * libc/machine/mn10300/memcpy.S (_memcpy): Move alignment test
10747         ahead of test for number of bytes being moved.
10748
10749 Thu Aug 27 14:07:53 1998  Christopher Faylor <cgf@cygnus.com>
10750
10751         * libc/include/sys/unistd.h: Nothing special needed for
10752         _exit under cygwin.
10753
10754 Wed Aug 26 15:05:21 1998  Nick Clifton  <nickc@cygnus.com>
10755
10756         * libc/sys/arm/syscalls.c (_sbrk): Rename '_end' to 'end' to
10757         conform to user label naming conventions. 
10758
10759 Mon Aug 24 14:46:19 1998  Geoffrey Noer <noer@cygnus.com>
10760
10761         * libc/sys/cygwin32/sys/utime.h: variable names in
10762         protos should start with two leading underscores
10763         * libc/include/string.h: ditto
10764         * libc/include/sys/signal.h: ditto
10765         * libc/include/sys/stat.h: ditto
10766         * libc/include/sys/time.h: ditto
10767         * libc/include/sys/unistd.h: ditto
10768         * libc/include/ctype.h: ditto
10769         * libc/include/stdlib.h: ditto
10770         * libc/include/sys/reent.h: struct _atexit function ptr takes a
10771         void, same with _sig_func.
10772
10773 Fri Aug 21 14:44:14 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10774
10775         * libc/stdlib/mbtowc_r.c (_mbtowc_r): Added preprocessor checks
10776         for MB_CAPABLE to reduce code size when newlib is not configured
10777         with --enable-newlib-mb.
10778         * libc/stdlib/Makefile.am: Specified -fshort-enums when building
10779         mbtowc_r.o to minimize size.
10780         * libc/stdlib/Makefile.in: Rebuild.
10781         
10782 Wed Aug 19 16:20:13 1998  Jim Wilson  <wilson@cygnus.com>
10783
10784         * libc/sys/sparc64/Makefile.am (.S_r.o, .c_r.o): Change -DREENTRANT
10785         to -DREENT.
10786         * libc/sys/sparc64/Makefile.in: Rebuild.
10787         
10788 Tue Aug 18 22:38:29 1998  Ian Lance Taylor  <ian@cygnus.com>
10789
10790         * Makefile.am (MAKEOVERRIDES): Define.
10791         * Makefile.in: Rebuild.
10792
10793 Tue Aug 18 12:38:47 1998  Jim Wilson  <wilson@cygnus.com>
10794
10795         * libc/sys/sparc64/sys/stat.h (stat): Add const.
10796
10797 Mon Aug 17 22:27:06 1998  Ian Lance Taylor  <ian@cygnus.com>
10798
10799         * acinclude.m4 (NEWLIB_CONFIGURE): Use top_builddir in
10800         newlib_cflags when looking for targ-include.
10801         * */aclocal.m4, */configure: Rebuild.
10802
10803 Fri Jul 31 10:57:42 1998  Catherine Moore  <clm@cygnus.com>
10804
10805         * libc/sys/arm/syscalls.c (_sbrk): Change "__end__"
10806         to "_end".
10807
10808 Wed Jul 29 00:02:01 1998  Mark Alexander  <marka@cygnus.com>
10809
10810         * libc/include/sys/config.h: Define __IEEE_LITTLE_ENDIAN
10811         on SPARCs with little-endian data.
10812         * libc/include/machine/ieeefp.h: Ditto.
10813
10814 Wed Jul 22 18:00:10 1998  Ian Lance Taylor  <ian@cygnus.com>
10815
10816         * acinclude.m4: Handle a relative srcdir correctly when setting
10817         newlib_cflags.
10818         * */aclocal.m4, */configure: Rebuild.
10819
10820 Wed Jul 22 17:11:33 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10821
10822         * libm/math/wrf_lgamma.c (lgammaf_r): Initialize exc.err to 0 and
10823         also set exc.arg1, exc.arg2 appropriately in case matherr is supplied.
10824         * libm/math/wrf_gamma.c (gammaf_r): ditto 
10825         * libm/math/wr_lgamma.c (lgamma_r): ditto 
10826         * libm/math/wr_gamma.c (gamma_r): ditto 
10827         * libm/math/wf_sqrt.c (sqrtf): ditto 
10828         * libm/math/wf_sinh.c (sinhf): ditto 
10829         * libm/math/wf_scalb.c (scalbf): ditto 
10830         * libm/math/wf_remainder.c (remainderf): ditto 
10831         * libm/math/wf_pow.c (powf): ditto 
10832         * libm/math/wf_log10.c (log10f): ditto 
10833         * libm/math/wf_log.c (logf): ditto 
10834         * libm/math/wf_lgamma.c (lgammaf): ditto 
10835         * libm/math/wf_jn.c (jnf, ynf): ditto 
10836         * libm/math/wf_j1.c (j1f, y1f): ditto 
10837         * libm/math/wf_j0.c (j0f, y0f): ditto 
10838         * libm/math/wf_hypot.c (hypotf): ditto 
10839         * libm/math/wf_gamma.c (gammaf): ditto 
10840         * libm/math/wf_fmod.c (fmodf): ditto 
10841         * libm/math/wf_exp.c (expf): ditto 
10842         * libm/math/wf_cosh.c (coshf): ditto 
10843         * libm/math/wf_atanh.c (atanhf): ditto 
10844         * libm/math/wf_atan2f.c (atan2f): ditto 
10845         * libm/math/wf_asin.c (asinf): ditto 
10846         * libm/math/wf_acosh.c (acoshf): ditto 
10847         * libm/math/wf_acos.c (acosf): ditto 
10848         * libm/math/w_sqrt.c (sqrt): ditto 
10849         * libm/math/w_sinh.c (sinh): ditto 
10850         * libm/math/w_scalb.c (scalb): ditto 
10851         * libm/math/w_remainder.c (remainder): ditto 
10852         * libm/math/w_pow.c (pow): ditto 
10853         * libm/math/w_log10.c (log10): ditto 
10854         * libm/math/w_log.c (log): ditto 
10855         * libm/math/w_lgamma.c (lgamma): ditto 
10856         * libm/math/w_jn.c (jn, yn): ditto 
10857         * libm/math/w_j1.c (j1, y1): ditto 
10858         * libm/math/w_j0.c (j0, y0): ditto 
10859         * libm/math/w_hypot.c (hypot): ditto 
10860         * libm/math/w_gamma.c (gamma): ditto 
10861         * libm/math/w_fmod.c (fmod): ditto 
10862         * libm/math/w_exp.c (exp): ditto 
10863         * libm/math/w_cosh.c (cosh): ditto 
10864         * libm/math/w_atanh.c (atanh): ditto 
10865         * libm/math/w_atan2f.c (atan2): ditto 
10866         * libm/math/w_asin.c (asin): ditto 
10867         * libm/math/w_acosh.c (acosh): ditto 
10868         * libm/math/w_acos.c (acos): ditto 
10869
10870 Tue Jul 21 12:34:54 1998  Ian Lance Taylor  <ian@cygnus.com>
10871
10872         * libm/math/Makefile.am (src): Add w_cabs.c and w_drem.c.
10873         (fsrc): Add wf_cabs.c and wf_drem.c.
10874         * libm/math/Makefile.in: Rebuild.
10875
10876         * Makefile.am (AM_MAKEFLAGS): Add CFLAGS_FOR_BUILD.  Remove some
10877         unused directory variables.  Remove duplicate CFLAGS.
10878         * Makefile.in: Rebuild.
10879
10880         * doc/Makefile.am ($(MKDOC)): Don't use $(CFLAGS) when building
10881         with $(CC_FOR_BUILD).
10882         (makedoc.o): Likewise.
10883         * doc/Makefile.in: Rebuild.
10884
10885         * libc/sys/cygwin32/Makefile.am (EXTRA_LIBRARIES): Define, to
10886         force a definition of COMPILE.
10887         (libfoo_a_SOURCES): Define.
10888         * libc/sys/cygwin32/Makefile.in: Rebuild.
10889         * libc/sys/tic80/Makefile.am (EXTRA_LIBRARIES): Define, to
10890         force a definition of COMPILE.
10891         (libfoo_a_SOURCES): Define.
10892         * libc/sys/tic80/Makefile.in: Rebuild.
10893
10894 Mon Jul 20 20:49:24 1998  Christopher Faylor <cgf@cygnus.com>
10895
10896         * libc/include/sys/fcntl.h: Add O_NOINHERIT, Win32-specific
10897         flag.
10898
10899 Fri Jul 17 16:13:16 1998  Ian Lance Taylor  <ian@cygnus.com>
10900
10901         * Build using autoconf and automake.  Added many Makefile.am and
10902         configure.in files, plus generated files.  Old configure.in files
10903         and all old Makefile.in files completely replaced.  Removed
10904         host/any.  Added acinclude.m4 and configure.host.
10905
10906 Sat Jul 11 18:14:49 1998  Felix Lee  <flee@cygnus.com>
10907
10908         * libc/stdio/vfprintf.c: enable long long support, sometimes.
10909         * configure.in (*-*-cygwin32): add -DWANT_PRINTF_LONG_LONG.
10910
10911 Tue Jul  7 01:51:55 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
10912
10913         * libc/machine/sh/strcmp.S, libc/machine/sh/strcpy.S: New files.
10914         * libc/machine/sh/Makefile.in: Add rules for new files.
10915
10916 Tue Jul  7 01:40:55 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
10917
10918         * libc/machine/sh/asm.h (SL, DELAYED_BRANCHES): Define.
10919         * libc/machine/sh/memset.S (memset): Remove uses of dt; shorten code.
10920         * libc/machine/sh/memcpy.S (SL, DELAYED_BRANCHES): Don't define.
10921
10922 Thu Jul  2 10:33:16 1998  Nick Clifton  <nickc@cygnus.com>
10923
10924         * libc/sys/arm/syscalls.c (_exit): Add comment, noting that exit
10925         code is ignored.
10926
10927 Wed Jun 24 13:56:54 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10928
10929         * libc/stdio/tmpnam.c (_tmpnam_r): Changed routine to use
10930         internal static buffer when s is NULL, as prescribed by ANSI.
10931
10932 1998-06-22  Vladimir N. Makarov  <vmakarov@cygnus.com>
10933
10934         * libc/sys/h8300hms/Makefile.in (OFILES): malloc.o has been
10935         removed.
10936         * libc/sys/h8300hms/malloc.c: has been removed.  Now malloc.c from
10937         libc/stdlib will be used for h8300hms.
10938         
10939 Thu Jun 18 16:56:05 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10940
10941         * libc/machine/mn10300/strlen.S (_strlen): New optimized assembler
10942         version that can be built either for speed or size.
10943         * libc/machine/mn10300/memset.S (_memset): ditto
10944         * libc/machine/mn10300/memchr.S (_memchr): ditto
10945         * libc/machine/mn10300/memcpy.S (_memcpy): ditto
10946         * libc/machine/mn10300/memcmp.S (_memcmp): ditto
10947         * libc/machine/mn10300/strchr.S (_strchr): ditto
10948         * libc/machine/mn10300/strcmp.S (_strcmp): ditto
10949         * libc/machine/mn10300/strcpy.S (_strcpy): ditto
10950         * libc/machine/mn10300/Makefile.in: Added entries for
10951         memchr.o, memcmp.o, memcpy.o, memset.o, strchr.o, 
10952         strcmp.o, strcpy.o, and strlen.o.
10953
10954 Wed Jun 17 12:50:26 1998  Mark Alexander  <marka@cygnus.com>
10955
10956         * configure.in: Don't use libc/sys/sysmec for MN10200; it's
10957         been replaced with libgloss/mn10200.
10958
10959 Fri Jun 12 14:34:39 1998  Michael Meissner  <meissner@cygnus.com>
10960
10961         * libc/string/strchr.c (strchr): Make s a constant pointer to
10962         avoid warning.
10963
10964 Tue Jun  9 16:29:30 1998  Jason Molenda  (crash@bugshack.cygnus.com)
10965
10966         * configure.in (target == arm* or thumb*): Define ARM_RDI_MONITOR
10967         instead of ARM_RDP_MONITOR (sys/libc/arm/crt0.S to assume Angel
10968         board SWIs instead of Demon board SWIs).
10969
10970 Thu Jun  4 12:16:46 1998  Michael Meissner  <meissner@cygnus.com>
10971
10972         * libc/string/strncat.c (strncat):  Make -Os act the same as
10973         PREFER_SIZE_OVER_SPEED being defined.
10974
10975 Wed Jun  3 17:52:33 1998  Michael Meissner  <meissner@cygnus.com>
10976
10977         * libc/string/memchr.c (memchr): Make -Os act the same as
10978         PREFER_SIZE_OVER_SPEED being defined.
10979         * libc/string/memcmp.c (memcmp): Ditto.
10980         * libc/string/memcpy.c (memcpy): Ditto.
10981         * libc/string/memset.c (memset): Ditto.
10982         * libc/string/strcat.c (strcat): Ditto.
10983         * libc/string/strchr.c (strchr): Ditto.
10984         * libc/string/strcmp.c (strcmp): Ditto.
10985         * libc/string/strcpy.c (strcpy): Ditto.
10986         * libc/string/strlen.c (strlen): Ditto.
10987         * libc/string/strncat.c (strncat): Ditto.
10988         * libc/string/strncmp.c (strncmp): Ditto.
10989         * libc/string/strncpy.c (strncpy): Ditto.
10990
10991 Mon Jun  1 15:25:07 1998  Geoffrey Noer  <noer@cygnus.com>
10992
10993         * libc/include/sys/itimer.h: remove
10994         * libc/include/sys/time.h: itimer stuff should be here
10995
10996 Mon Jun  1 16:31:29 1998  Jeff Johnston  <jjohnstn@cygnus.com>
10997
10998         * libc/stdio/vfprintf.c (cvt): Changed code to look at sign
10999         bit instead of comparing to 0 so -0.0 can be printed correctly.
11000
11001 Sat May 30 09:33:51 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
11002
11003         * libc/stdlib/mprec.c (b2d): Inilialize d in non-VAX case too.
11004
11005 Fri May 29 22:25:10 1998  Geoffrey Noer  <noer@cygnus.com>
11006
11007         * libc/include/sys/unistd.h: fix sync() proto
11008         * libc/include/sys/fcntl.h: remove _close which is already
11009         defined in unistd.h.
11010         * libc/include/sys/time.h: add getitimer proto
11011
11012 Fri May 29 16:10:28 1998  Geoffrey Noer  <noer@cygnus.com>
11013
11014         * libc/string/strchr.c: convert arg to unsigned char
11015         * libc/include/stdlib.h: add protos for random, srandom
11016         * libc/include/sys/stat.h: add lstat proto
11017         * libc/include/sys/time.h: add setitimer proto
11018         * libc/include/sys/unistd.h: add readlink, symlink protos
11019         * libc/include/process.h: instead of including windows.h and using
11020         HANDLEs in sexec protos, just use void *s.  Need to include
11021         sys/types.h.
11022
11023 Fri May 29 03:04:29 1998  Geoffrey Noer  <noer@cygnus.com>
11024
11025         * libc/include/sys/fcntl.h: add _close proto for Cygwin32
11026
11027 Thu May 28 16:34:21 1998  Geoffrey Noer  <noer@cygnus.com>
11028
11029         * libc/include/process.h: add secure exec protos
11030
11031 Wed May 27 13:54:51 1998  Jeffrey A Law  (law@cygnus.com)
11032
11033         * libc/stdlib/dtoa.c (_dtoa_r): Use "double_union" for variables
11034         which are accessed as both doubles and integers.
11035         * libc/stdlib/mprec.c (ulp, b2d, ratio): Likewise.
11036         * libc/stdlib/strtod.c (_strtod_r): Likewise.
11037         * libc/stdlib/mprec.h: Add "union double_union" and change
11038         word0/word1 macros to use it.
11039
11040 Tue May 26 18:04:21 1998  Geoffrey Noer  <noer@cygnus.com>
11041
11042         * libc/include/sys/signal.h: add __cplusplus wrapper
11043
11044 Tue May 26 15:10:22 1998  Geoffrey Noer  <noer@cygnus.com>
11045
11046         * libc/include/sys/utime.h: new generic file that gets replaced by
11047         libc/sys/SYSDIR/sys/utime.h on systems that support the utime
11048         function.
11049         * sys/cygwin32/sys/utime.h: use _EXFUN in utime proto
11050         * libc/include/time.h: remove duplicate utime proto
11051         * libc/include/utime.h: add comment
11052
11053 Sun May 24 23:56:20 1998  Christopher Faylor <cgf@cygnus.com>
11054
11055         * libc/include/sys/time.h: Add missing include to
11056         allow use of _EXFUN.  Remove times function that is
11057         already defined in times.h.
11058
11059 Sun May 24 01:32:14 1998  Christopher Faylor <cgf@cygnus.com>
11060
11061         * libc/include/time.h: Fix typo in tzset.
11062
11063 Fri May 22 17:00:48 1998  Geoffrey Noer  <noer@cygnus.com>
11064
11065         * libc/include/sys/time.h: add missing Cygwin32 function protos
11066         * libc/include/sys/unistd.h: ditto
11067         * libc/include/time.h: ditto
11068
11069 Wed May 20 20:35:11 1998  Geoffrey Noer  <noer@cygnus.com>
11070
11071         * libc/sys/cygwin32/sys/param.h: add protected NULL def, remove
11072         FIXME.
11073         * libc/include/sys/types.h: add a new __MS_types__ section
11074         to define vm_offset_t, vm_size_t, int32_t et al, register_t,
11075         __BIT_TYPES_DEFINED__.
11076
11077 Wed May 20 18:49:21 1998  Geoffrey Noer  <noer@cygnus.com>
11078
11079         * libc/sys/cygwin32/sys/param.h: move here from winsup/include/sys
11080         since it overrides the one in libc/include/sys.  Also, start
11081         including types.h.
11082
11083 Wed May 20 14:45:40 1998  Geoffrey Noer  <noer@cygnus.com>
11084
11085         * libm/math/Makefile.in: add s_signgam.o to obj list
11086
11087 Tue May 19 11:57:11 1998  Jeff Johnston  <jjohnstn@cygnus.com>
11088
11089         * libc/include/sys/reent.h (_REENT_INIT): Initialize current locale to "C".
11090
11091 Mon May 18 22:36:12 1998  Christopher Faylor <cgf@cygnus.com>
11092
11093         * libc/include/sys/signal.h: cygwin32 exports sig{empty,add}set,
11094         so don't use defines.
11095
11096 Mon May 18 19:01:02 1998  Michael Meissner  <meissner@cygnus.com>
11097
11098         * libc/sys/d10v/crt0.S: Use correct stab for 16-bit ints.
11099
11100 Sun May 17 18:40:32 1998  Frank Ch. Eigler  <fche@cygnus.com>
11101
11102         * libc/stdlib/mbtowc_r.c (_mbtowc_r): Accept a NULL
11103         _current_locale as default locale.
11104
11105 Sat May 16 21:59:59 1998  Bob Manson  <manson@charmed.cygnus.com>
11106
11107         * libc/stdlib/mallocr.c (mALLOc): Add explicit tests for
11108         insufficient space in a chunk.
11109
11110 Tue May 12 14:41:01 1998  Jeff Johnston  <jjohnstn@cygnus.com>
11111
11112         * configure.in (links): Added check for --enable-newlib-mb configure
11113         option which defines the MB_CAPABLE macro.
11114         * libc/locale/locale.c (_setlocale_r): Added support for setting
11115         LC_CTYPE to "C-JIS", "C-SJIS" or "C-EUCJP", when MB_CAPABLE is
11116         defined.
11117         * libc/stdlib/mbtowc_r.c (_mbtowc_r): New function _mbtowc_r that
11118         implements mbtowc() with multibyte support for JIS, SJIS, and EUC-JP.
11119         * libc/stdlib/wctomb_r.c (_wctomb_r): New function _wctomb_r that
11120         implements wctomb() with multibyte support for JIS, SJIS, and EUC-JP.
11121         * libc/stdlib/mbstowcs_r.c (_mbstowcs_r): New function _mbstowcs_r that
11122         implements mbstowcs() with multibyte support for JIS, SJIS, and EUC-JP.
11123         * libc/stdlib/wcstombs_r.c (_wcstombs_r): New function _wcstomb_r that implements
11124         wcstombs() with multibyte support for JIS, SJIS, and EUC-JP.
11125         * libc/stdlib/Makefile.in: Added new multibyte
11126         routines: _mbtowc_r(), _wctomb_r(), _mbstowcs_r(), and _wcstombs_r().
11127         * libc/include/stdlib.h: Added declarations of _mbtowc_r(), _wctomb_r(),
11128         _mbstowcs_r(), and _wcstombs_r().
11129         * libc/stdlib/mbctype.h: New internal header file that contains macros to test
11130         for JIS, SJIS, and EUC-JP characters.
11131         * libc/stdlib/mblen.c (mblen): Added code to call _mbtowc_r() if
11132         MB_CAPABLE defined.
11133         * libc/stdlib/mbtowc.c (mbtowc): Added code to call _mbtowc_r() if
11134         MB_CAPABLE defined.
11135         * libc/stdlib/wctomb.c (wctomb): Added code to call _wctomb_r() if
11136         MB_CAPABLE defined.
11137         * libc/stdlib/mbstowcs.c (mbstowcs): Added code to call _mbstowcs_r()
11138         if MB_CAPABLE defined.
11139         * libc/stdlib/wcstombs.c (wcstombs): Added code to call _wcstombs_r()
11140         if MB_CAPABLE defined.
11141         * libc/stdio/vfscanf.c (__svfscanf): Added multibyte tolerance
11142         to the format string processing when MB_CAPABLE.
11143         * libc/stdio/vfprintf.c (_VFPRINTF_R): Changed mbtowc() call to
11144         call _mbtowc_r().
11145
11146 Tue May  5 16:07:23 1998  Nick Clifton  <nickc@cygnus.com>
11147
11148         The following modifications are courtesy of Anthony Thompson,
11149         athompson@cambridge.arm.com:
11150         * libc/sys/arm/syscalls.c: Initialise and track stdin/out/err for
11151         boith RDI and RDP monitors.
11152         * libc/sys/arm/crt0.S: Call initialise_monitor_handles() for both
11153         RDI and RDP monitors.
11154
11155 Wed Apr 29 15:22:15 1998  Jeff Johnston  <jjohnstn@cygnus.com>
11156
11157         * configure.in (links): Added -DHAVE_GETTIMEOFDAY for arm and thumb.
11158         * libc/sys/arm/syscalls.c (_gettimeofday _times): Added functions.
11159         (_swiopen): Fixed open flags to treat write with append as just append.
11160         (_swilseek): Fixed lseek support to properly handle offsets from SEEK_END.
11161         * libc/sys/arm/sys/param.h: New file to override param.h for ARM.
11162
11163 Fri Apr 24 18:00:09 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
11164
11165         * libc/machine/sh/memcpy.S (L_odddst, big endian version):
11166         When needing to transfer an initial 2-byte-word, store as
11167         two single bytes.
11168
11169 Wed Apr 22 17:56:03 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
11170
11171         * libc/sys/sh/crt0.S (start): Handle __SH4_SINGLE_ONLY__ like
11172         __SH3E__ .
11173         * libc/machine/sh/memcpy.S (DELAYED_BRANCHES, SL): Likewise.
11174         * libc/include/machine/ieeefp.h (_DOUBLE_IS_32BITS): Likewise.
11175
11176 Wed Apr 22 12:28:03 1998  Michael Meissner  <meissner@cygnus.com>
11177
11178         * configure.in (target_cflags): If --enable-target-optspace, use
11179         -Os to compile newlib rather than -O2.  Default to using -Os for
11180         d10v, d30v and m32r if --{enable,disable}-target-optspace is not
11181         used.
11182
11183 Tue Apr 21 23:13:34 1998  Geoffrey Noer  <noer@cygnus.com>
11184
11185         * libc/include/machine/setjmp.h: change sigsetjmp and
11186         siglongjmp definitions to use an array instead of a struct
11187         for __CYGWIN32__
11188
11189 Tue Apr 14 11:47:47 1998  Doug Evans  <devans@canuck.cygnus.com>
11190
11191         * libc/reent/impure.c (__ATTRIBUTE_IMPURE_DATA__): Fix spelling.
11192
11193 Mon Apr  6 15:05:08 1998  Jonathan Larmour  <jlarmour@cygnus.co.uk>
11194
11195         * libc/string/strxfrm.c: fix to get correct return value
11196
11197 Wed Apr  1 16:09:05 1998  Nick Clifton  <nickc@cygnus.com>
11198
11199         * libc/sys/arm/crt0.S: Set top of RAM to be 0x800000 for PE
11200         builds.  Make mode change labels global so that they will be seen
11201         by the debugger.
11202
11203 Wed Mar 18 09:45:10 1998  Nick Clifton  <nickc@cygnus.com>
11204
11205         * configure.in (links): Do not use ARM debiugging protocols for PE
11206         builds.
11207
11208         * libc/sys/arm/syscalls.c (_sbrk): Add "_sbrk: " to error
11209         message. 
11210
11211 Fri Mar 13 11:24:34 1998  Jeff Johnston  <jjohnstn@cygnus.com>
11212
11213         * libc/stdio/findfp.c (__sinit): Made stdout default to
11214         line buffered mode as defined by ANSI.
11215
11216 Tue Mar 10 11:41:26 1997  Bob Manson  <manson@charmed.cygnus.com>
11217
11218         * libc/include/sys/itimer.h: New file.
11219
11220         * libc/signal/signal.c (__sigtramp_r,__sigtramp): New functions.
11221
11222 Mon Mar  9 14:19:26 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
11223
11224         * libc/machine/sh/memcpy.S: (_memcpy): Fix for execute/memcpy-1.c
11225         failure.
11226
11227 Fri Feb 27 13:56:10 1998  Michael Meissner  <meissner@cygnus.com>
11228
11229         * libc/machine/d30v/setjmp.S (longjmp): Fix order of parallel
11230         insns.
11231
11232 Wed Feb 25 09:29:54 1998  Nick Clifton  <nickc@cygnus.com>
11233
11234         * libc/sys/arm/syscalls.c (_open): Add varags to conform to prototype.
11235
11236 Tue Feb 24 18:00:13 1998  Michael Meissner  <meissner@cygnus.com>
11237
11238         * libc/machine/d30v/{setjmp.S,Makefile.in}: New files for D30V
11239         support.
11240
11241         * libc/include/machine/setjmp.h: Add D30V support.
11242
11243         * configure.in (d30v-*): Add d30v machine directory.
11244
11245 Mon Feb 23 09:32:58 1998  Mark Alexander  <marka@cygnus.com>
11246
11247         * configure.in: Don't use libc/sys/sysmec for MN10300; it's
11248         been replaced with libgloss/mn10300.
11249
11250 Sat Feb 21 17:44:43 1998  Geoffrey Noer  <noer@cygnus.com>
11251
11252         * libc/stdlib/mallocr.c: remove __malloc_copy routine now that
11253         it is no longer needed.
11254
11255 Thu Feb 19 16:15:10 1998  Geoffrey Noer  <noer@cygnus.com>
11256
11257         * libc/include/sys/signal.h: add sigpause proto for Cygwin32
11258
11259 Wed Feb 18 23:51:08 1998  Geoffrey Noer  <noer@cygnus.com>
11260
11261         * libc/stdio/fdopen.c (fdopen): Make all writes go to the end of
11262         the file when O_APPEND is set, wherever the EOF happens to be at
11263         that time. 
11264
11265 Wed Feb 18 23:25:02 1998  Geoffrey Noer  <noer@cygnus.com>
11266         
11267         patch from cgf@bbc.com (Christopher Faylor):
11268         * libc/stdio/freopen.c (freopen): Conform to standard UNIX
11269         convention of closing fp prior to attempting to open the file
11270         argument.  This allows correct operation when reopening
11271         stdin/stdout/stderr.  Replaces last freopen.c patch.
11272
11273 Wed Feb 18 16:27:40 1998  Geoffrey Noer  <noer@cygnus.com>
11274
11275         patch from cgf@bbc.com (Christopher Faylor):
11276         * libc/stdio/freopen.c: freopen was not preserving the fd
11277         of the stream being operated on.  This confuses programs that
11278         expect that the handles for stdout and stderr will be 1 and 2.
11279
11280 Mon Feb 16 23:34:07 1998  Andrew Cagney  <cagney@b1.cygnus.com>
11281
11282         * libc/sys/d10v/crt0.S (_start): Set PSW{SW} - select SPU.
11283
11284 Thu Feb 12 15:09:20 1998  Ranjith Kumaran <ranjith@cygnus.com>
11285
11286         * libc/sys/go32/longjmp.S: Fix longjmp to not return 0.
11287
11288 Wed Feb 11 17:50:45 1998  Jeff Johnston  <jjohnstn@cygnus.com>
11289
11290         * libc/machine/powerpc/setjmp.S (setjmp, longjmp): Alignment code
11291         altered to not use a branch.  Also added hint that last
11292         bclr in longjmp will likely result in branch.
11293         
11294
11295 Mon Feb  9 03:44:02 1998  Geoffrey Noer  <noer@cygnus.com>
11296
11297         * libc/sys/cygwin32/crt0.c: add missing args to main() extern
11298
11299 Fri Feb  6 16:32:32 1998  Nick Clifton  <nickc@cygnus.com>
11300
11301         * libc/sys/sysnecv850/crt0.S (_start): Initialise _ctbp even for
11302         v850 builds.
11303
11304         * configure.in: Add -msmall-sld to target_cflags for v850 builds. 
11305
11306 Wed Feb  4 16:56:20 1998  Jeff Johnston  <jjohnstn@cygnus.com>
11307
11308         * libc/machine/powerpc/setjmp.S (longjmp): Fixed code
11309         that loads FR14 to specify offset of 8 rather than 4
11310         so it loads from offset 96 (where setjmp stored it).
11311
11312 Tue Feb  3 18:08:34 1998  Jeff Johnston  <jjohnstn@cygnus.com>
11313
11314         * libc/machine/sh/memcpy.S: (_memcpy): Update to
11315         latest version supplied by customer.
11316         * libc/machine/sh/memset.S (_memset): Ditto.
11317
11318 Mon Feb  2 16:20:39 1998  Nick Clifton  <nickc@cygnus.com>
11319
11320         * libc/sys/sysnecv850/Makefile.in (OFILES): Add link.o (for
11321         PR14730). 
11322
11323 Mon Feb  2 15:13:26 1998  Geoffrey Noer  <noer@cygnus.com>
11324
11325         * libc/include/string.h: remove redefinition of ffs
11326
11327 Wed Jan 28 13:30:14 1998  Geoffrey Noer  <noer@cygnus.com>
11328
11329         * libc/include/sys/signal.h: include _ansi.h so _EXFUN is
11330         defined
11331
11332 Wed Jan 28 10:38:34 1998  Jeff Johnston  <jjohnstn@cygnus.com>
11333
11334         * libc/machine/tic80/setjmp.S: Adding _setjmp to allow
11335         TI Libraries to link to libc.a
11336         
11337 Sat Jan 24 10:15:56 1998  Michael Meissner  <meissner@cygnus.com>
11338
11339         * libc/include/sys/fcntl.h (_open,_fcntl): Add prototypes.
11340         * libc/include/sys/stat.h (_{,f}stat): Ditto.
11341         * libc/include/sys/wait.h (_wait): Ditto.
11342         * libc/include/sys/unistd.h (_close,_fork,_getpid): Ditto.
11343         (_link,_lseek,_read,_sbrk,_unlink,_write): Ditto.
11344
11345 Fri Jan 23 11:32:10 1998  Michael Meissner  <meissner@cygnus.com>
11346
11347         * libc/machine/d10v/setjmp.S: Change to new ABI.  Add simple
11348         minded stabs so function name shows up when running the simulator
11349         with -t.
11350         * libc/sys/d10v/{crt0,trap}.S: Ditto.
11351
11352 Thu Jan 22 15:57:14 1998  Fred Fish  <fnf@cygnus.com>
11353
11354         * libc/sys/d10v/trap.S: Change syscalls to use trap 15. 
11355         * libc/sys/d10v/crt0.S: Use R6 where we used to use R2.
11356         Use R5 where we used to use R3.
11357         
11358 Wed Jan 21 14:22:23 1998  Bill Moyer <billm@cygnus.com>
11359
11360         * libc/stdlib/getopt.c (getopt): replaced __progname
11361         with nargv[0] to improve portability to imbedded systems.
11362
11363 Thu Jan 15 12:32:38 1998  Nick Clifton  <nickc@cygnus.com>
11364
11365         * libc/sys/arm/syscalls.c (initialise_angel_handles): Applied
11366         patch supplied by Tont.Thompson@arm.com to fix the creation of the
11367         stdout file.
11368
11369 Wed Jan 14 13:00:19 1998  Ian Lance Taylor  <ian@cygnus.com>
11370
11371         * libc/stdio/tmpnam.c (worker): Generate a different file name
11372         each time.
11373
11374         * libc/posix/popen.c (popen): If __CYGWIN32__, and execing /bin/sh
11375         fails, try an execlp for sh.
11376
11377         * host/any (INCLUDES): If target_os is cygwin32, then add a -I
11378         option for the winsup include directory.
11379
11380 Wed Jan  7 17:02:58 1998  Nick Clifton  <nickc@cygnus.com>
11381
11382         * libc/sys/arm/syscalls.c: Applied patches for Angel based remote
11383         debugging interface from Tony.Thompson@arm.com.
11384         
11385         * libc/sys/arm/crt0.S (_mainCRTStartup): ditto.
11386         * libc/sys/arm/swi.h: ditto.
11387
11388 Tue Jan  6 14:15:10 1998  Geoffrey Noer  <noer@cygnus.com>
11389
11390         * libc/sys/cygwin32/sys/dirent.h: add __d_dirhash field to
11391         DIR struct used for readdir hashes.
11392
11393 Thu Jan  1 11:22:22 1998  Jeffrey A Law  (law@cygnus.com)
11394
11395         * libc/string/strchr.c: Use "unsigned chars" as necessary.
11396
11397 Wed Dec 31 04:25:30 1997  Jeffrey A Law  (law@cygnus.com)
11398
11399         * libc/stdlib/mallocr.c (idx2binblock): Don't lose on 16bit
11400         integer targets.
11401
11402 Sat Dec 13 15:11:06 1997  Ian Lance Taylor  <ian@cygnus.com>
11403
11404         * libc/stdlib/mallocr.c (__malloc_copy): New function, compiled if
11405         INTERNAL_NEWLIB and __CYGWIN32__ and DEFINE_MALLOC.
11406         * libc/include/malloc.h: Add extern "C" if __cplusplus.
11407         (__malloc_copy): Declare.
11408
11409 Wed Dec 10 12:15:54 1997  Ian Lance Taylor  <ian@cygnus.com>
11410
11411         * libc/stdlib/mallocr.c: If INTERNAL_NEWLIB, include
11412         <sys/config.h>.
11413         (POINTER_UINT): Define.
11414         (DEFAULT_TRIM_THRESHOLD): Mark constants as long.
11415         (MALLOC_ALIGNMENT): Don't define if already defined.
11416         (malloc_extend_top): Cast pointers to POINTER_UINT, not unsigned
11417         long.
11418
11419 Tue Dec  9 19:23:42 1997  Michael Meissner  <meissner@cygnus.com>
11420
11421         * libc/string/memset.c (memset): Fiddle with code so that the long
11422         value being stored is not a stack value.  Unroll storing longs 4
11423         times.
11424
11425 Tue Dec  9 14:13:18 1997  Jeff Johnston  <jjohnstn@cygnus.com>
11426
11427         * Reduce code size for libm modules.
11428         * libm/math/w_sqrt.c (sqrt): Remove call to kernel_standard
11429         and simply move code into sqrt.
11430         * libm/math/wrf_lgamma.c (lgammaf_r): Likewise.
11431         * libm/math/wr_lgamma.c (lgamma_r): Likewise.
11432         * libm/math/wrf_gamma.c (gammaf_r): Likewise.
11433         * libm/math/wr_gamma.c (gamma_r): Likewise.
11434         * libm/math/wf_sinh.c (sinfh): Likewise.
11435         * libm/math/w_sinh.c (sinh): Likewise.
11436         * libm/math/wf_scalb.c (scalbf): Likewise.
11437         * libm/math/w_scalb.c (scalb): Likewise.
11438         * libm/math/wf_remainder.c (remainderf): Likewise.
11439         * libm/math/w_remainder.c (remainder): Likewise.
11440         * libm/math/wf_pow.c (powf): Likewise.
11441         * libm/math/w_pow.c (pow): Likewise.
11442         * libm/math/wf_log10.c (log10f): Likewise.
11443         * libm/math/w_log10.c (log10): Likewise.
11444         * libm/math/wf_log.c (logf): Likewise.
11445         * libm/math/w_log.c (log): Likewise.
11446         * libm/math/w_lgamma.c (lgamma): Likewise.
11447         * libm/math/wf_lgamma.c (lgammaf): Likewise.
11448         * libm/math/wf_jn.c (jnf): Likewise.
11449         * libm/math/w_jn.c (jn): Likewise.
11450         * libm/math/wf_j1.c (j1f): Likewise.
11451         * libm/math/w_j1.c (j1): Likewise.
11452         * libm/math/wf_j0.c (j0f): Likewise.
11453         * libm/math/w_j0.c (j0): Likewise.
11454         * libm/math/wf_hypot.c (hypotf): Likewise.
11455         * libm/math/w_hypot.c (hypot): Likewise.
11456         * libm/math/wf_gamma.c (gammaf): Likewise.
11457         * libm/math/w_gamma.c (gamma): Likewise.
11458         * libm/math/wf_fmod.c (fmodf): Likewise.
11459         * libm/math/w_fmod.c (fmod): Likewise.
11460         * libm/math/wf_exp.c (expf): Likewise.
11461         * libm/math/w_exp.c (exp): Likewise.
11462         * libm/math/wf_cosh.c (coshf): Likewise.
11463         * libm/math/w_cosh.c (cosh): Likewise.
11464         * libm/math/wf_atanh.c (atanhf): Likewise.
11465         * libm/math/w_atanh.c (atanh): Likewise.
11466         * libm/math/wf_atan2.c (atan2f): Likewise.
11467         * libm/math/w_atan2.c (atan2): Likewise.
11468         * libm/math/wf_asin.c (asinf): Likewise.
11469         * libm/math/w_asin.c (asin): Likewise.
11470         * libm/math/wf_acosh.c (acoshf): Likewise.
11471         * libm/math/w_acosh.c (acosh): Likewise.
11472         * libm/math/wf_acos.c (asocf): Likewise.
11473         * libm/math/w_acos.c (acos): Likewise.
11474         * libm/math/wf_sqrt.c (sqrtf): Likewise.
11475         * libm/math/k_standard.c (_k_standard): Don't require SVID behavior
11476         for embedded systems.
11477
11478 Mon Dec  8 12:12:58 1997  Ian Lance Taylor  <ian@cygnus.com>
11479
11480         * libc/stdlib/mallocr.c (malloc_extend_top): Add patch from Doug
11481         Lea in case of a foreign sbrk.
11482
11483 Fri Dec  5 23:27:28 1997  Ian Lance Taylor  <ian@cygnus.com>
11484
11485         Incorporate Doug Lea's malloc:
11486         * libc/stdlib/mallocr.c: Completely replaced.
11487         * libc/stdlib/malloc.c: Document malloc_usable_size and memalign.
11488         (realloc): Remove.
11489         * libc/stdlib/calloc.c (calloc): Just call _calloc_r.
11490         * libc/stdlib/mstats.c: Document mallinfo, malloc_stats, and
11491         mallopt.
11492         (mallinfo, malloc_stats, mallopt): New functions.
11493         (_mstats_r): Just call _malloc_stats_r.
11494         * libc/stdlib/malign.c: New file.
11495         * libc/stdlib/mlock.c: New file.
11496         * libc/stdlib/msize.c: New file.
11497         * libc/stdlib/mtrim.c: New file.
11498         * libc/stdlib/realloc.c: New file.
11499         * libc/stdlib/valloc.c: New file.
11500         * libc/stdlib/malloc.h: Remove.
11501         * libc/stdlib/callocr.c: Remove.
11502         * libc/stdlib/Makefile.in (OFILES): Add cfreer.o, freer.o,
11503         malign.o, malignr.o, mallinfor.o, malloptr.o, mallstatsr.o,
11504         mlock.o, msize.o, msizer.o, mtrim.o, pvallocr.o, realloc.o,
11505         reallocr.o, valloc.o, vallocr.o.
11506         (CHEWOUT_FILES): Add mlock.def, mstats.def.
11507         (MALLOC_CFLAGS): New variable.
11508         (mallocr.o): New target, build from mallocr.c.
11509         (freer.o, reallocr.o, callocr.o, cfreer.o, malignr.o): Likewise.
11510         (vallocr.o, pvallocr.o, mallinfor.o, mallstatsr.o): Likewise.
11511         (msizer.o, malloptr.o): Likewise.
11512         (malign.o, mlock.o, msize.o, mtrim.o, realloc.o): New targets.
11513         (valloc.o): New target.
11514         * libc/stdlib/stdlib.tex: Include mlock.def and mstats.def.
11515         * libc/include/malloc.h: Declare struct mallinfo, and new
11516         routines.
11517         * libc/include/stdlib.h (cfree): Correct declaration.
11518
11519 Tue Dec  2 10:12:16 1997  Nick Clifton  <nickc@cygnus.com>
11520
11521         * libc/include/machine/setjmp.h: Add support for Thumb target.
11522
11523         * libc/include/machine/ieeefp.h: Add support for Thumb target.
11524
11525         * configure.in (links): Add support for Thumb target.
11526
11527 Wed Nov 26 09:56:17 1997  Nick Clifton  <nickc@cygnus.com>
11528
11529         * libc/sys/arm/setjmp.S: Updated with version from branch.
11530
11531 Thu Nov 20 01:21:43 1997  Geoffrey Noer  <noer@cygnus.com>
11532
11533         * libc/include/stdio.h: add POSIX-required define L_ctermid
11534         for ctermid
11535
11536 Wed Nov 19 16:11:40 1997  Michael Meissner  <meissner@cygnus.com>
11537
11538         * configure.in (d30v-*-*): Define ABORT_MESSAGE, SMALL_MEMORY, in
11539         addition to MISSING_SYSCALL_NAMES.
11540
11541 Mon Nov 17 20:05:05 1997  J"orn Rennecke <amylaar@cygnus.co.uk>
11542
11543         * libc/include/sys/config.h: (UINT_MAX, for D10V):  Make unsigned.
11544
11545 Mon Nov 10 22:26:55 1997  Geoffrey Noer  <noer@cygnus.com>
11546
11547         * libc/include/string.h: change strsignal proto to return
11548         a char *.  This eliminates compile problems in gdb resulting
11549         from gdb's definition of strsignal in defs.h.
11550
11551 Mon Nov 10 17:11:08 1997  Geoffrey Noer  <noer@cygnus.com>
11552
11553         * libc/sys/cygwin32/sys/utime.h: new (moved here from
11554         winsup/include) so as not to conflict with the one in
11555         libc/include.
11556         * libc/include/string.h: add protos for strsignal, strtosigno
11557
11558 Mon Nov 10 13:49:54 1997  Michael Meissner  <meissner@cygnus.com>
11559
11560         * libc/include/sys/config.h: Define __IEEE_BIG_ENDIAN if d30v.
11561
11562         * configure.in (d30v-*-*): Add configuration.
11563
11564 Thu Oct 30 14:01:23 1997  Nick Clifton  <nickc@cygnus.com>
11565
11566         * configure.in (links): Add -DARM_RD[P|I]_MONITOR to target_cflags
11567         to select which kind of debug monitor is in use for an ARM target.
11568
11569         * libc/sys/arm/crt0.S: New version: Supports Thumb startups and
11570         Angel and Demon debug monitors.  Part of this code was supplied by
11571         Tony Thompson at ARM: athompso@arm.com.
11572
11573 Fri Oct 24 18:57:05 1997  Jeffrey A Law  (law@cygnus.com)
11574
11575         * strncat.c (strncat): Don't call strncpy; strncay has the wrong
11576         semantics when the count is greater than the length of the second
11577         source string.
11578
11579 Thu Oct 23 01:37:41 1997  Geoffrey Noer  <noer@cygnus.com>
11580
11581         * libc/include/sys/signal.h: reorder CYGWIN32 signal numbers
11582         * libc/include/sys/unistd.h: add protos for usleep, truncate,
11583         truncate and ftruncate take off_t, not size_t
11584
11585 Tue Oct 21 18:42:00 1997  Jim Wilson  <wilson@cygnus.com>
11586
11587         * libc/string/strcat.c (strcat): Add missing comment end.
11588         * libc/string/strncat.c (strncat): Likewise.
11589
11590 Tue Oct 21 17:23:34 1997  Nick Clifton  <nickc@cygnus.com>
11591
11592         * configure.in (links): Define PREFER_SIZE_OVER_SPEED for v850
11593         targets. 
11594         * libc/string/{memchr.c, memcmp.c, memcpy.c}:   Add space
11595         optimised version which is selected if PREFER_SIZE_OVER_SPEED is
11596         defined.  
11597         * libc/string/{memset.c, strcat.c, strchr.c}: Likewise.
11598         * libc/string/{strcmp.c, strcpy.c, strlen.c}: Likewise.
11599         * libc/string/{strncat.c, strncmp.c, strncpy.c}: Likewise.
11600
11601 Mon Oct 13 15:12:35 1997  Ian Lance Taylor  <ian@cygnus.com>
11602
11603         * libc/include/sys/param.h (BIG_ENDIAN): Define if __i386__.
11604         (LITTLE_ENDIAN, BYTE_ORDER): Likewise.
11605
11606 Thu Oct  9 13:54:44 1997  Doug Evans  <dje@canuck.cygnus.com>
11607
11608         * libc/machine/i386/setjmp.S: New file.
11609         * libc/machine/i386/Makefile.in: Delete COPYOFILES.
11610         (OFILES): Add setjmp.o.
11611         (setjmp.o): Add rule for.
11612         * configure.in: Don't set machine_dir for *-*-{go32,sco*,cygwin32}.
11613
11614 Tue Oct  7 14:01:29 1997 Bill Moyer     (billm@cygnus.com)
11615                          Jeffrey A Law  (law@cygnus.com)
11616
11617         * libc/string/{memchr.c, memcmp.c, memcpy.c}: Reimplement to run faster.
11618         * libc/string/{memset.c, strcat.c, strchr.c}: Likewise.
11619         * libc/string/{strcmp.c, strcpy.c, strlen.c}: Likewise.
11620         * libc/string/{strncat.c, strncmp.c, strncpy.c}: Likewise.
11621
11622 Mon Oct  6 14:07:59 1997  Nick Clifton  <nickc@cygnus.com>
11623
11624         * libc/sys/sysnecv850/Makefile.in (crt0.o trap.o): Explicit
11625         rules. 
11626
11627         * libc/include/sys/config.h: Use __v850 to select v850
11628         endianness. 
11629
11630         * libc/include/machine/setjmp.h: Use __v850 to select v850 jump
11631         buffer size.
11632
11633         * libc/include/machine/ieeefp.h: Use __v850 to select v850
11634         endianness. 
11635
11636 Thu Sep 25 14:11:37 1997  Geoffrey Noer  <noer@cygnus.com>
11637
11638         * libc/stdlib/setenv.c: change unsetenv definition to match
11639         style of setenv (with _DEFUN).  The string should be a const.
11640         * libc/include/stdlib.h: unsetenv proto should return void.
11641
11642 Tue Sep 23 18:17:20 1997  Geoffrey Noer  <noer@cygnus.com>
11643
11644         * libc/include/stdlib.h: define unsetenv proto for __CYGWIN32__
11645
11646 Thu Sep 18 12:50:15 1997  Angela Marie Thomas (angela@cygnus.com)
11647
11648         * libc/stdio/glue.h: remove.
11649         * libc/stdio/findfp.c, libc/stdio/fwalk.c: remove #include "glue.h"
11650         * libc/stdio/Makefile.in: remove glue.h dependencies
11651
11652 Wed Sep 17 17:42:27 1997  Nick Clifton  <nickc@cygnus.com>
11653
11654         * libc/sys/sysnecv850/crt0.S: Created V850e version.
11655         
11656 Tue Sep  9 10:40:57 1997  Doug Evans  <dje@canuck.cygnus.com>
11657
11658         * configure.in (target_cpu): Add `arc'.
11659
11660 Tue Sep  9 10:40:42 1997  Joel Sherrill  <joel@OARcorp.com>
11661
11662         * newlib/configure.in (*-*-rtems*): Add -DSIGNAL_PROVIDED and 
11663           -DREENTRANT_SYSCALLS_PROVIDED to the target_cflags.
11664         * newlib/libc/include/sys/errno.h: Add ENOTSUP.
11665         * newlib/libc/reent/reent.c: Add _wrapup_reent.
11666         * newlib/libc/sys/rtems/sys/types.h: Avoid redefinitions for go32.
11667
11668 Sun Sep  7 16:41:41 1997  Gavin Koch  <gavin@cygnus.com>
11669
11670         * libc/machine/mips/setjmp.S: Handle mips16 builds.
11671
11672 Thu Aug 21 20:05:38 1997  Ian Lance Taylor  <ian@cygnus.com>
11673
11674         * libc/include/stdio.h (siprintf): Declare.
11675
11676 Mon Aug 18 11:19:13 1997  Nick Clifton  <nickc@cygnus.com>
11677
11678         * libc/sys/sysnecv850/Makefile.in (.c.o): Add rule that includes
11679         TARGET_CFLAGS and NEWLIB_FLAGS.
11680
11681 Mon Aug 18 11:15:43 1997  Nick Clifton  <nickc@cygnus.com>
11682
11683         * configure.in (links): Add support for v850ea target.
11684
11685 Mon Aug 18 11:15:43 1997  Nick Clifton  <nickc@cygnus.com>
11686
11687         * configure.in (links): Add support for v850e target.
11688
11689 Wed Aug 13 19:16:54 1997  Nick Clifton  <nickc@cygnus.com>
11690
11691         * libc/sys/sysnecv850/crt0.S: Remove initial setting of r0 to 0.
11692
11693 Mon Aug 11 15:49:54 1997  Doug Evans  <dje@canuck.cygnus.com>
11694
11695         * configure.in (arc-*-*): Add support for.
11696         * libc/include/machine/ieeefp.h (__arc__): Add support for the ARC.
11697
11698 Fri Jul 25 17:37:41 1997  J"orn Rennecke <amylaar@cygnus.co.uk>
11699
11700         * libc/sys/sh/crt0.S (start): Add fpscr initialization for SH4.
11701
11702 Thu Jul 24 18:32:17 1997  Geoffrey Noer  <noer@cygnus.com>
11703
11704         * libc/stdlib/bsearch.c (bsearch): remove last unneeded
11705         comparison which accesses invalid memory when the key is
11706         larger than the last member of the array.
11707         * libc/include/machine/setjmp.h: add sigsetjmp, siglongjmp
11708         for CYGWIN32
11709         * libc/include/sys/unistd.h: add _POSIX defines for CYGWIN32
11710
11711 Tue Jul 22 16:03:06 1997  Ian Lance Taylor  <ian@cygnus.com>
11712
11713         * libc/include/stdlib.h (realpath): Declare if __CYGWIN32__ and
11714         not _STRICT_ANSI.
11715
11716 Thu Jul 10 15:11:52 1997  Doug Evans  <dje@canuck.cygnus.com>
11717
11718         * libm/math/k_standard.c (__kernel_standard): Call fflush(stdout)
11719         ifndef _USE_WRITE, instead of ifdef _USE_WRITE.
11720
11721 Thu Jul 10 16:00:09 1997  Mike Meissner  <meissner@cygnus.com>
11722
11723         * libc/machine/tic80/setjmp.S (setjmp,longjmp): Use ld.d and st.d
11724         to load/store memory.
11725
11726 Mon Jul  7 17:38:17 1997  Ian Lance Taylor  <ian@cygnus.com>
11727
11728         * libc/include/sys/fcntl.h: Define _O_* symbols with leading
11729         underscores if _WIN32.
11730
11731 Wed Jul  2 10:07:20 1997  Doug Evans  <dje@canuck.cygnus.com>
11732
11733         * libm/math/k_standard.c (__kernel_standard): Delete reentrancy
11734         support ifdef _USE_WRITE missed in last change.
11735         From Anders Blomdell <anders.blomdell@control.lth.se>.
11736
11737 Wed Jun 25 10:18:49 1997  Doug Evans  <dje@canuck.cygnus.com>
11738
11739         * libc/stdio/tmpnam.c (worker): Handle _open_r being stubbed out.
11740         (_tmpnam_r, _tempnam_r): Update.
11741
11742 Wed Jun 25 00:16:55 1997  Mark Alexander  <marka@cygnus.com>
11743
11744         * libc/machine/sparc/setjmp.S: New file.
11745         * libc/machine/sparc/Makefile.in: Add setjmp.
11746         * libc/include/machine/setjmp.h: Increase jmpbuf size for sparc.
11747
11748 Tue Jun 24 23:27:38 1997  Mark Alexander  <marka@cygnus.com>
11749
11750         * libc/include/machine/setjmp.h: Use __TIC80__ instead of __tic80__.
11751
11752 Tue Jun 24 14:53:40 1997  Doug Evans  <dje@canuck.cygnus.com>
11753
11754         From Joel Sherrill <joel@oarcorp.com>.
11755         * libc/stdlib/getenv.c (_findenv): Avoid dereferencing null `environ'.
11756
11757         Add rtems support.  From Joel Sherrill <joel@oarcorp.com>.
11758         * configure.in: Recognize *-*-rtems*.
11759         * libc/sys/rtems/{Makefile.in,crt0.c,dummysys.c}: New files.
11760         * libc/sys/rtems/sys/{features.h,sched.h,siginfo.h,signal.h,
11761         time.h,times.h,types.h}: New files.
11762         * libc/sys/rtems/include/{limits.h,signal.h,time.h}. New files.
11763
11764 Fri Jun 20 11:13:16 1997  Geoffrey Noer  <noer@cygnus.com>
11765
11766         patch from sos@prospect.com.ru (Sergey Okhapkin):
11767         * include/sys/wait.h: correct operator precidence bug
11768         in WIFSIGNALED
11769
11770 Wed Jun 18 22:08:27 1997  Geoffrey Noer  <noer@cygnus.com>
11771
11772         * libc/include/stdlib.h: remove unsetenv proto since it conflicts
11773         with newlib's unsetenv function
11774         * libc/sys/cygwin32/sys: new directory for includes
11775         * libc/sys/cygwin32/sys/dirent.h: move cygwin32's dirent.h
11776         here from winsup/include/sys
11777
11778 Mon Jun 16 21:02:22 1997  Geoffrey Noer  <noer@cygnus.com>
11779
11780         * libc/include/sys/unistd.h: _exit should only be
11781         labelled noreturn when not __CYGWIN32__
11782         * libc/include/stdlib.h: for __CYGWIN32__, add proto for unsetenv
11783         * libc/include/sys/signal.h: add SIGIO to _WIN32 list and
11784         increment NSIG
11785
11786 Thu Jun 12 18:52:41 1997  Ian Lance Taylor  <ian@cygnus.com>
11787
11788         * libc/include/sys/time.h: Only define timeval and timezone if
11789         _GNU_H_WINDOWS32_SOCKETS is not defined.
11790         * libc/include/sys/stat.h: If _WIN32, define _S_IFMT, etc.
11791
11792 Wed Jun 11 09:46:26 1997  Jeffrey A Law  (law@cygnus.com)
11793
11794         * libc/machine/mn10200/setjmp.S: Implement setjmp/longjmp
11795         * libc/machine/mn10300/setjmp.S: Likewise.
11796
11797         * libc/sys/sysmec/crt0.S: Use "call" instead of "calls" for
11798         the mn10300 (more relaxing opportunities).
11799
11800 Tue Jun 10 17:24:45 1997  Mike Meissner  <meissner@cygnus.com>
11801
11802         * configure.in (powerpc*-*-{eabi,elf,linux,rtems,sysv,solaris}):
11803         Build libraries with -mstrict-align.
11804
11805 Fri Jun  6 14:07:59 1997  Ian Lance Taylor  <ian@cygnus.com>
11806
11807         * libc/string/strlwr.c: New file.
11808         * libc/string/strupr.c: New file.
11809         * libc/include/string.h: Declare strlwr and strupr.
11810         * libc/string/Makefile.in (OFILES): Add strlwr.o and strupr.o.
11811         (CHEWOUT_FILES): Add strlwr.def and strupr.def.
11812         (strlwr.o, strupr.o): New targets.
11813         * libc/string/strings.tex: Include strlwr and strupr docs.
11814
11815         * libc/include/sys/types.h: Don't define u_char, et. al., if
11816         _GNU_H_WINDOWS32_SOCKETS is defined.  Likewise for fd_set,
11817         et. al.  Make FD_SETSIZE default 64 rather than 60.  Define
11818         _types_fd_set rather than fd_set, and define fd_set as a macro.
11819
11820         * libc/include/malloc.h: New file.
11821
11822         * libc/include/string.h: Define strcmpi, stricmp, strncmpi, and
11823         strnicmp if they are not already defined.
11824
11825         * libc/include/time.h: If __CYGWIN32__, declare tzset and define
11826         _timezone, _daylight, and _tzname.
11827
11828 Wed Jun  4 12:51:16 1997  Doug Evans  <dje@canuck.cygnus.com>
11829
11830         * configure.in: Sort all configuration tables.
11831
11832         From Joel Sherrill <joel@oarcorp.com>
11833         * Makefile.in (stmp-targ-include): Copy $(sys_dir)/include/*.h.
11834
11835 Tue Jun  3 14:47:46 1997  Ian Lance Taylor  <ian@cygnus.com>
11836
11837         * libc/include/sys/signal.h: Don't include <sys/types.h>.  Just
11838         use int when declaring kill.
11839
11840         * libc/include/sys/timeb.h: New file.
11841
11842 Mon Jun  2 12:06:58 1997  Geoffrey Noer  <noer@cirdan.cygnus.com>
11843
11844         * libc/include/sys/time.h: add itimer support for Cygwin32
11845
11846 Mon May 19 11:56:46 1997  Mike Meissner  <meissner@cygnus.com>
11847
11848         * libc/stdlib/abort.c (abort): If ABORT_MESSAGE is defined, write
11849         out a message that abort was called to stderr.
11850
11851 Fri May 16 15:02:59 1997  Bob Manson  <manson@charmed.cygnus.com>
11852
11853         * libc/sys/sysmec/fstat.c (_fstat): Set st_blksize to 4096
11854         so that libio doesn't freak.
11855
11856         * libc/sys/sysmec/sbrk.c (_sbrk): The argument is a size_t, not
11857         int.
11858
11859         * libc/stdlib/mallocr.c (_morecore_r): Use size_t for
11860         memory sizes, not int.
11861
11862 Wed May 14 21:16:58 1997  Bob Manson  <manson@charmed.cygnus.com>
11863
11864         * libm/math/ef_hypot.c: Use long constants where
11865         appropriate.
11866         * libm/math/ef_sqrt.c: Ditto.
11867
11868         * libc/sys/sysmec/times.c(_times): Change to times.
11869
11870         * libc/sys/sysmec/read.c(_read): The third argument is
11871         size_t.
11872         * libc/sys/sysmec/write.c (_write): Ditto.
11873
11874         * libc/sys/sysmec/lseek.c: Include unistd.h for off_t.
11875         (_lseek): It's off_t for the second argument.
11876
11877 Wed May 14 15:23:36 1997  Mike Meissner  <meissner@cygnus.com>
11878
11879         * libc/include/sys/config.h (__IEEE_LITTLE_ENDIAN): Define here,
11880         as well as machine/ieeefp.h.
11881
11882 Thu May  8 15:47:25 1997  Geoffrey Noer  <noer@cygnus.com>
11883
11884         * libc/include/sys/signal.h: add signal protos for winsup
11885         functions (when __CYGWIN32__), include types.h
11886         * libc/include/sys/types.h: Change __go32_types__ internal
11887         define to __MS_types__ since it's used for more than just
11888         GO32 configs.  Define this if GO32, __MSDOS__, or _WIN32 are
11889         defined.
11890         * libc/include/sys/unistd.h: add ftruncate proto for
11891         winsup functions (when __CYGWIN32__)
11892
11893 Fri Apr 25 10:10:16 1997  Doug Evans  <dje@canuck.cygnus.com>
11894
11895         * libc/sys/h8300hms/sbrk.c (stack_ptr): Add definition.
11896
11897 Thu Apr 24 15:46:51 1997  Mike Stump  <mrs@cygnus.com>
11898
11899         * libc/include/machine/setjmp.h: Add tic80 support.
11900         * libc/machine/tic80/setjmp.S: Likewise.
11901
11902 Tue Apr 22 16:54:40 1997  Geoffrey Noer  <noer@pizza.cygnus.com>
11903
11904         * libc/sys/cygwin32/crt0.c: Add reference to main() so we can
11905         link programs from libraries only (such as in the X11
11906         distribution)
11907
11908 Mon Apr 21 15:02:12 1997  Fred Fish  <fnf@cygnus.com>
11909
11910         * libc/sys/arm/syscalls.c (signal): Remove stub, signal()
11911         supplied elsewhere in newlib.
11912
11913 Mon Apr 14 16:25:55 1997  Ian Lance Taylor  <ian@cygnus.com>
11914
11915         * Makefile.in (INSTALL): Change install.sh to install-sh.
11916
11917 Fri Apr 11 17:04:02 1997  Jason Molenda  (crash@godzilla.cygnus.co.jp)
11918
11919         * README: update WWW address for on-line documentation.
11920
11921 Wed Apr  9 00:38:13 1997  Geoffrey Noer  <noer@cygnus.com>
11922
11923         * libc/include/sys/signal.h: for _WIN32, define SIGCONT and
11924         increment NSIG
11925
11926 Mon Apr  7 23:54:00 1997  Jeffrey A Law  (law@cygnus.com)
11927
11928         * libc/sys/sysmec/crt0.S: Update for new calling conventions on the
11929         mn10300.
11930         * libc/sys/sysmec/trap.S: Don't compare a register to itself.
11931
11932 Tue Mar 25 08:47:43 1997  Jeffrey A Law  (law@cygnus.com)
11933
11934         * libc/sys/arm/syscalls.c: Fix/add stack/heap collision detection.
11935         * libc/sys/d10v/syscalls.c: Likewise.
11936         * libc/sys/h8300hms/sbrk.c: Likewise.
11937         * libc/sys/h8500hms/syscalls.c: Likewise.
11938         * libc/sys/m88kbug/syscalls.c: Likewise.
11939         * libc/sys/sh/syscalls.c: Likewise.
11940         * libc/sys/sysmec/sbrk.c: Likewise.
11941         * libc/sys/sysnecv850/sbrk.c: Likewise.
11942         * libc/sys/w65/syscalls.c: Likewise.
11943         * libc/sys.tex: Update sbrk sample code to include stack/heap collision.
11944
11945 Tue Mar 18 14:14:34 1997  Jeffrey A Law  (law@cygnus.com)
11946
11947         * libc/sys/sysmec/trap.S: Use "syscall" to trigger an
11948         emulated syscall instead of "trap".
11949
11950 Fri Mar 14 11:26:13 1997  Michael Meissner  <meissner@cygnus.com>
11951
11952         * libc/sys/d10v/trap.S (__trap0): Use trap 15 for system calls,
11953         not trap 0.
11954
11955 Sun Mar  9 23:27:04 1997  Doug Evans  <dje@seba.cygnus.com>
11956
11957         * configure.in (m32r-*-*): Add -msdata=sdata to target_cflags.
11958
11959 Sat Mar  8 09:05:01 1997  Fred Fish  <fnf@cygnus.com>
11960
11961         * libc/machine/arm/Makefile.in: Fix comment, is for "arm"
11962         not "sh".
11963         * libc/machine/m32r/Makefile.in: Fix comment, is for "m32r"
11964         not "d10v".
11965         * libc/sys/tic80/crt0.c: New file for TIc80.
11966         * libc/sys/tic80/Makefile.in: New file for TIc80.
11967         * libc/machine/tic80/Makefile.in: New file for TIc80.
11968
11969 Wed Mar  5 11:32:12 1997  J.T. Conklin  <jtc@cygnus.com>
11970
11971         * libc/machine/sh/memcpy.S: New file.
11972         * libc/machine/sh/memset.S: New file.
11973         * libc/machine/sh/Makefile.in (OFILES): Add memcpy.o and memset.o
11974
11975 Thu Feb 27 16:27:55 1997  Fred Fish  <fnf@cygnus.com>
11976
11977         * libc/include/machine/ieeefp.h (_IEEE_LITTLE_ENDIAN): Define
11978         for TIc80.
11979
11980 Wed Feb 26 13:43:39 1997  Jeffrey A Law  (law@cygnus.com)
11981
11982         * libc/sys/sysmec/crt0.S: Handle new calling conventions for
11983         the mn10200.
11984
11985 Wed Feb 26 07:11:03 1997  Michael Meissner  <meissner@cygnus.com>
11986
11987         * libc/machine/powerpc/setjmp.S (longjmp): Correct return status
11988         (patch from andrew@pogo.WV.TEK.COM).
11989
11990 Fri Feb 14 11:49:28 1997  Doug Evans  <dje@canuck.cygnus.com>
11991
11992         * libc/machine/m32r/setjmp.S (setjmp): Save r12.
11993         (longjmp): Restore r12. Fix code that handles returning 1 if passed 0.
11994
11995 Mon Feb 10 10:02:34 1997  Fred Fish  <fnf@cygnus.com>
11996
11997         * configure.in:  Add cases for "tic80" to set machine_dir,
11998         sys_dir, and syscall_dir.
11999
12000 Sun Feb  2 17:57:15 1997  Geoffrey Noer  <noer@cygnus.com>
12001
12002         * libc/sys/cygwin32/crt0.c: initialize floating pt registers
12003
12004 Wed Jan 29 15:57:38 1997  Geoffrey Noer  <noer@cygnus.com>
12005
12006         * libc/include/math.h: avoid conflicts with ANSI C++ <exception>
12007
12008 Mon Jan 27 12:50:01 1997  Doug Evans  <dje@seba.cygnus.com>
12009
12010         * libc/machine/m32r/setjmp.S: Use proper comment delimiter.
12011         Use proper constant prefix.
12012
12013 Fri Jan 24 10:59:04 1997  Jeffrey A Law  (law@cygnus.com)
12014
12015         * libc/sys/sysmec/*.c: Don't cast args to syscall to integers,
12016         that loses on the mn10200 where ints and pointers are different
12017         sizes.
12018
12019 Tue Jan 14 13:29:55 PST 1997  Jeremy Allison <jra@cygnus.com>
12020
12021         * configure.in: Added -DSIGNAL_PROVIDED to cygwin32
12022         target as signal is provided in winsup.
12023
12024 Tue Jan 14 11:10:13 1997  Jeremy Allison <jra@cygnus.com>
12025
12026         * libc/include/sys/process.h: Corrected const definitions
12027         in spawn functions. Added cwait.
12028
12029 Thu Jan  2 12:22:41 1997  Jeffrey A Law  (law@cygnus.com)
12030
12031         * libc/include/machine/ieeefp.h: mn10200 uses 16bit ints and 32bit
12032         doubles.
12033         * libc/include/sys/config.h: Similarly.
12034
12035 Tue Dec 31 18:36:14 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12036
12037         * configure.in (sparc-sun-sunos*): Add -DSIGNAL_PROVIDED to the
12038         target_cflags.
12039         (i[3456]86-*-sco*): Ditto.
12040
12041         * libc/signal/Makefile.in (OFILES): Add signal.o.
12042         (CFILES): Add signal.c.
12043
12044         * libc/signal/raise.c (_raise_r): Only compile code if
12045         SIGNAL_PROVIDED is defined.
12046
12047         * libc/signal/signal.c: Redo whole file so that it works with
12048         current newlib.  Use _kill_r if no signal handler provided.
12049
12050         * libc/sys/{go32,sparc64,sysmec}/Makefile.in: Delete raise and
12051         signal stubs.
12052         * libc/sys/sysvnecv70/Makefile.in: Ditto.
12053         * libc/sys/sysnecv850/Makefile.in: Ditto.
12054
12055         * libc/sys/{go32,sparc64}/signal.c: Delete, stub no longer used.
12056         * libc/sys/sysmec/{raise,signal}.c: Ditto.
12057         * libc/sys/sysvnecv70/signal.s: Ditto.
12058         * libc/sys/sysnecv850/raise.c: Ditto.
12059
12060         * libc/sys/sysnecv850/kill.c (_kill): Encode signal # so that
12061         simulator and debugger can tell the difference between a signal
12062         being raised and an exit system call.
12063
12064         * NEWS: Document software signals being provided.
12065
12066 Mon Dec 23 11:54:19 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12067
12068         * libc/reent/impure.c (_REENT_ATTR): Delete in favor of
12069         __ATTRIBUTE_IMPURE_PTR__.  Move PowerPC definition to
12070         include/sys/config.h.
12071         (impure_data): Use __ATTRIBUTE_IMPURE_DATA__ for attributes.
12072         Change from 'inpure_data'.
12073         (_impure_ptr): Use __ATTRIBUTE_IMPURE_PTR__ for attributes.  Use
12074         &impure_data, not &inpure_data.
12075
12076         * libc/include/sys/config.h (__ATTRIBUTE_IMPURE_PTR__): If PowerPC
12077         and and System V ABI, define so that _impure_ptr lives in the
12078         .sdata section.
12079
12080 Sun Dec 22 23:33:05 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12081
12082         * libc/include/sys/reent.h (__ATTRIBUTE_IMPURE_PTR__): Define as
12083         nothing if not defined.
12084         (_impure_ptr): Use __ATTRIBUTRE_IMPURE_PTR__, so a machine can set
12085         its attributes.
12086
12087         * libc/include/sys/config.h (__ATTRIBUTE_IMPURE_PTR__): 
12088
12089 Wed Dec 18 10:12:04 1996  Jeffrey A Law  (law@cygnus.com)
12090
12091         * libc/sys/sysmec/crt0.S: Fix mn10200 stuff.
12092         * libc/sys/sysmec/trap.s: Handle mn10200 too.
12093         * libc/machine/mn10200/setjmp.S: Fix mn10200 stuff.
12094
12095 Mon Dec 16 10:05:36 1996  Jeffrey A Law  (law@cygnus.com)
12096
12097         * libc/sys/sysmec/crt0.S: Handle mn10200 too.
12098
12099 Fri Dec 13 11:05:20 1996  Jeremy Allison <jra@cygnus.com>
12100
12101         * libc/include/sys/errno.h: Added net errno's.
12102
12103 Wed Dec 11 16:24:25 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12104
12105         * libc/misc/ffs.c: New file to support ffs function for GCC test
12106         gcc.c-torture/execute/960909-1.c.
12107
12108         * libc/misc/Makefile.in ({O,CHEWOUT_}FILES): Add ffs.
12109
12110 Sat Dec  7 10:12:37 1996  Jeffrey A Law  (law@cygnus.com)
12111
12112         * libc/sys/sysmec/crt0.S: Handle underscore prefix.
12113         * libc/sys/sysmec/trap.S: Likewise.
12114
12115 Fri Dec  6 15:08:49 1996  Jim Wilson  <wilson@cygnus.com>
12116
12117         * configure.in (mips*vr4300*-*-*): Delete use of sys/vr4300.
12118         * libc/sys/vr4300/{Makefile.in,crt0.S,syscalls.c}: Delete.
12119
12120 Wed Dec  4 16:25:27 1996  Jeffrey A Law  (law@cygnus.com)
12121
12122         * libc/sys/sysmec/signal.c: Dummy file.
12123         * libc/sys/sysmec/Makefile.in: Build it.
12124
12125 Wed Nov 27 13:10:18 1996  Ian Lance Taylor  <ian@cygnus.com>
12126
12127         * libc/machine/mips/machine/regdef.h: Define pc as $pc for
12128         mips16.
12129
12130 Mon Nov 25 09:58:28 1996  Jeffrey A Law  (law@cygnus.com)
12131
12132         * libc/sys/sysmec/{crt0.S,trap0.S}: Actually try to implement
12133         c-startup and simulator traps.
12134
12135
12136         * libc/sys/sysmec/crt0.S: Remove bogus '_' symbol prefixing
12137         * libc/sys/sysmec/trap0.S: Likewise.
12138
12139 Sat Nov 23 09:01:03 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12140
12141         * libc/stdlib/mallocr.c (ROUND_TO): If SMALL_MEMORY, set to 0x7 to
12142         round to double word alignment.
12143         (_morecore_r): Combine rounding up pointers to both ROUND_TO and 8
12144         byte alignment.
12145
12146         * libc/include/sys/config.h (__IEEE_BIG_ENDIAN): Define if d10v.
12147
12148         * libc/sys/d10v/syscalls.c (_sbrk): Add better checks for running
12149         out of memory.
12150
12151 Mon Nov 18 13:08:26 1996  Jeffrey A Law  (law@cygnus.com)
12152
12153         * configure.in: Handle mn10200 and mn10300.
12154         * libc/include/machine/{ieeefp.h,setjmp.h}: Likewise.
12155         * libc/include/sys/config.h: Likewise.
12156         * libc/sys/sysmec: New directory for mec stuff.
12157         * libc/machine/mn10300: New directory for mn10300 stuff.
12158         * libc/machine/mn10200: Similarly for mn10200 stuff.
12159
12160 Fri Nov 15 16:41:41 1996  Doug Evans  <dje@canuck.cygnus.com>
12161
12162         * libc/sys/arm/crt0.S: Use .text, not .section .text.
12163         * libc/sys/arm/syscalls.c: Rewrite to set errno properly.
12164
12165         * libc/include/sys/types.h (_ST_INT32): New macro, local to file.
12166         (nlink_t): Change type from unsigned int to unsigned short.
12167         (mode_t): Ensure size is 32 bits even if int is 16.
12168         * libc/include/sys/stat.h (st_nlink): Change type to nlink_t.
12169         (st_spare[123]): Change type from int to long.
12170
12171 Fri Nov 15 11:41:50 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12172
12173         * libc/sys/d10v/syscalls.c (_sbrk): Align initial heap_end to 8
12174         byte boundary.
12175
12176         * configure.in (d10v*): Define SMALL_MEMORY.
12177
12178 Mon Nov 11 10:30:44 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12179
12180         * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Add
12181         -mrelocatable-lib and -mno-eabi flags.
12182
12183 Mon Nov 11 09:01:39 1996  Jeffrey A Law  (law@cygnus.com)
12184
12185         * libc/machine/h8300/memcpy.S: Fix comments to reflect reality.
12186         Fix handling of mis-aligned source operand when both the
12187         destination & length are properly aligned.
12188         
12189 Wed Oct 30 09:41:11 1996  Jeffrey A Law  (law@cygnus.com)
12190
12191         * libc/sys/sysnecv850/Makefile.in (OFILES): Add
12192         times.o, time.o and gettime.o
12193         * libc/sys/sysnecv850/{time.c, times.c, gettime.c}: New files.
12194         * libc/sys/sysnecv850/sys/syscall.h: Add SYS_times and
12195         SYS_gettimeofday.
12196
12197 Tue Oct 29 13:40:09 1996  Jeffrey A Law  (law@cygnus.com)
12198
12199         * libc/sys/sysnecv850/Makefile.in (OFILES): Add access.o
12200         * libc/sys/sysnecv850/access.c: New file.
12201
12202 Mon Oct 21 19:47:02 1996  Ian Lance Taylor  <ian@cygnus.com>
12203
12204         * libc/sys/vr4300/Makefile.in (clean): Remove $(OFILES).
12205
12206         * libc/stdlib/mprec.h (word0, word1): Use __uint32_t, not unsigned
12207         long.
12208
12209 Mon Oct 21 14:43:07 1996  Jeffrey A Law  (law@cygnus.com)
12210
12211         * libc/sys/sysnecv850/crt0.S: Initialize ep and gp registers.
12212
12213 Thu Oct 17 11:47:16 1996  Doug Evans  <dje@seba.cygnus.com>
12214
12215         * libc/include/machine/{ieeefp.h,setjmp.h}: Add m32r support.
12216         * libc/include/sys/config.h: Add m32r support.
12217
12218 Wed Oct 16 23:08:05 1996  Jeffrey A Law  (law@cygnus.com)
12219
12220         * libc/sys/sysnecv850/v850.ld: Remove.  It doesn't belong
12221         here.
12222
12223 Wed Oct 16 21:18:07 1996  Mark Alexander  <marka@cygnus.com>
12224
12225         * libc/include/machine/setjmp.h: Add D10v support.
12226
12227 Tue Oct 15 22:28:26 1996  Jeffrey A Law  (law@cygnus.com)
12228
12229         * configure.in: Configure the "libc/syscalls" directory for
12230         the v850.
12231
12232         * libc/sys/sysnecv850/{close.c, execve.c, fork.c}: Add missing '_'.
12233         * libc/sys/sysnecv850/{fstat.c, getpid.c, kill.c}: Likewise.
12234         * libc/sys/sysnecv850/{lseek.c, open.c, read.c}: Likewise.
12235         * libc/sys/sysnecv850/{sbrk.c, stat.c, unlink.c}: Likewise.
12236         * libc/sys/sysnecv850/{wait.c, write.c}: Likewise.
12237
12238 Tue Oct 15 16:24:39 1996  Stu Grossman  (grossman@critters.cygnus.com)
12239
12240         * libc/sys/sysnecv850/crt0.S (start):  Allocate spill space on
12241         stack for args for main and other routines.  Zero out args for
12242         main.
12243
12244         * libc/sys/sysnecv850/v850.ld:  New.  Linker script to layout memory
12245         correctly.
12246
12247 Tue Oct 15 11:51:42 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12248
12249         * libc/stdio/findfp.c (std): Remove extraneous ';' after
12250         function.
12251
12252         * libc/sys/d10v/sys/syscall.h (SYS_kill): Add.
12253
12254         * libc/sys/d10v/{syscalls.c,trap.S} (_kill,_getpid): Make these
12255         real system calls now.
12256
12257         * libc/stdio/setvbuf (setvbuf): Cast pointers to _POINTER_INT
12258         before casting them to int.
12259         * libc/stdio/tmpnam.c (_tempnam_r): Ditto.
12260
12261         * libc/stdlib/mallocr.c (_morecore_r): Use _POINTER_INT when
12262         aligning pointer.
12263         * libc/string/memset.c (memset): Ditto.
12264         
12265         * libc/stdio/vfscanf.c (__svfscanf): When converting to pointer,
12266         first convert ints to _POINTER_INT to eliminate GCC warning.
12267
12268         * libc/stdio/vfprintf.c (_vfprintf_r): Use _POINTER_INT when
12269         processing %p.
12270
12271         * libm/math/ef_scalb.c (__ieee754_scalbf): Cut down range to 32000
12272         from 65000 if ints are only 16 bits.
12273
12274         * libm/math/sf_scalbn.c (scalbnf): Cut down overflow test to 30000
12275         from 50000 if ints are only 16 bits.
12276
12277         * libc/include/sys/config.h (_POINTER_INT): New macro, to give an
12278         int type that is the same size as a pointer.
12279
12280         * libc/misc/dprintf.c (__dprintf): Use _POINTER_INT when
12281         processing %p.
12282         (get_number): Explicitly cast number to long before shifting by 16
12283         or 24, in case ints are short.
12284
12285         * libc/include/sys/config.h (_POINTER_INT): Define as short.
12286
12287 Wed Oct  9 16:54:32 1996  Jeremy Allison <jra@cygnus.com>
12288
12289         * libc/string.h: Added ffs, removed swab.
12290         * libc/sys/errno.h: Added EOPNOTSUPP.
12291         * libc/sys/unistd.h: Added swab.
12292
12293 Thu Oct  3 17:08:50 1996  Jeremy Allison <jra@cygnus.com>
12294
12295         * libc/include/sys/stat.h: Added fchmod.
12296         * libc/include/sys/unistd.h: Added fsync.
12297
12298 Tue Oct  1 17:34:08 1996  Jeremy Allison <jra@cygnus.com>
12299
12300         * libc/include/sys/errno.h: Added defines for EPFNOSUPPORT (96)
12301         and ECONNRESET (104) for cygwin32.
12302
12303 Tue Oct  1 16:24:05 1996  Gavin Koch  <gavin@cygnus.com>
12304
12305         * libc/sys/sysnecv850/_exit.c: added _do_dtors to
12306         do the static destructors.
12307         
12308 Mon Sep 30 15:59:05 1996  Stu Grossman  (grossman@critters.cygnus.com)
12309
12310         * libc/sys/sysnecv850/trap.S:  Change I/O to use trap 31.
12311
12312 Mon Sep 30 12:02:50 1996  Doug Evans  <dje@canuck.cygnus.com>
12313
12314         * libc/machine/m32r/{Makefile.in,setjmp.S}: New files.
12315         * configure.in: Recognize m32r-*-*.
12316
12317 Mon Sep 30 00:34:41 1996  James G. Smith  <jsmith@cygnus.co.uk>
12318
12319         * libc/sys/arm/trap.S (__rt_stkovf_split_big,
12320         __rt_stkovf_split_small): Added default software stack overflow
12321         handlers, which just call SWI_Exit.
12322         * libc/sys/arm/crt0.S (_mainCRTStartup): Simple software stack
12323         limit initialisation.
12324
12325 Fri Sep 27 13:08:03 1996  Mark Alexander  <marka@cygnus.com>
12326
12327         * libc/sys/d10v/{trap.S,sys/syscall.h}: Add time() function.
12328
12329 Fri Sep 27 12:32:00 1996  Jeremy Allison <jra@cygnus.com>
12330
12331         * libc/include/sys/types.h: Added ssize_t definition.
12332         
12333 Wed Sep 25 14:52:18 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12334
12335         * libc/machine/d10v/setjmp.S: Use ';' for comments.
12336         * libc/sys/d10v/{crt0.S,trap.S}: Ditto.
12337
12338         * libc/machine/d10v/setjmp.S (longjmp): Use exef0t || instead of
12339         branch around a single ldi instruction.
12340
12341         * libc/sys/d10v/crt0.S (_start): Use auto-increment to zero bss.
12342         Call exit, instead of just issuing a stop instruction.
12343
12344 Sun Sep 22 17:26:55 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12345
12346         * libc/sys/d10v/{trap.S,syscalls.c}: Add -mint32 support.
12347
12348 Fri Sep 20 13:23:12 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12349
12350         * libc/stdlib/mprec.h: Explicitly declare all large constants as
12351         longs, and then cast them to __uint32_t.
12352
12353         * libc/include/sys/config.h: Protect against multiple inclusions.
12354
12355 Tue Sep 17 13:10:33 1996  Mark Alexander  <marka@cygnus.com>
12356
12357         * configure.in (d10v*): Set syscall_dir.
12358
12359 Sun Sep 15 10:41:59 1996  Mark Alexander  <marka@cygnus.com>
12360
12361         * libc/sys/d10v/crt0.S: Set stack pointer.
12362
12363 Thu Sep 12 13:02:38 1996  Mark Alexander  <marka@cygnus.com>
12364
12365         * libc/sys/d10v/{trap.S, syscalls.c}: Rewrite most system calls
12366         in assembly for efficiency.  Change calling convention to allow
12367         long ints to be returned.
12368
12369 Wed Sep 11 10:28:18 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12370
12371         * libc/machine/v850/Makefile.in (setjmp.o): Fix dependency.
12372
12373 Thu Sep  5 19:23:06 1996  Doug Evans  <dje@canuck.cygnus.com>
12374
12375         * libc/posix/execvp.c (execvp): Don't search PATH if file has '/'.
12376         Handle empty entries in $PATH.
12377
12378 Tue Sep 03 18:15:02 1996  Mark Alexander  <marka@cygnus.com>
12379
12380         * libc/machine/d10v/setjmp.S: Make it really work.
12381
12382 Tue Sep  3 12:16:26 1996  Ian Lance Taylor  <ian@cygnus.com>
12383
12384         * libc/sys/sh/crt0.S: If __ELF__, use ELF section attributes for
12385         the .stack section.
12386
12387 Tue Sep  3 10:08:45 1996  Jeffrey A Law  (law@cygnus.com)
12388
12389         * sys/sysnecv850/sys/file.h: Remove.
12390         * sys/sysnecv850/sys/syscall.h: New file.
12391         * sys/sysnecv850/{misc.c,syscalls.c,malloc.c}: Deleted.
12392         * sys/sysnecv850/{chmod.c, chown.c, close.c, creat.c} New files.
12393         * sys/sysnecv850/{execv.c, execve.c, fork.c, fstat.c} New files.
12394         * sys/sysnecv850/{getpid.c, isatty.c, kill.c, lseek.c} New files.
12395         * sys/sysnecv850/{open.c, pipe.c, raise.c, read.c} New files.
12396         * sys/sysnecv850/{stat.c, unlink.c, utime.c, wait.c} New files.
12397         * sys/sysnec850/trap.S: New file.
12398         * sys/sysnecv850/{_exit.c, write.c}: Use new TRAP0 mechanism for
12399         syscalls.
12400         * sys/sysnecv850/crt0.S: Use cmp/bl, not tst/bz.
12401         * sys/sysnec850/sbrk.c: New version.
12402
12403 Sun Sep  1 20:08:27 1996  Jeffrey A Law  (law@cygnus.com)
12404
12405         * sys/sysnecv850/crt0.S: Fix order of comparison args.  Loop
12406         as long as r6 is less than r7.
12407
12408 Sun Sep  1 13:54:19 1996  Ian Lance Taylor  <ian@cygnus.com>
12409
12410         * Makefile.in (mostlyclean): Separate from clean target.  Don't
12411         remove *.a or targ-include.
12412         * libc/machine/sparc/Makefile.in (mostlyclean): New target.
12413
12414 Sun Sep  1 11:35:26 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12415
12416         * libc/include/machine/ieeefp.h (_DOUBLE_IS_32BITS): Define for
12417         d10v.
12418         (__SMALL_BITFIELDS): Ditto.
12419
12420         * libc/include/sys/config.h (_DOUBLE_IS_32BITS): Define for d10v.
12421
12422 Sat Aug 31 16:42:36 1996  Jeffrey A Law  (law@cygnus.com)
12423
12424         * libc/sys/sysnecv850/misc.c (raise, getpid, kill): Remove '_'
12425         prefix.
12426
12427         * libc/sys/sysnecv850/sbrk.c (sbrk): Remove '_' prefix.
12428         * libc/sys/sysnecv850/syscalls.c (read, lseek, close): Likewise.
12429         * libc/sys/sysnecv850/syscalls.c (fstat, open, close): Likewise.
12430         * libc/sys/sysnecv850/write.c (write): Likewise.
12431
12432         * libc/sys/sysnecv850/crt0.S: Don't try to zero out an empty
12433         .bss.
12434
12435 Fri Aug 30 11:18:45 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12436
12437         * libc/include/sys/config.h: Define INT_MAX, UINT_MAX
12438         appropriately for D10V, depending on -mint16/-mint32.
12439
12440 Thu Aug 29 16:09:37 1996  Mark Alexander  <marka@cygnus.com>
12441
12442         * configure.in: Add cases for D10V.
12443
12444 Thu Aug 29 17:03:23 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12445
12446         * configure.in (i[345]86-*-*): Recognize i686 for pentium pro.
12447
12448 Wed Aug 28 21:05:52 1996  Jeffrey A Law  (law@cygnus.com)
12449
12450         * libc/include/machine/ieeefp.h: Fix typo.
12451
12452 Wed Aug 28 19:47:55 1996  Mark Alexander  <marka@cygnus.com>
12453
12454         * libc/sys/d10v: New directory for D10V stuff.
12455         * libc/include/machine/ieeefp.h: Add D10V defines.
12456
12457 Mon Aug 26 13:34:58 1996  Doug Evans  <dje@canuck.cygnus.com>
12458
12459         * libc/include/sys/errno.h: Add winsup/include/sys/errno.h values:
12460         ELOOP, ENOBUFS, EAFNOSUPPORT, EPROTOTYPE, ENOTSOCK, ENOPROTOOPT,
12461         ESHUTDOWN, ECONNREFUSED, EADDRINUSE, ECONNABORTED, EWOULDBLOCK.
12462         * libc/string/strerror.c (strerror): Add them.
12463
12464 Thu Aug 22 16:38:19 1996  Jeffrey A Law  (law@cygnus.com)
12465
12466         * libc/sys/sysnecv850: New directory for v850 stuff.
12467
12468         * libc/machine/v850: New directory for v850 stuff.
12469         * libc/machine/v850/setjmp.S: setjmp/longjmp support.
12470
12471         * configure.in: Add support for the v850.
12472
12473         * libc/include/machine/ieeefp.h: Add v850 defines.
12474         * libc/include/machine/setjmp.h: Likewise.
12475         * libc/include/sys/config.h: Add v850 defines.
12476
12477 Sat Aug 17 04:06:36 1996  Geoffrey Noer  <noer@cygnus.com>
12478
12479         * libc/include/machine/ieeefp.h
12480         * libc/include/machine/setjmp.h
12481         * libc/include/sys/fcntl.h
12482         * libc/include/sys/signal.h
12483         * libc/include/sys/types.h
12484         * libc/stdlib/system.c:
12485         Fix preprocessor defines to match new scheme (_WIN32 for WIN32
12486         API availability, __CYGWIN32__ for cygwin32 environment specific).
12487
12488 Thu Aug 15 17:09:21 1996  Geoffrey Noer  <noer@cygnus.com>
12489
12490         * libc/include/stdlib.h: add multibyte character functions.  Add
12491         __eprintf for assert.
12492
12493 Thu Aug 15 11:15:40 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12494
12495         * libc/stdlib/malloc.h (MALLOC_ALIGNMENT): Use either pointer
12496         arithmetic or __alignof__ to properly get the alignment, instead
12497         of hardwiring it to 4.
12498
12499 Wed Aug 14 23:43:28 1996  Geoffrey Noer  <noer@cygnus.com>
12500
12501         * libc/stdio/fseek.c: add fflush call to adjust seek offset
12502         on append stream (fix from NetBSD sources), adjust curoff offset
12503         for ungetc's benefit.
12504         * libc/stdio/ftell.c: adjust curoff offset for ungetc's benefit.
12505         * libc/stdio/rewind.c: replace code with up to date NetBSD
12506         code to undo hacks made to work around above problem of not
12507         having fflush call mentioned above
12508
12509 Fri Aug  2 18:28:07 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
12510
12511         * libc/reent/{closer.c, execr.c, fstatr.c, linkr.c, lseekr.c,
12512         openr.c, readr.c, sbrkr.c, signalr.c, statr.c, timer.c, writer.c}:
12513         Partially revert last changes.  The thread specific errno is set
12514         iff if the underlying syscall fails and the global errno is not
12515         zero.
12516
12517 Fri Jul 19 11:41:52 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
12518
12519         * libc/reent/filer.c: Removed files, all functions have split out
12520         into their own files.
12521         * libc/reent/{closer.c, lseekr.c, openr.c, readr.c, writer.c}: 
12522         New files containing functions formally in filer.c
12523         * libc/reent/Makefile.in: Updated for above change.
12524
12525         * libc/reent/execr.c (_fork_r, _wait_r): Set errno if underlying
12526         syscall fails, not if errno is changed.
12527         * libc/reent/filer.c (_open_r, _close_r, _lseek_r, _read_r, 
12528         _write_r): Likewise.
12529         * libc/reent/fstatr.c (_fstat_r): Likewise.
12530         * libc/reent/linkr.c (_link_r, _unlink_r): Likewise.
12531         * libc/reent/sbrkr.c (_sbrk_r): Likewise.
12532         * libc/reent/signalr.c (_kill_r): Likewise.
12533         * libc/reent/statr.c (_stat_r): Likewise.
12534         * libc/reent/timer.c (_gettimeofday_r): Likewise.
12535
12536         * libc/reent/{execr.c, filer.c, fstatr.c, linkr.c, sbrkr.c,
12537         signalr.c, statr.c, timer.c} (errno): declare extern rather
12538         than as a common.
12539
12540         * libc/stdio/vfprintf.c (__sbprintf): Use the VFPRINTF macro
12541         instead of calling vfprintf so that i*printf will not require
12542         floating point support code.
12543         
12544 Mon Jul 15 16:50:59 1996  Doug Evans  <dje@canuck.cygnus.com>
12545
12546         * libc/posix/execvp.c (execvp): Use posix_path_list_p to determine
12547         path delimiter.
12548         * libc/include/sys/unistd.h (_SC_PATH_RULES): Delete.
12549         (_PATH_RULES_{UNKNOWN,WIN32,POSIX}): Delete.
12550
12551 Thu Jul 11 14:34:14 1996  Geoffrey Noer  <noer@cygnus.com>
12552
12553         * libc/include/signal.h: _sig_func_ptr function takes an int
12554         * libc/include/sys/signal.h: sa_handler function takes an int
12555
12556 Tue Jul  9 21:22:32 1996  Jeffrey A Law  (law@cygnus.com)
12557
12558         * libc/include/machine/ieeefp.h: Simplify H8/S support.
12559         * libc/include/sys/config.h: Add missing H8/S conditional.
12560
12561 Sun Jun 30 12:05:46 1996  Doug Evans  <dje@canuck.cygnus.com>
12562
12563         * libc/include/sys/unistd.h (MAXPATHLEN): Add cygwin32 value.
12564
12565 Wed Jun 26 09:57:54 1996  Jeffrey A Law  (law@cygnus.com)
12566
12567         * libc/include/machine/setjmp.h: Handle H8/S.
12568         * libc/include/machine/ieeefp.h: Likewise.
12569         * libc/include/sys/config.h: Likewise.
12570         * libc/machine/h8300/{defines.h, memcpy.S, memset.S}: Likewise.
12571         * libc/machine/h8300/{reg_memcpy.S, reg_memset.S}: Likewise.
12572         * libc/machine/h8300/{strcmp.S, setjmp.S}: Likewise.
12573         * libc/sys/h8300hms/crt0.S: Likewise.
12574
12575 Tue Jun 25 23:15:45 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12576
12577         * Makefile.in (datadir): Set to $(prefix)/share.
12578         (oldincludedir, docdir): Removed.
12579         * doc/Makefile.in (datadir): Set to $(prefix)/share.
12580         (oldincludedir, docdir): Removed.
12581         * libc/Makefile.in (datadir): Set to $(prefix)/share.
12582         (oldincludedir, docdir): Removed.
12583         * libm/Makefile.in (datadir): Set to $(prefix)/share.
12584         (oldincludedir, docdir): Removed.
12585
12586 Fri Jun 21 19:24:41 1996  Ian Lance Taylor  <ian@cygnus.com>
12587
12588         * libc/include/sys/reent.h (_REENT_INIT): Update for change to
12589         _reent struct.
12590
12591 Wed Jun 19 14:00:09 1996  Doug Evans  <dje@canuck.cygnus.com>
12592
12593         * libc/posix/execvp.c: Delete _WIN32 support.  For __CYGWIN32__
12594         fetch current path rules with sysconf and handler posix/win32
12595         appropriately.
12596
12597         * libc/include/sys/unistd.h (_PATH_RULES{,_POSIX,_WIN32}): Define.
12598
12599         * libc/include/process.h: Prepend '_' to P_{WAIT,NOWAIT,OVERLAY}.
12600         (WAIT_CHILD): Always define.
12601
12602 Sat Jun 15 17:50:42 1996  Ian Lance Taylor  <ian@cygnus.com>
12603
12604         * libc/stdlib/eprintf.c: New file.
12605         * libc/stdlib/Makefile.in (OFILES): Add eprintf.o.
12606         (eprintf.o): New target.
12607
12608 Thu Jun 13 16:44:32 1996  Doug Evans  <dje@canuck.cygnus.com>
12609
12610         * libc/sys/cygwin32/crt0.c (__cygwin_crt0_bp): New global.
12611         (mainCRTStartup): Do int3 if __cygwin_crt0_bp non-zero.
12612
12613 Thu Jun 13 17:45:17 1996  Mike Meissner  <meissner@rtl.cygnus.com>
12614
12615         * libc/include/machine/ieeefp.h: Add support for AIX and Windows
12616         NT in PowerPC endianess cases.
12617
12618 Tue Jun 11 12:26:28 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12619
12620         * libc/include/machine/ieeefp.h: Clean up PowerPC endianess.
12621
12622 Thu Jun  6 11:34:20 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12623
12624         * libc/string/strtok.c: Fix doc typo.
12625
12626 Mon Jun  3 11:30:00 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
12627
12628         * libc/include/sys/reent.h (struct _reent): Removed _asctime,
12629         _next, _scanpoint, _signgam fields.
12630
12631         * libc/include/stdlib.h (rand_r): Added new declaration.
12632         (_rand_r, _srand_r): Removed declarations.
12633         * libc/stdlib/rand.c (_rand_r, _srand_r): Removed, these functions
12634         have been made obsolete by rand_r.
12635         * libc/stdlib/rand_r.c: New file, rand_r function as specified
12636         by POSIX.1c.
12637         
12638         * libc/string/strtok.c: Update documentation to describe
12639         strtok_r().
12640
12641 Sat Jun  1 23:50:39 1996  Michael Meissner  <meissner@cygnus.com>
12642
12643         * libc/include/sys/stat.h (stat structure): Use the expanded stat
12644         structure on Solaris, and PowerPC systems even though __svr4__ is
12645         defined.
12646
12647 Tue May 28 13:02:42 1996  Doug Evans  <dje@canuck.cygnus.com>
12648
12649         * libc/sys/go32/sys/errno.h (ENOSYS,ESPIPE): Keep values <= 255.
12650
12651 Fri May 17 10:34:44 1996  Ian Lance Taylor  <ian@cygnus.com>
12652
12653         * host/any: Use ../.. rather than .. to get to the main build
12654         directory.  This matches the current layout of the build
12655         directory.
12656
12657 Wed May 15 15:52:27 1996  Jeffrey A Law  (law@cygnus.com)
12658
12659         * libc/machine/h8300/__main.S: Delete.  No longer needed.
12660         * libc/machine/h8300/Makefile.in: Corresponding changes.
12661         * libc/sys/h8300hms/crt1.c: New file.
12662         * libc/sys/h8300hms/Makefile.in: Corresponding changes.
12663         * libc/sys/h8300hms/crt0.s: Call __main.
12664
12665         * libc/sys/h8300hms/crt0.S: Use temporary label names
12666         for branch targets.
12667
12668 Mon May 13 14:26:30 1996  Doug Evans  <dje@canuck.cygnus.com>
12669
12670         * libc/stdio/fopen.c (_fopen_r): Fix arguments to fseek.
12671
12672 Fri May  3 16:38:23 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12673
12674         * libc/reent/impure.c (_impure_ptr): Force the impure pointer into
12675         .sdata on the PowerPC so that we can link newlib with code
12676         compiled with -msdata.
12677
12678 Mon Apr 29 21:38:02 1996  Doug Evans  <dje@canuck.cygnus.com>
12679
12680         * libc/sys/arm/syscalls.c (_sbrk): Rename end to __end__.
12681
12682 Thu Apr 25 06:38:59 1996  Michael Meissner  <meissner@cygnus.com>
12683
12684         * libc/sys/cygwin32/crt0.c (mainCRTStartup): On PowerPC, set the
12685         exception handler to __cygwin_exception_handler.
12686
12687 Tue Apr 23 15:14:20 1996  Ian Lance Taylor  <ian@cygnus.com>
12688
12689         * libc/include/machine/setjmp.h: Check _AM29K, not ___AM29K__.
12690
12691 Sun Apr 21 12:11:51 1996  Doug Evans  <dje@blues.cygnus.com>
12692
12693         * libm/math/Makefile.in ({w,wf}_cabs.o,{w,wf}_drem.o): Add rule for
12694         SunOS VPATH.
12695         * libc/stdlib/Makefile.in (atoff.o,atol.o,mblen.o,mbstowcs.o,
12696         wcstombs.o): Likewise.
12697
12698 Thu Apr 18 12:37:01 1996  Doug Evans  <dje@canuck.cygnus.com>
12699
12700         * libc/stdlib/environ.c (initial_env): New static local.
12701         (environ): Point to `initial_env'.
12702
12703         * libc/include/machine/setjmp.h: Clean up.
12704         (__H8300H__,__PPC__): Define _JBTYPE.
12705         (__arm__): Provide entry for.
12706         (sigjmp_buf): Delete.
12707         (jmp_buf): Use _JBTYPE if defined, otherwise int.
12708
12709 Thu Apr 18 12:10:52 1996  Jeffrey A Law  (law@cygnus.com)
12710
12711         * libc/machine/h8300/strcmp.S: Sign extend the result to
12712         32bits so we don't lose with -mint32.
12713
12714 Sun Apr 14 19:59:52 1996  Doug Evans  <dje@canuck.cygnus.com>
12715
12716         * libc/sys/go32/sys/errno.h: New file.
12717         * libc/sys/go32/Makefile.in (stat.o): Depend on stat.c.
12718         * libc/sys/go32/gerrno.s (syscall_error): Call __errno to get
12719         errno's address (make compatible with rest of newlib).
12720         * libc/sys/go32/stat.c (fixinode): Set errno upon failure.
12721         * libc/string/strerror.c (strerror): Surround each case with #ifdef.
12722
12723 Thu Mar 28 13:44:42 1996  Doug Evans  <dje@canuck.cygnus.com>
12724
12725         * libc/machine/sparc/{scan.c,shuffle.c}: New files.
12726         * libc/machine/sparc/Makefile.in: Build them.
12727         * libc/machine/sparc/machine/sparclet.h: New file.
12728
12729 Mon Mar 25 15:29:14 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
12730
12731         * libc/machine/sh/asm.h: New file.
12732         * libc/machine/sh/setjmp.S: Only save clobbered registers.  Added
12733         support for SH3e's FP registers.  Use asm.h.
12734
12735 Mon Mar 25 11:59:23 1996  Jeffrey A Law  (law@cygnus.com)
12736
12737         * libc/stdio/vfprintf.c (cvt): Accept a reent structure
12738         as first argument.  Call _dtoa_r and pass the reent structure
12739         instead of calling __dtoa.
12740
12741 Fri Mar 22 13:59:37 1996  Jeffrey A Law  (law@cygnus.com)
12742
12743         * libc/include/sys/config.h: Define DOUBLE_IS_32BITS for
12744         the h8300, h8500, and others.  Add comments for some rather
12745         dubious code.
12746
12747 Thu Mar 14 18:04:43 1996  Ian Lance Taylor  <ian@cygnus.com>
12748
12749         * Makefile.in (check): Check that testsuite exists before cd.
12750
12751 Tue Mar 12 11:46:47 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12752
12753         * libc/include/string.h (strsep): Correct prototype.
12754
12755 Mon Mar 11 09:55:19 1996  Doug Evans  <dje@charmed.cygnus.com>
12756
12757         * libc/sys/h8300/_exit.c (_exit,__exit): Set r0 to 0 before `sleep'.
12758         * libc/sys/h8300/misc.c (_kill): Set r0 to indicate abort and `sleep'.
12759         * libc/sys/h8300/crt0.S (_start): Call exit instead of `sleep'.
12760
12761 Wed Mar  6 11:51:55 1996  Doug Evans  <dje@charmed.cygnus.com>
12762
12763         * libc/posix/{creat.c,isatty.c}: New files.
12764         * libc/posix/Makefile.in (OFILES): Add creat.o, isatty.o.
12765
12766         * libc/sys/sparc64/crt0.S (environ): Delete.
12767         (.LHaveBias): Renamed from HaveBias.
12768
12769 Thu Feb 15 10:48:37 1996  Doug Evans  <dje@charmed.cygnus.com>
12770
12771         * libc/stdlib/mallocr.c (etext): Move decl inside ifdef WARN_VLIMIT.
12772         (_morecore_r): Delete SBRK_IS_ALLOC support.
12773
12774 Tue Feb 13 09:44:09 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12775
12776         * libc/sys/cygwin32/Makefile.in (lib.a): Make lib.a with a dummy
12777         module rather than touch, so we don't get warning messages when
12778         all of the libraries are combined into libc.a.
12779
12780 Tue Feb 13 06:32:07 1996  Doug Evans  <dje@charmed.cygnus.com>
12781
12782         * libc/sys/sparclite/{Makefile.in,crt0.s}: Deleted.
12783         crt0.s replaced by version in libgloss.
12784
12785 Mon Feb  5 15:17:51 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
12786
12787         * libc/reent/Makefile.in (OFILES): Add impure.o.
12788         * libc/reent/impure.o: New file, define initial reentrancy struct.
12789         * libc/reent/reent.c: Remove above definition.
12790
12791         * libm/math/sf_asinh.c: Fix typo.
12792
12793         * Makefile.in (MATHOBJS_IN_LIBC): Removed sr_ldexp.o and
12794         srf_ldexp.o.
12795         
12796         * libm/libm.texinfo: Change documentation to reflect changes
12797         in reentrancy model.
12798         * libm/math/w_gamma.c: Likewise.
12799
12800 Wed Jan 31 18:49:45 1996  Steve Chamberlain  <sac@slash.cygnus.com>
12801
12802         * configure.in (*-*-cygwin32): New.
12803         (*-*-win32): Deleted.
12804         * libc/sys/win32 renamed libc/sys/cygwin32.
12805
12806 Tue Jan 30 22:09:03 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12807
12808         * libc/include/sys/file.h: New include file.
12809
12810 Fri Jan 26 15:52:54 1996  Steve Chamberlain  <sac@slash.cygnus.com>
12811
12812         * libc/include/machine/setjmp.h: Increase size of PPC jmp_buf.
12813
12814 Tue Jan 23 17:49:16 1996  Steve Chamberlain  <sac@slash.cygnus.com>
12815
12816         * libc/include/sys/wait.h (WIFSIGNALED): Fix.
12817
12818 Tue Jan 16 09:28:10 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12819
12820         * doc/makedoc.c (realloc): Declare at file scope.
12821         (catchar): Not here.
12822
12823 Wed Dec 27 15:45:23 1995  Doug Evans  <dje@canuck.cygnus.com>
12824
12825         * Makefile.in (VERSION): Update to 1.7.0.
12826         * {libc,libm}/Makefile.in (VERSION): Likewise.
12827         * configure.in: Minor clean up of multilib stuff.
12828
12829         From David Johnson <davidj@ICSI.Berkeley.EDU>
12830         * {libc,libm}/Makefile.in (lib[cm].a): Delete library first.
12831
12832         * libc/stdlib/environ.c: New file.
12833         * libc/stdlib/Makefile.in (OFILES): Build it.
12834         * libc/sys/h8500hms/crt0.c (environ): Deleted.
12835         * libc/sys/m88kbug/crt0.c (environ): Deleted.
12836         * libc/sys/z8ksim/crt0.c (environ): Deleted.
12837         * libc/sys/netware/environ.c: Deleted.
12838
12839 Tue Dec 19 15:24:46 1995  Kim Knuttila  <krk@cygnus.com>
12840
12841         * configure.in (links): set sys_dir, posix_dir, syscall_dir
12842
12843 Wed Dec 13 04:16:25 1995  Michael Meissner  <meissner@wogglebug.tiac.net>
12844
12845         * doc/makedoc.c (init_string_with_size,nextword): Move malloc
12846         declaration out to external scope and declare it PTR, not char *.
12847
12848 Mon Dec 11 17:35:12 1995  steve chamberlain  <sac@slash.cygnus.com>
12849
12850         * libc/include/sys/unistd.h (getpagesize): New declaration.
12851         (_SC_PAGESIZE): New definition.
12852         * libc/include/time.h (CLK_TCK): Defined as CLOCKS_PER_SEC.
12853         * libc/configure.in (i[345]86-*-win32): Remove -DNO_FORK.
12854
12855 Fri Dec  1 16:48:46 1995  James G. Smith  <jsmith@cygnus.co.uk>
12856
12857         * libc/sys/vr4300/syscalls.c (sbrk): Fixed memory
12858         addressing. System call returns size, not (last address + 1).
12859
12860 Thu Nov 30 15:05:26 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
12861
12862         * libm/math/*.c: Removed _foo_r() reentrancy API.
12863         * libc/include/math.h: Removed _foo_r prototypes and macros.
12864
12865         * libm/math/*.c: On systems with IEEE single precision "doubles" 
12866         move foo() -> foof() wrapper code from the files that implement
12867         the standard IEEE double precision functions to the files that 
12868         implement IEEE single precision functions. (ie. On those systems
12869         sin is moved from s_sin.c to sf_sin.c).  There should eventually
12870         be use of a C extension (like gcc's alias attribute) so that the
12871         wrappers are not needed at all.
12872
12873         * libc/sys/sysnec810/sbrk.c: Cast &end to char * to get around
12874         strict NEC V810 compiler.
12875         * libc/misc/dprintf.c (getnumber): Cast char * to unsigned char *
12876         for same reason.
12877
12878 Wed Nov 29 14:25:05 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
12879
12880         * libc/stdlib/strtol.c (_strtol_r): Replaced with implementation
12881         from NetBSD C library.
12882         * libc/stdlib/strtoul.c (_strtoul_r): Likewise.
12883
12884         * libc/stdlib/assert.c (__assert): Renamed from __assertfail 
12885         and adapted from implementation I wrote for NetBSD C library.
12886         The difference is __assert doesn't take a format argument,
12887         so that there won't be multiple copies of the same string
12888         constant in the executable if assertions are enabled in
12889         more than one source module.
12890         * libc/include/assert.h (assert): Changed to call __assert.
12891
12892 Tue Nov 28 16:54:26 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
12893
12894         * libc/stdlib/strtod.c (_strtod_r): Changed to not assign to
12895         word1 on systems with 32 bit doubles.
12896         * libc/stdlib/qsort.c (qsort): Cast some void *'s to char *'s
12897         so that we can do arithmetic on them.
12898         * libc/misc/dprintf.c: Changed to support stdarg.h for ANSI
12899         compilers.
12900         
12901 Tue Nov 28 16:03:32 1995  Doug Evans  <dje@canuck.cygnus.com>
12902
12903         * libc/sys/arm/crt0.S: Zero bss.
12904
12905 Fri Nov 24 16:09:23 1995  Doug Evans  <dje@deneb.cygnus.com>
12906
12907         * libc/include/unctrl.h: New file.
12908         * libc/misc/{Makefile.in,dprintf.c,unctrl.c,misc.tex}: New files.
12909         * configure.in (subdirs): Add libc/misc.
12910         * libc/Makefile.in (SUBDIRS): Add misc.
12911         (SUBLIBS): Add misc/lib.a.
12912
12913         * libc/include/sys/reent.h (struct _reent): Make __sf last member.
12914
12915 Wed Nov 22 19:49:47 1995  Doug Evans  <dje@deneb.cygnus.com>
12916
12917         * libc/stdio/vfprintf.c (__sbprintf): Init fake._data.
12918         (_vfprintf_r): Call CHECK_INIT.
12919
12920 Tue Nov 14 02:52:12 1995  Doug Evans  <dje@canuck.cygnus.com>
12921
12922         * Makefile.in (MULTITOP): Delete.
12923         (MULTISRCTOP, MULTIBUILDTOP): Add.
12924         * configure.in: Delete call to cfg-ml-com.in.  Call config-ml.in
12925         instead of cfg-ml-pos.in.
12926
12927 Wed Nov  8 01:24:08 1995  James G. Smith  <jsmith@pasanda.cygnus.co.uk>
12928
12929         * libc/sys/vr4300/syscalls.c: Added clean version of sbrk().
12930         * libc/sys/vr4300/crt0.S: Cleaned up. Added check for FPU
12931         presence.
12932
12933 Thu Nov  2 22:25:06 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
12934
12935         * libc/string/strtok.c: Include string.h to pick up strtok_r
12936         prototype.
12937
12938 Wed Nov  1 18:54:11 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
12939
12940         * libc/string/strtok.c: include <_ansi.h>.
12941         * libc/time/asctime_r.c: `reresult' -> `result'.
12942
12943 Wed Nov  1 14:35:52 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
12944
12945         * libc/time/{ctime.c, gmtime.c, lcltime.c}: Wrap functions
12946         in #ifndef _REENT_ONLY ... #endif conditional.
12947
12948         * libc/include/string.h (_strtok_r): Remove declaration.
12949         * libc/include/time.h (_asctime_r): Remove declaration.
12950         * libc/string/strtok.c (_strtok_r): Removed.
12951         * libc/time/asctime.c (_asctime_r): Removed.
12952
12953         * libc/string/Makefile.in (OFILES): Add new object.
12954         * libc/string/strtok_r.c: New file.  strtok_r function as
12955         specified by POSIX.1c, adapted from strtok implementation 
12956         from NetBSD C library.
12957         * libc/string/strtok.c (strtok): Reimplemented in terms of 
12958         strtok_r.
12959
12960         * libc/time/Makefile.in (OFILES): Add new objects.
12961         * libc/time/{asctime_r.c, ctime_r.c, gmtime_r.c, lcltime_r.c}:
12962         New files, reentrant time functions specified by POSIX.1c.
12963         * libc/time/{asctime.c, ctime.c, gmtime.c, lcltime.c}: Non-
12964         reentrant time functions re-written in terms of reentrant 
12965         functions.
12966         * libc/time/lcltime.c: Renamed from localtime.c
12967
12968         * libc/include/time.h: Add prototypes for asctime_r, ctime_r,
12969         gmtime_r, and localtime_r.
12970
12971 Sat Oct 28 14:34:31 1995  steve chamberlain  <sac@slash.cygnus.com>
12972
12973         * libc/sys/win32/crt0.c (mainCRTStartup): Call cygwin_crt0.
12974         * libc/include/sys/unistd.h (getlogin): Revert change of
12975         Oct 19.
12976         * libc/include/sys/signal.h (sigprocmask): Change prototype
12977         so it compiles with c++.
12978
12979 Wed Oct 25 15:43:18 1995  Michael Meissner  <meissner@cygnus.com>
12980
12981         * libc/include/machine/setjmp.h (PowerPC _JBLEN): Consider it a
12982         PowerPC if __PPC__ is defined.  Bump jump_buf length to 62 ints,
12983         to give some room in case we need to align the jmp_buf.
12984         
12985         * libc/machine/powerpc/setjmp.S (setjmp, longjmp): Rewrite to use
12986         the new ppc-asm.h include file the compiler provides to specify
12987         function prologue/epilogue.  Eliminate saves of the xer and ctr
12988         registers, which are volatile.  Before starting to save registers,
12989         align to 8 byte boundary.
12990
12991 Mon Oct 23 11:20:51 1995  James G. Smith  <jsmith@pasanda.cygnus.co.uk>
12992
12993         * libc/sys/vr4300/syscalls.c: Added empty kill() function,
12994         referenced by standard libraries.
12995
12996 Thu Oct 19 21:39:47 1995  Fred Fish  <fnf@cygnus.com>
12997         
12998         * libc/unix/Makefile.in, libc/string/Makefile.in,
12999         libc/stdio/Makefile.in, libc/reent/Makefile.in,
13000         libc/posix/Makefile.in:
13001         Remove tabs from otherwise empty line.  Confuses some
13002         older non-GNU versions of "make".
13003
13004 Thu Oct 19 16:32:17 1995  steve chamberlain  <sac@slash.cygnus.com>
13005
13006         * libc/sys/unistd.h (getlogin): Returns const char *.
13007
13008 Wed Oct 18 12:57:50 1995  steve chamberlain  <sac@slash.cygnus.com>
13009
13010         * libc/include/fcntl.h (O_BINARY, O_TEXT): New.
13011         * libc/include/errno.h: Moved into and include...
13012         * libc/include/sys/errno.h: New file.
13013         * libc/include/sys/wait.h: New file.
13014         * libc/stdio/rename.c (_rename_r): Use _rename system call if available.
13015         * libc/sys/win32/*: Moved out.
13016         * libc/sys/win32/crt0.c: Rewritten to cope with shared library.
13017         * configure.in (i[345]86-*-win32): HAVE_RENAME
13018
13019 Wed Oct 18 09:58:27 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13020
13021         * libc/unix/sigset.c (sigemptyset, sigaddset): Prefix #undef to
13022         avoid macro expansion for these two names.
13023
13024 Tue Oct 17 08:45:33 1995  Doug Evans  <dje@canuck.cygnus.com>
13025
13026         * libc/machine/h8500/psi.S: r6 renamed to fp.
13027
13028 Sun Oct 15 12:58:10 1995  Michael Meissner  <meissner@wogglebug.tiac.net>
13029
13030         * configure.in (powerpc*): No longer need to define
13031         NO_LONGLONG_POINTERS to supress warnings.
13032
13033 Sat Oct 14 12:55:08 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13034
13035         * libc/reent/reent.c (_reclaim_reent): Call cleanup indirectly
13036         through PTR instead of directly.
13037
13038         * libc/sys/sh/crt0.S: Clean up formatting.  Delete unused
13039         non-standard constructor support.
13040
13041 Thu Oct 12 11:39:42 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13042
13043         * libc/stdlib/dtoa.c (_dtoa_r): Set result pointer to the
13044         address of the Bigint instead of the address of its _x field,
13045         as the size the result buffer was calculated accordingly.  
13046         Fix from Jim Wilson <wilson@chestnut@cygnus.com>.
13047
13048         * libc/stdlib/{div.c, ldiv.c}: Replaced with implementation
13049         from NetBSD C library.  No longer special cases division by 
13050         zero (which needs to be done by the application anyway), but
13051         it doesn't need to call abs() (or labs()) four times either.
13052         
13053         * libc/stdlib/qsort.c: Replaced with implementation from 
13054         NetBSD C library.
13055
13056 Tue Oct 10 14:01:10 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13057
13058         * libc/stdio/vfprintf.c: Replaced with implementation from
13059         NetBSD C library (which is derived from the 4.4BSD C library).
13060         * libc/stdio/cvt.c: Removed.
13061         * libc/stdio/Makefile: Updated.
13062         
13063 Tue Oct 10 12:15:23 1995  steve chamberlain  <sac@slash.cygnus.com>
13064
13065         * libc/sys/win32/syscalls.c (rename): New.
13066         * libc/sys/win32/include/winkernel.h (MoveFileExA): New.
13067
13068 Fri Oct  6 12:18:43 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13069
13070         * libc/machine/sh/Makefile.in (setjmp.o): Depend on setjmp.S.
13071         * libc/machine/sh/setjmp.S: Rename from setjmp.s.
13072
13073         * libc/sys/sh/Makefile.in (OFILES, all): Delete setjmp.o.
13074         (setjmp.o): Delete rule to build setjmp.o.
13075         * libc/sys/sh/setjmp.S: Delete file.
13076
13077 Fri Oct  6 11:19:05 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13078
13079         * libc/stdlib/mprec.c (d2b): Added support for _DOUBLE_IS_32BITS.
13080         * libc/stdlib/mprec.h: Fixed constants used for IEEE single float
13081         format.  Added #defines to map d2b, i2b, low0bits, lshift, mult,
13082         pow5mult and s2b to identifiers with leading underscores.
13083         * libc/stdlib/Makefile.in: Add mprec.h as a dependency to dtoa.o,
13084         ecvtbuf.o, mprec.o and strtod.o.  Sort dependencies.
13085
13086 Thu Oct  5 17:27:30 1995  steve chamberlain  <sac@slash.cygnus.com>
13087
13088         * libc/sys/posix/popen.c (sys/types.h): Include.
13089
13090 Thu Oct  5 16:33:01 1995  Doug Evans  <dje@canuck.cygnus.com>
13091
13092         * libc/sys/win32/syscalls.h (fhandler): New struct.
13093         (__lookup_fhandler, __lookup_fhandler_hook): Declare.
13094         (__fhandler_normal): Declare.
13095         (hinfo): New member op_handlers.
13096         * libc/sys/win32/syscalls.c (__read): Don't validate fd.
13097         (__write): Likewise.
13098         (_read, _write, _open, _close, _lseek): Validate fd here.
13099         Move file type specific stuff to foo_normal.
13100         (read_normal, write_normal, open_normal, close_normal, lseek_normal):
13101         New functions.
13102         (__lookup_fhandler): New function.
13103         (__lookup_fhandler_hook, __fhandler_normal): New variables.
13104
13105         From anders.blomdell@control.lth.se (Anders Blomdell)
13106         * libc/sys/win32/crt0.c (vfork_init): Unset __FD_TABLE__.
13107         Don't touch standard handles.
13108         * libc/sys/win32/spawn.c (_spawn): Use STARTF_USESTDHANDLES.
13109         (_execve): Only create __FD_TABLE__ if necessary.
13110         * libc/sys/win32/include/winkernel.h (STARTF_*): Define.
13111
13112 Thu Oct  5 14:25:14 1995  steve chamberlain  <sac@slash.cygnus.com>
13113
13114         * libc/sys/win32/sys/termios.h (FLUSHO): New.
13115         * libc/sys/win32/include/win*.h: Moved a load of prototypes around.
13116         * libc/sys/win32/pipe.c (_fctnl): Ignore F_SETFL without errors.
13117         * libc/sys/win32/exception.c (ehandler3): set strace when a signal
13118         without a handler is received.
13119         * libc/sys/win32/Makefile.in: Remove --nodelete.
13120         * libc/sys/win32/resouce.c (gettimeofday): New.
13121         * libc/sys/win32/syscalls.c (path_to_real_path): New.
13122         * libc/sys/win32/syscalls.h (include/wincon.h): Don't include.
13123
13124 Wed Oct  4 13:10:35 1995  Doug Evans  <dje@canuck.cygnus.com>
13125
13126         * libc/sys/win32/dirsearch.c (opendir): stat real path name.
13127         Don't append "/*" to search pattern if trailing '/' already there,
13128         append "*".
13129         * libc/sys/win32/spawn.c (_spawn): CreateProcess doesn't seem to
13130         like /'s, convert them to \'s.  Handle //<drive>/ path names.
13131         Add space for quoted \'s in arg string.  Print translated prog name
13132         and original prog name.
13133         (_execve): Handle parent doing exec a teensy bit better.
13134         * libc/sys/win32/syscalls.h (__path_to_real_path): Update prototype.
13135         * libc/sys/win32/syscalls.c (__path_to_real_path): Don't assume
13136         path needs conversion, handle both cases.  Delete `const' from result.
13137         (hash_path_name): New function.
13138         (_open): Call it.
13139         (_stat): Likewise.  Fill in more fields for directories.
13140         * libc/sys/win32/wait.c (_wait): Explicitly pass -1 to waitpid.
13141         (wait_for_any): Fix trace message.
13142         (waitpid): Explicitly test for intpid == 0.
13143
13144         From anders.blomdell@control.lth.se (Anders Blomdell)
13145         * libc/sys/win32/spawn.c (__vfork_get_empty_entry): zero fill result
13146         so `next' is valid.
13147
13148 Sat Sep 30 15:00:15 1995  Jason Molenda  (crash@phyeaux.cygnus.com)
13149
13150         * libc/sys/win32/spawn.c (_spawn): Make quoting rules more
13151         complicated.
13152
13153 Sat Sep 30 10:25:57 1995  Jason Molenda    (crash@phydeaux.cygnus.com)
13154
13155         * libc/include/_ansi.h: set _HAVE_STDC if __STDC__ is defined
13156         at all, not just == 1.
13157         * libm/math/wf_acos.c (acosf): check for _HAVE_STDC, not __STDC__.
13158
13159 Sat Sep 30 04:30:09 1995  Jason Molenda   (crash@phydeaux.cygnus.com)
13160
13161         * libc/sys/win32/include/winbase.h: include <wintypes.h> and <winnt.h>
13162         * libc/sys/win32/include/wintypes.h: include <winnt.h>
13163         * libc/sys/win32/include/winnt.h: avoid multiple inclusion of this
13164         file.
13165
13166 Fri Sep 29 01:49:17 1995  steve chamberlain  <sac@slash.cygnus.com>
13167
13168         * libc/sys/syscalls.c (getcwd): Fix off by one error.
13169
13170         * libc/sys/signal.c (sleep): Fill it in.
13171         * libc/sys/termios.c (tcflush): Use PurgeComm
13172         (tcsetattr): Set some more of the bits.
13173         * libc/sys/include/winkernel.h: Add PurgeComm and Sleep.
13174
13175 Fri Sep 29 04:33:53 1995  Doug Evans  <dje@deneb.cygnus.com>
13176
13177         * libc/sys/arm/crt0.S (fp): Initialize to 0.
13178         Conditionally include .idata$3 stuff ifdef __pe__.
13179
13180 Fri Sep 29 01:49:17 1995  steve chamberlain  <sac@slash.cygnus.com>
13181
13182         * libc/sys/win32/crt0.c (hmap_init): Call __init_hinfo.
13183         * libc/sys/win32/pipe.c (pipe): Ditto.
13184         * libc/sys/win32/syscalls.c (__read):  Use new vtime and vmin fields.
13185         * libc/sys/win32/syscalls.h (hinfo): vtime, vmin are new.
13186         * libc/sys/win32/termios.c (tcsetattr): Init new fields.
13187         (tcgetattr): Contents are new.
13188         * libc/sys/win32/include/winkernel.h (DCB): New.
13189         (GetCommState, SetCommState): New.
13190
13191 Thu Sep 28 16:29:09 1995  Doug Evans  <dje@deneb.cygnus.com>
13192
13193         * libc/sys/arm/crt0.S (_start): Define.
13194
13195 Thu Sep 28 12:26:45 1995  steve chamberlain  <sac@slash.cygnus.com>
13196
13197         * libc/sys/arm/crt0.S: Move stack to top of RAM on PIE board.
13198         * libc/sys/arm/syscalls.c (_read, _write): Use the SWI properly.
13199
13200         * libc/sys/win32/sysconf.c: New
13201         * libc/sys/win32/sys/winadvapi.h: New
13202         * libc/sys/win32/syscalls.h (hinfo): Added timeout_len, w_binary, r_binary.
13203         * libc/sys/win32/crt0.c (hmap_init): Initialize new fields.
13204         * libc/sys/win32/pipe.c (pipe): Ditto.
13205         * libc/sys/win32/signal.c (_raise): New.
13206         (_kill): Moved from spawn.c
13207         * libc/sys/win32/spawn.c (kill): Moved to signal.c
13208         * libc/sys/win32/syscalls.c (__read): Use new fields.
13209         (_open): Ditto.
13210         * libc/sys/win32/termios.c (tcflush, tcsetattr, tcgetattr): Fill in.
13211         * libc/sys/win32/exceptions.c (__stack_trace): Keep going for longer.
13212         * libc/include/sys/unistd.h (rmdir): Takes const path.
13213         * libc/include/sys/stat.h (mkdir): Takes const path.
13214         * libc/include/sys/signal.h (SIGTTOU, SIGTTIN): New for win32.
13215
13216 Thu Sep 28 10:11:27 1995  Doug Evans  <dje@canuck.cygnus.com>
13217
13218         * libc/sys/win32/spawn.c (_spawn): Fix quoting.
13219
13220         Add support for specifying paths as //<drive>/foo/bar.
13221         * libc/sys/win32/syscalls.h (__path_needs_conversion_p): Declare.
13222         (__path_to_real_path): Declare.
13223         (PATH_TO_REAL_PATH): New macro.
13224         * libc/sys/win32/syscalls.c (__win32_pid_to_posix_pid): Minor cleanup.
13225         (__path_needs_conversion_p, __path_to_real_path): New functions.
13226         (_open): Fix test for error return from CreateFileA.
13227         Handle new path syntax.
13228         (_link, mkdir, rmdir, getcwd, chdir, stat): Handle new path syntax.
13229         * libc/sys/win32/dirsearch.c (opendir): Likewise.
13230
13231 Wed Sep 27 16:36:46 1995  steve chamberlain  <sac@slash.cygnus.com>
13232
13233         * libc/sys/win32/include/*.h: Reorganized
13234         * libc/sys/win32/include/WINREADME: New.
13235         * libc/sys/win32/Makefile.in (DLLS): Build version.a.
13236         * libc/sys/win32/*.c: Fix for new include scheme.
13237         * libc/sys/win32/crt0.c (__this_uinfo_buf, __this_uinfo): New.
13238         * libc/sys/win32/getlogin.c (getlogin): Use uinfo.
13239         * libc/sys/win32/passwd.c (*): Fix.
13240         * libc/sys/win32/syscalls.c (get[e|][g|u]id): Use passwd info.
13241         (_stat): Get directory owner and permissions right.
13242         * libc/sys/win32/syscalls.h (uinfo): New.
13243         * libc/sys/win32/version.def: Remove leading underscores.
13244
13245 Tue Sep 26 18:18:47 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13246
13247         * libc/sys/win32/key.c: include "include/wincon.h".
13248
13249 Tue Sep 26 07:21:48 1995  steve chamberlain  <sac@slash.cygnus.com>
13250
13251         * libc/sys/win32/{key, stubs}.c: New.
13252         * libc/sys/win32/Makefile: Adjust to cope.
13253         * libc/sys/win32/crt0.c (vfork_init_first): Cope with -ve pids.
13254         (environ_init): Change env names to upper case.
13255         * libc/sys/win32/dirsearch.c (readdir): Don't fill in inode number.
13256         * libc/sys/win32/passwd.c (*): Fill in the functions.
13257         * libc/sys/win32/pipe.c (_fcntl): F_GETFL returns O_RDWR.
13258         * libc/sys/win32/spawn.c (_spawn): Cope with -ve pids.
13259         * libc/sys/win32/syscalls.c (__win32_pid_to_posix_pid): New function.
13260         (_open): Initialze hmap->execable_p too.
13261         * libc/sys/win32/syscalls.c (getuid, getgid, geteuid, getegid): Return from macros.
13262         (_fstat): Fill in permissions.
13263         * libc/sys/win32/syscalls.h (hinfo): Add execable_p.
13264
13265 Fri Sep 22 13:47:27 1995  Doug Evans  <dje@canuck.cygnus.com>
13266
13267         * configure.in (cfg-ml-com.in invocation): Use ${with_multilib_top}
13268         if defined.
13269         (cfg-ml-pos.in invocation): Likewise.
13270
13271 Fri Sep 22 11:43:44 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13272
13273         * Makefile.in (MATHOBJS_IN_LIBC): Added s_isinf.o, sf_isinf.o,
13274         s_isnan.o and sf_isnan.o.
13275
13276 Wed Sep 20 14:50:19 1995  Ian Lance Taylor  <ian@cygnus.com>
13277
13278         * All Makefile.in files: added maintainer-clean target as a
13279         synonym for realclean.
13280
13281 Wed Sep 20 11:02:50 1995  Jeff Law  (law@snake.cs.utah.edu)
13282
13283         * libc/include/machine/setjmp.h: Add hppa support.
13284         * libc/machine/hppa/setjmp.S: New file with setjmp/longjmp
13285         support.
13286         * libc/machine/hppa/Makefile.in: Related changes.
13287
13288 Tue Sep 19 12:09:01 1995  J.T. Conklin  <jtc@blues.cygnus.com>
13289
13290         * configure.in (machine_dir): Don't set for v810-*-*.
13291
13292 Fri Sep 15 20:22:08 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13293
13294         * libc/sys/win32/crt0.c (passover): Change to handle MKS quoting
13295         conventions correctly.
13296
13297 Thu Sep 14 13:37:22 1995  J.T. Conklin  <jtc@blues.cygnus.com>
13298
13299         * libc/stdio/puts.c: Update documentation of return value to match
13300         ANSI standard.
13301
13302 Thu Sep 14 01:52:37 1995  Doug Evans  <dje@canuck.cygnus.com>
13303
13304         Fix file descriptor inheritance.
13305         * libc/sys/win32/syscalls.h (CHILD_P): Define again.
13306         (NOT_OPEN_FD): Fix.
13307         * libc/sys/win32/spawn.c (vfork0): Only create inheritable handle if
13308         close-on-exec flag not set.  Initialize child's entire fd table.
13309         * libc/sys/win32/syscalls.c (_open): Only create inheritable handle if
13310         CHILD_P.
13311         * libc/sys/win32/pipe.c (pipe): Only create new handle as inheritable
13312         if CHILD_P.  Initialize entire hmap entry.
13313         (dup): Only create new handle as inheritable if CHILD_P.
13314         (dup2): Likewise.  Properly initialize hmap entry.
13315
13316         * libc/sys/win32/spawn.c (_execve): Don't pass _P_SEARCH_PATH to
13317         _spawn.
13318         (_exit): Use CHILD_P.
13319         * libc/sys/win32/syscalls.c (_fstat): Fix call to memset.
13320         (_stat): Likewise.
13321
13322 Mon Sep 11 23:09:39 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13323
13324         * libc/sys/win32/crt0.c (passover): fix up the state table.
13325         * libc/posix/popen.c: Added.
13326         * libc/posix/Makefile.in: compile popen.c.
13327         
13328 Mon Sep 11 11:43:38 1995  J.T. Conklin  <jtc@cygnus.com>
13329
13330         * libc/include/machine/ieeefp.h: On the h8/300, h8/300h and
13331         h8/500 define _DOUBLE_IS_32BITS.
13332
13333 Sat Sep  9 17:55:54 1995  Doug Evans  <dje@canuck.cygnus.com>
13334
13335         Get vfork/exec/spawn/cwait/wait working again.
13336         * libc/sys/win32/syscalls.h (VFORK_NEWBORN_PSEUDO_PID): Define.
13337         (procinfo): New member vfork_level.
13338         * libc/sys/win32/crt0.c (__vfork_next_pid): Delete.
13339         (vfork_init_first): Use GetCurrentProcessId to get pid.
13340         Initialize vfork_level.
13341         (vfork_init): Delete __PID__.
13342         (environ_init): New function.  Undo patch of Aug 19, Posix says
13343         environment variables are case sensitive.
13344         (mainCRTStartup): Call it.
13345         * libc/sys/win32/spawn.c (__vfork_next_pid): Delete.
13346         (my_longjump: Make static.
13347         (_spawn): New argument `h'.  Delete setting of __PID__.
13348         Delete local `idx'.  Look for chars that need quotes, rather than
13349         ones that don't.  Set handle of created process in `h'.
13350         Result is process id if created task.
13351         (allocate_spawn_entry): New function.
13352         (spawnvp, spawnv): Call it.  Store handle and pid in procinfo entry.
13353         (_execve): Set __FD_TABLE__ before spawning child.
13354         Scan our fd table when passing fds, not our parent's.
13355         Store handle and pid in procinfo entry.
13356         (vfork0): Ensure strace message always printed.
13357         Set child pid to VFORK_NEWBORN_PSEUDO_PID.
13358         (vfork): Don't clobber result of vfork0.
13359         * libc/sys/win32/wait.c (cwait): Fix non-error result (is pid).
13360         (wait_for_any): Ignore processes in state FORK_STATE_VFORK_0.
13361
13362         * libc/sys/win32/syscalls.h (procinfo): New members `handle_valid_p'
13363         and `exit_code'.
13364         * libc/sys/win32/spawn.c (allocate_spawn_entry): Initialize them.
13365         (vfork0): Likewise.  Distinguish children, grandchildren, etc. by
13366         adding vfork level to pseudo-pid.  
13367         (vfork1): If not root, set state back to FORK_STATE_VFORK_0.
13368         (spawnvp, spawnv, _execve): Set handle_valid_p if success.
13369         (_exit): If child, set exit code.
13370         (__vfork_record_death): Only close process handle if valid.
13371         * libc/sys/win32/wait.c (wait_for_single): Watch for children that
13372         didn't exec.
13373         (wait_for_any): Likewise.  Start scan after root entry.
13374
13375 Fri Sep  8 18:48:02 1995  Jason Molenda   (crash@phydeaux.cygnus.com)
13376
13377         * libc/include/sys/types.h (off_t): off_t back to 32 bits.
13378         * libc/include/sys/_types.h (_off_t): _off_t back to 32 bits.
13379         * libc/sys/win32/syscalls.c (_fstat): st_size is lower 32-bits
13380         of actual file length.
13381
13382         * libc/sys/win32/sys/wait.h: include <sys/types.h>.
13383         * libc/include/paths.h: _PATH_BSHELL added.
13384         * libc/include/sys/unistd.h: define STDIN_FILENO, STDOUT_FILENO,
13385         and STDERR_FILENO.
13386
13387 Thu Sep  7 21:02:22 1995  Jason Molenda   (crash@phydeaux.cygnus.com)
13388
13389         * libc/include/ar.h: Added.
13390         * libc/include/sys/types.h: ino_t goes back to 32-bits.
13391         * libc/sys/win32/syscalls.h (hinfo): added .namehash field.
13392         * libc/sys/win32/syscalls.c (_open): compute .namehash based
13393         on filename.
13394         (_fstat): use .namehash for inode number of the fd.
13395
13396 Thu Sep  7 12:57:19 1995  steve chamberlain  <sac@slash.cygnus.com>
13397
13398         * libc/sys/win32/{console,ioctl,pipe,spawn,syscalls,wait}.? (*):
13399          Change hinfo to __this_procinfo.
13400         * libc/sys/win32/crt0.c: Remove procinfo_list.
13401
13402 Wed Sep  6 18:38:26 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13403
13404         * libc/include/sys/types.h (ino_t): Define ino_t correctly for
13405         win32 environment.
13406
13407 Wed Sep  6 18:09:29 1995  Jason Molenda   (crash@phydeaux.cygnus.com)
13408
13409         * libc/sys/win32/include/grp.h: Removed.
13410         * libc/sys/include/grp.h: Added.
13411         * libc/sys/win32/grp.c: Include <grp.h>.
13412
13413 Wed Sep  6 16:52:48 1995  steve chamberlain  <sac@slash.cygnus.com>
13414
13415         * libc/include/sys/signal.h (__need_MAX_SIGNALS): Removed.
13416         (sigset_t, sigaction, SIG_SETMASK, SIG_BLOCK, SIG_UNBLOCK):
13417         Defined for all but strict ANSI.
13418         * libc/include/sys/reent.h (__need_MAX_SIGNALS): Removed.
13419         * libc/include/machine/setjmp.h: Get win32 _JBLEN right.
13420         * libc/signal/signal.c (_signal_r): Changed from using
13421         _MAX_SIGNALS to NSIG.  
13422         * libc/sys/win32/crt0.c (__current_pid, __parent_hmap, __child_hmap,
13423          __hmap): Deleted.
13424         (__strace, __vfork_next_pid): New.
13425         (__exe_suffix): Default to 1.
13426         (passover, table): Understand quoted arguments.
13427         (vfork_init_first): New.
13428         (vfork_init): Initialize new process structure.
13429         (mainCRTStartup): Pass environ to main.
13430         * exceptions.c (__sig_mask): New
13431         (ehandler3): Ignore signals in mask.
13432         (really_exit): Remove CHILD_P test.
13433         * pipe.c (pipe, dup, dup2): Use new process and file structure.
13434         * resource.c (getrusage): Ditto.
13435         * signal.c (sigprocmask): New.
13436         * spawn.c (*): Rewritten.
13437         * syscalls.c (*): Use new process and file structure.
13438         (find_unused_handle): New.
13439         * syscalls.h (MAX_HANDLES): Deleted.
13440         (hinfo): Removed child_created_p.
13441         (MAX_CHILDREN): Deleted.
13442         (vfork_jmp_info, procinfo): New.
13443         * wait.c (*): Mostly new.
13444         * sys/strace.h (_STRACE_PARANOID): New.
13445         * sys/param.h: New file.
13446
13447 Wed Sep  6 17:03:53 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13448
13449         * libc/include/sys/stat.h: add S_BLKSIZE.
13450         * libc/include/sys/_types.h: _off_t is a 64-bit type under win32.
13451         * libc/include/sys/types.h: define off_t and ino_t to be 64 bit
13452         types under win32.
13453         (mode_t): add a #else to avoid multiple definitons.
13454
13455         * libc/sys/win32/Makefile.in: add grp.c.
13456         * libc/sys/win32/grp.c: include grp.h correctly.
13457         * libc/sys/win32/syscalls.c (_fstat): set almost all of the fields
13458         of the st structure with real information.
13459         * libc/sys/win32 (dirent): d_ino is of type ino_t.
13460
13461 Wed Sep  6 10:41:34 1995  Doug Evans  <dje@canuck.cygnus.com>
13462
13463         * libc/include/sys/types.h (mode_t): Correct for svr4 sparc's
13464         and (maybe) sparc64.
13465         (nlink_t): Provide typedef.
13466
13467 Tue Sep  5 18:46:05 1995  Jason Molenda   (crash@phydeaux.cygnus.com)
13468
13469         * libc/sys/win32/grp.c: New file.
13470         * libc/sys/win32/include/grp.h: New file.
13471
13472 Tue Sep  5 13:47:27 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13473
13474         * libc/include/machine/ieeefp.h: Added whitespace to make this
13475         file easier to maintain.
13476         On the sh, define either __IEEE_BIG_ENDIAN or __IEEE_LITTLE_ENDIAN
13477         depending on the value of __LITTLE_ENDIAN__.
13478         On the sh3e, define _DOUBLE_IS_32BITS.
13479         
13480 Fri Sep  1 15:35:18 1995  James G. Smith  <jsmith@beauty.cygnus.com>
13481
13482         * libc/sys/vr4300/syscalls.c: Added missing support
13483         routines. _raise() and getpid().
13484
13485 Fri Sep  1 14:12:48 1995  James G. Smith  <jsmith@rtl.cygnus.com>
13486
13487         * configure.in (mips*vr4300*-*-elf): Fixed silly mistake
13488
13489 Fri Sep  1 08:42:11 1995  James G. Smith  <jsmith@beauty.cygnus.com>
13490
13491         * configure.in (mips*vr4300*-idt-*) Add support for RISQ monitor
13492         and VR4300 processor.
13493         * libc/sys/vr4300: Add directory.
13494         * libc/sys/vr4300/{Makefile.in, crt0.S, syscalls.c}: Add SIM
13495         monitor run-time support.
13496
13497 Thu Aug 31 09:16:52 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13498
13499         * libc/stdlib/Makefile.in (CHEWOUT_FILES): Removed atol.def.
13500         * libc/stdlib/stdlib.tex: Don't include atol.def.
13501
13502 Wed Aug 30 20:38:28 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13503
13504         * libc/sys/win32/uname.c (uname): hardcode processor as `i386'.
13505
13506 Wed Aug 30 10:48:08 1995  steve chamberlain  <sac@slash.cygnus.com>
13507
13508         * libc/ctype/Makefile.in: Fill in _to* dependencies.
13509
13510 Tue Aug 29 17:14:29 1995  steve chamberlain  <sac@slash.cygnus.com>
13511
13512         * libc/sys/win32/{dirsearch.c,sys/dirent.h}: Fix namespace problems.
13513         * libc/sys/win32/sys/dirent.h (struct dirent): Added d_ino.
13514         * libc/sys/win32/strace.c (__sys_printf): Increase size of buffer.
13515         * libc/sys/win32/smallprint.c (__small_vsprintf): Remove debug.
13516         * libc/sys/win32/dirsearch.c (readdir): Set d_ino.
13517
13518 Tue Aug 29 19:00:09 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13519
13520         * libc/stdlib/atol.c (atol): DEFUN -> _DEFUN.
13521
13522 Tue Aug 29 16:08:09 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13523
13524         * libc/stdlib/Makefile.in (OFILES): Added atoff.o and atol.o.
13525         * libc/stdlib/atoff.c: New file.
13526         * libc/stdlib/atof.c (atoff): Moved to atoff.c.
13527         * libc/stdlib/atoi.c (atol): Removed.
13528         * libc/stdlib/atol.c: Removed duplicate documentation.
13529
13530         * libc/include/ctype.h (_tolower, _toupper): Moved inside
13531         #ifndef _STRICT_ANSI conditional.
13532         * libc/ctype/Makefile.in (OFILES): Added _tolower.o and _toupper.o
13533         * libc/ctype/_tolower.c: New file.
13534         * libc/ctype/_toupper.c: New file.
13535         * libc/ctype/tolower.c (_tolower): Moved to _tolower.c.
13536         * libc/ctype/toupper.c (_toupper): Moved to _toupper.c.
13537         * libc/ctype/toascii.c (_toascii): Removed.
13538
13539 Tue Aug 29 12:17:32 1995  Doug Evans  <dje@canuck.cygnus.com>
13540
13541         * libc/sys/sparc64/sys/types.h: Deleted.
13542
13543 Mon Aug 28 22:06:08 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13544
13545         * libc/sys/win32/uname.c (uname): change `Windows/NT' to `Windows_NT'
13546         and recognize Windows_95 systems.
13547
13548 Mon Aug 28 19:50:54 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13549
13550         * libc/sys/win32/crt0.c (vfork_init, hmap_init): standard I/O fds
13551         and passed fds should be opened in text mode.
13552
13553 Mon Aug 28 18:51:22 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13554
13555         * libc/sys/win32/crt0.c (vfork_init): mark passed fds as used
13556         in __hmap, set to binary mode by default.
13557
13558 Tue Aug 22 14:12:37 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13559
13560         * libc/sys/sh/syscalls.c: Updated all functions to call __trap34.
13561         * libc/sys/sh/trap.S (__trap34): Renamed from __trap3.  Use trap
13562         vector 34.
13563
13564 Sat Aug 19 18:25:37 1995  steve chamberlain  <sac@slash.cygnus.com>
13565
13566         * Makefile.in (install): Install all libraries found in the
13567         top level.  If there's a sys/<type>/include directory,
13568         install those headers into include.
13569
13570         * libc/sys/win32/kernel.def351: Delete
13571         * libc/sys/win32/{comctl32.def, comdlg32.def, ctl3d32.def,
13572         glaux.def, glu32.def, largeint.def, libc.def, libcmt.def,
13573         lz32.def, mgmtapi.def, mpr.def, msacm32.def, msvcrt.def,
13574         nddeapi.def, netapi32.def, odbc32.def, odbccp32.def, oldnames.def,
13575         ole32.def, oleaut32.def, opengl32.def, rasapi32.def, rpcndr.def,
13576         rpcns4.def, rpcrt4.def, scrnsave.def, shell32.def, snmp.def,
13577         uuid.def, vdmdbg.def, version.def, vfw32.def, win32spl.def,
13578         winmm.def, winspool.def, winstrm.def, wsock32.def}: New.
13579
13580         * libc/sys/win32/Makefile.in: Update for new files and new dlltool options.
13581         * libc/sys/win32/crt0.c: Force all env names to upper case.
13582         * libc/sys/win32/sys/win*.h -> libc/sys/win32/include
13583         * libc/sys/win32/*.c: Headers have moved.
13584         * libs/sys/win32/*.[ch]: Test for open_p rather than BAD_HANDLE,
13585         __vfork_child_idx is now __vfork_child_ptr.
13586
13587         * posix/execvp (execvp): Don't crash if no PATH envname.
13588
13589 Fri Aug 18 12:22:59 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13590
13591         * libc/include/sys/reent.h (_Bigint): Removed _reclaim field.
13592         * libc/reent/reent.c (_reclaim_reent): Free Bigint's by going
13593         through the _freelist instead of through the _reclaim list.
13594         * libc/stdlib/mprec.c (_Balloc): Don't put new node on _reclaim list.
13595         * libc/stdlib/mprec.c (_Bcopy): Make like version in master dtoa.c
13596         sources.
13597
13598 Thu Aug 17 11:03:27 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13599
13600         * libc/machine/h8500/setjmp.S: New file.
13601         * libc/include/machine/setjmp.h: Updated for H8/500.
13602
13603 Wed Aug 16 16:19:11 1995  steve chamberlain  <sac@slash.cygnus.com>
13604
13605         * libc/sys/win32/syscalls.c (_open): More stracing.
13606         (_stat): Open the file in O_BINARY.
13607
13608 Wed Aug 16 15:49:01 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13609
13610         * libc/machine/h8300/setjmp.S: New file.
13611         * libc/include/machine/setjmp.h: Updated for H8/300 and H8/300H.
13612
13613 Tue Aug 15 10:31:09 1995  Doug Evans  <dje@canuck.cygnus.com>
13614
13615         * libc/sys/win32/crt0.c (__exe_suffix): New global.
13616         (mainCRTStartup): Set __exe_suffix from LIBC_EXE_SUFFIX.
13617         * libc/sys/win32/spawn.c (_spawn): Add .exe suffix based on
13618         __exe_suffix.  Free fd_tab after setting env variable.
13619         (spawnv,_execve): Update.
13620         * libc/sys/win32/syscalls.h (__exe_suffix): Declare.
13621         * libc/sys/win32/smallprint.c (puts,putn): New (static) functions.
13622         (__small_vfprintf): New function.
13623         * libc/sys/win32/strace.c (__sys_printf): Call __small_vfprintf.
13624         * libc/sys/win32/wait.c (cwait): Validate argument.
13625
13626         * libc/sys/win32/syscalls.c (queue_file_deletion): Add trace message.
13627         (process_deletion_queue): Likewise.
13628
13629         * libc/sys/win32/Makefile.in (lib.a): Don't call $(RANLIB).
13630
13631 Mon Aug 14 10:14:10 1995  steve chamberlain  <sac@slash.cygnus.com>
13632
13633         * libc/sys/win32: Copyrights and gratuitous indenting.
13634
13635 Mon Aug 14 01:32:58 1995  Doug Evans  <dje@canuck.cygnus.com>
13636
13637         * libc/sys/win32/syscalls.c (queue_file_deletion): Finish.
13638         (process_deletion_queue): Likewise.
13639         (__close_all_files): New function.
13640         (_close): Only queue file deletion if really a file.
13641         * libc/sys/win32/spawn.c (_spawn): Only ensure .exe suffix if
13642         _P_APPEND_EXE.
13643         (_exit): Call __close_all_files.
13644
13645         * libc/stdlib/system.c: #include <errno.h>.
13646         (_system_r): Fix results in -DNO_EXEC case.
13647
13648         * libc/sys/win32/sys/dirent.h (DIR): New member __d_dirname.
13649         Reorganize structure.
13650         * libc/sys/win32/dirsearch.c (opendir): Use stat to determine
13651         if argument is valid.  Save directory name in DIR.  malloc space
13652         for dirent struct separately.
13653         * libc/sys/win32/syscalls.c (stat): Fix test for directory.
13654
13655         * libc/include/errno.h (ENAMETOOLONG): Define.
13656         * libc/string/strerror.c (strerror): Reword ENFILE.
13657         Add ENOSYS, ENMFILE, ENOTEMPTY, ENAMETOOLONG.
13658
13659 Sun Aug 13 22:42:25 1995  Doug Evans  <dje@canuck.cygnus.com>
13660
13661         * libc/sys/win32/crt0.c (__progname): New global.
13662         (mainCRTStartup): Support strace=bitmask,filename.
13663         * libc/sys/win32/dirsearch.c (all fns): Add trace messages.
13664         * libc/sys/win32/syscalls.c (_write): Print parent trace message
13665         if error.
13666         (getcwd): Handle len too small.  Convert '\\' to '/'.
13667         * libc/sys/win32/sys/fcntl.h (O_RDWR): = O_RDONLY|O_WRONLY.
13668         Add prototypes for open, creat, fcntl.
13669         (O_APPEND): Change value to conform to Microsoft's value.
13670         * libc/sys/win32/sys/strace.h (_STRACE): Protect in do/while.
13671
13672         * libc/stdlib/getopt.c: New file.
13673         * libc/stdlib/Makefile.in: Build it.
13674
13675 Sat Aug 12 12:17:14 1995  Doug Evans  <dje@canuck.cygnus.com>
13676
13677         * libc/posix/execvp.c (execvp): Watch for DOS drives ifdef _WIN32.
13678         Fix scanning of $PATH.
13679         * libc/posix/exec*.c: Call _execve, not execve.
13680         * libc/posix/execve.c: New file.
13681         * libc/posix/Makefile.in (OFILES): Add execve.o.
13682
13683         * libc/sys/win32/sys/strace.h (_STRACE_ALL, _STRACE_UHOH,
13684         _STRACE_STARTUP, _STRACE_SYSCALL): More bit masks of things to trace.
13685         (_STRACE): If level==0, always print.  Handle new bit mask scheme.
13686         * libc/sys/win32/crt0.c: Update _STRACE calls.
13687         * libc/sys/win32/{pipe.c,resource.c,spawn.c,syscalls.c,wait.c}: Ditto.
13688
13689         * libc/sys/win32/smallprint.c (rn): Fix digit list.
13690
13691         * libc/sys/win32/syscalls.c (__really_exit): Move from here,
13692         * libc/sys/win32/exceptions.c (really_exit): to here. Avoid recursion.
13693         * libc/sys/win32/spawn.c (spawnvp): Pass `prog' as image name.
13694         Print __seterrno trace message first.
13695         (_execve): Renamed from execve.
13696         (vfork): Update __strace usage.
13697         (__vfork_child_pid): Deleted.
13698         (__vfork_children, __vfork_child_idx): New globals.
13699         (_spawnvp): New function.
13700         (spawnvp, spawnv, _execve): Call _spawnvp.
13701         (init_child): Record child in __vfork_children.
13702         (__vfork_get_entry, __vfork_record_death): New functions.
13703         * libc/sys/win32/crt0.c (mainCRTStartup): Initialize __vfork_children.
13704         * libc/sys/win32/kernel32.def (WaitForMultipleObjects): Define.
13705         * libc/sys/win32/syscalls.h (CHILD_P): New macro.  All files updated.
13706         (MAX_CHILDREN, CHILD_INTERIM_PID): Define.
13707         (children): New typedef.
13708         (__vfork_children,__vfork_child_idx): Declare.
13709         (__vfork_get_entry,__vfork_record_death): Declare.
13710         * libc/sys/win32/wait.c (wait_for_single,wait_for_any): New functions.
13711         (waitpid): Handle pid == -1.
13712         * libc/sys/win32/sys/wintypes.h (WaitForMultipleObjects): Declare.
13713         * configure.in (i386-win32): Add -DNO_FORK.
13714         * libc/syscalls/sysfork.c (fork): Don't define for NO_FORK.
13715         * libc/reent/execr.c (_fork_r): Likewise.
13716         * libc/stdlib/system.c (do_system): New function.
13717         If WIN32, try to get shell path from $SH_PATH, use vfork.
13718         (_system_r): Return 1 for (s == NULL) if WIN32 or unix,
13719         otherwise return 0.
13720
13721 Sat Aug 12 11:08:00 1995  steve chamberlain  <sac@slash.cygnus.com>
13722
13723         * libc/stdlib/{mallocr.c, mstats.c}: Move mstats from mallocr to mstats.c.
13724         * libc/sys/win32/fcntl.h: Don't include self.
13725         * libc/sys/win32/sys/strace.h (_STRACE_WM, _strace_wm): New.
13726         * libc/sys/win32/sys/winbase.h: (GetUserName) New.
13727         * libc/sys/win32/sys/wincon.h (HANDLER_ROUTINE): Define correctly.
13728         * libc/sys/win32/sys/wintypes.h (GetFileType, GetCurrentProcess, CloseHandle,
13729         SetFilePointer, CreateFileA, GetFileInformationByHandle, GetStdHandle):
13730         Correct prototypes.
13731         * libc/sys/win32/strace.c: New file.
13732         * libc/sys/win32/smallprint.c: New file.
13733         * libc/sys/win32/crt0.c (func): Delete.
13734         (mainCRTStartup): Fix alloca usage.  Set handles explictly.
13735         * libc/sys/win32/dirsearch.c: Clean up handle usage, fix calls to __seterrno.
13736         * libc/sys/win32/exceptions.c: Lint.
13737         * libc/sys/win32/{ioctl.c, pipe.c, resource.c, spawn.c, cwait.c, syscalls.c}:
13738         Clean up handle usage.
13739         * libc/sys/win32/syscalls.c (__sys_printf): Moved into strace.c
13740         (open.c): Default file type is text.
13741         * libc/sys/win32/uname.c (uname): Use __small_sprintf.
13742         * libc/sys/win32/advapi32.def: New      
13743
13744 Fri Aug 11 17:11:52 1995  Doug Evans  <dje@canuck.cygnus.com>
13745
13746         * configure.in (posix_dir, libc_posix_lib): New variables.
13747         Define LIBC_POSIX_LIB in makefile to be $libc_posix_lib.
13748         (i[345]86-*-win32): Define posix_dir.
13749         Delete -DNO_EXEC.  Define -DHAVE_OPENDIR.
13750         (if unix_dir): Fix typo.
13751         * libc/posix/{Makefile.in,closedir,opendir,readdir,rewinddir,
13752         scandir,seekdir,telldir}: New files.
13753         * libc/posix/{execl.c,execle.c,execlp.c,execv.c,execvp.c}: Move here
13754         from libc/unix.
13755         * libc/Makefile.in (LIBC_POSIX_LIB): Define.
13756         (SUBDIRS): Add posix.
13757         (SUBLIBS): Add $(LIBC_POSIX_LIB).
13758
13759         * libc/include/sys/signal.h (SIGCHLD): Add for _WIN32.
13760         (NSIG): Increase to 21.
13761         * libc/include/sys/unistd.h (pid_t): Move from here,
13762         * libc/include/sys/types.h (pid_t): to here.
13763
13764         * libc/sys/win32/syscalls.h: #include "sys/strace.h".
13765         (__ptrace): Delete.
13766         (hinfo): New members close_exec_p, child_created_p.
13767         (struct exception_list): Define.
13768         (__hmap): Redefine as pointer to table.
13769         (__parent_hmap, __child_hmap): New globals.
13770         (__set_errno, __really_exit): Declare.
13771         (__vfork_child_pid): Declare.
13772         * libc/sys/win32/crt0.c (__strace, __trace_file): New global.
13773         (__orig_stdin, __orig_stdout, __orig_stderr): New globals.
13774         (__parent_hmap, __child_hmap): New globals.
13775         (__hmap): Redefine as pointer to active map.
13776         (__get_console): New function.
13777         (mainCRTStartup): Change leading '=' in environ vars to '!'.
13778         (env __FD_TABLE__): Watch for this and initialize our fd/handle
13779         mapping table from it if defined.
13780         (argv, envp): Dump if __strace >= 4.
13781         (main): Call here.
13782         * libc/sys/win32/exceptions.c (myp): Redefine.
13783         (__syscalls_b): Delete.
13784         (__stack_trace): New function.
13785         (ehandler3): Update to use _STRACE.  Print stack trace.
13786         Call __really_exit instead of exit.
13787         (init_exceptions): Delete args argc,argv.  New arg mine.
13788         * libc/sys/win32/kernel32.def (CreatePipe, DuplicateHandle, FindClose,
13789         FindFirstFileA, FindNextFileA, GetComputerNameA,
13790         GetEnvironmentVariableA, ReadFile, SetEnvironmentVariableA): Define.
13791         * libc/sys/win32/signal.c (signal): Validate arg.
13792         (alarm, sleep): Define as stubs for now.
13793         * libc/sys/win32/syscalls.c (all fns): Update to use _STRACE.
13794         (__syscalls_b, errno): Delete.
13795         (__vfork_child_pid, __vfork_jmp_buf): New globals.
13796         (__seterrno): Handle more errors.
13797         (__sys_printf): Renamed from _ptrace.
13798         (__really_exit): New function.
13799         (queue_file_deletion, process_deletion_queue): New functions.
13800         (__resume_parent): New function.
13801         (_unlink): Handle trying to delete open file.
13802         (__totime_t): Renamed from totime_t.
13803         (setsid, __read, __write): New functions.
13804         (cwait, spawnvp, R, D, getrusage, _execve, _fork, _wait): Delete.
13805         * libc/sys/win32/{dirsearch.c,getlogin.c,misc.c,resource.c,passwd.c,
13806         times.c,spawn.c,pipe.c,wait.c,termios.c,ioctl.c,uname.c}: New files.
13807         * libc/sys/win32/console.c: Update to new definition of __hmap.
13808         * libc/sys/win32/Makefile.in: Build new files.
13809         * libc/sys/win32/sys/{dirent.h,winerror.h,wait.h,termios.h}: New files.
13810         * libc/sys/win32/sys/{ioctl.h,utsname.h}: New files.
13811         * libc/sys/win32/sys/strace.h: Renamed from ptrace.h.
13812         * libc/sys/win32/sys/wintypes.h (GetCurrentDirectoryA): Fix prototype.
13813
13814 Thu Aug 10 16:32:52 1995  Doug Evans  <dje@canuck.cygnus.com>
13815
13816         * libc/sys/h8500hms/misc.c (kill): Handle SIGABRT.
13817
13818 Thu Aug 10 12:07:38 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13819
13820         * libc/stdlib/{dtoa.c, strtod.c}: Merged assorted changes that
13821         have been made to the master dtoa.c sources (from netlib.att.com)
13822         since they were integrated into newlib in early 1992.  Fixes
13823         problems with storage leaks and handling of numbers with very
13824         negative exponents.
13825         
13826 Wed Aug  9 14:18:39 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13827
13828         * Makefile.in (all): set rootpre and srcrootpre before calling
13829         sub-makes.
13830
13831 Tue Aug  8 17:20:45 1995  steve chamberlain  <sac@slash.cygnus.com>
13832
13833         * libc/sys/win32/crt0.c: Change __hmap usage.
13834         * libc/sys/win32/exceptions.c: Use _ptrace call.
13835         * libc/sys/win32/syscalls.c: Use _ptrace call.
13836         (read, write): Cope with DOS style CRLF when in TEXT mode.
13837         * libc/sys/win32/syscalls.h: Declare hinfo struct.
13838         * libc/sys/win32/user32.def: Get DefWindowProc arg list right.
13839         * libc/sys/win32/sys/fcntl.h, ptrace.h: New.
13840         * libc/sys/win32/sys/windows.h: Fill in rest of messages.
13841         * libc/sys/win32/sys/wintypes.h: Fix attribute syntax.
13842
13843 Mon Aug  7 13:04:54 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13844
13845         * libc/include/math.h (cabs, cabsf, drem, dremf): New declarations.
13846
13847         * libm/math/{w_cabs.c, wf_cabs.c, w_drem.c, wf_drem.c}: New files,
13848         wrappers for hypot() and remainder() for BSD libm compatibility.
13849         These are public domain implementations written by me for the
13850         NetBSD libm some time ago.  Note cabs() is required by ucbtest.
13851         * libm/math/Makefile.in (obj): Added w_cabs.o and w_drem.o.
13852         (fobj): Added wf_cabs.o and wf_drem.o.
13853
13854 Thu Aug  3 08:13:05 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13855
13856         * libc/sys/h8500hms/misc.c: New file.
13857         * libc/sys/h8500hms/Makefile.in (OFILES): Add misc.o.
13858
13859 Wed Aug  2 16:46:27 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13860
13861         * libc/time/localtime.c (localtime): Fix problem with leap year
13862         handling.  Stole algorithm from Arthur David Olson's tz code.
13863         
13864 Mon Jul 31 10:21:54 1995  steve chamberlain  <sac@slash.cygnus.com>
13865
13866         * configure.in: (z8k-*sim): Renamed z8k-*-coff.
13867
13868         * libc/sys/z8ksim/glue.c (_getpid, _kill): New
13869         (_exit): Use argument.
13870
13871 Fri Jul 28 15:17:04 1995  Doug Evans  <dje@canuck.cygnus.com>
13872
13873         * libc/sys/win32/sys/winbase.h (_WINBASE_H): Define.
13874
13875 Wed Jul 26 16:24:19 1995  steve chamberlain  <sac@slash.cygnus.com>
13876
13877         * libc/sys/sh/trap.S (perrno): Align correctly. (pr 7532)
13878
13879 Mon Jul 24 13:42:52 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13880
13881         * configure.in (sparc*): Add -DMALLOC_ALIGNMENT=8 to
13882         target_cflags.
13883
13884 Mon Jul 24 11:42:07 1995  steve chamberlain  <sac@slash.cygnus.com>
13885
13886         * libc/sys/win32/crt0.c (mainCRTStartup):  Look for
13887         ptrace with case insensitivity
13888         * libc/sys/win32/{user32.def, gdi32.def, exceptions.c, screen.c,
13889         sys/winbase.h,  sys/windows.h, sys/wintypes.h, sys/winuser.h}:
13890         New files.
13891
13892 Fri Jul 21 11:22:26 1995  Doug Evans  <dje@canuck.cygnus.com>
13893
13894         * Makefile.in: Multilib support moved to ../cfg-ml-{com,pos}.in.
13895         (MULTITOP, MULTIDIRS, MULTISUBDIR, MULTIDO, MULTICLEAN): New variables.
13896         (all, install, *clean): Use new multilib support.
13897         * configure.in: Multilib support moved to ../cfg-ml-{com,pos}.in.
13898
13899 Fri Jul 21 07:11:42 1995  steve chamberlain  <sac@slash.cygnus.com>
13900
13901         * libc/include/sys/signal.h (__WIN32__): New.
13902
13903         * configure.in (i386-*-win32): Remobe SBRK_IS_ALLOC.
13904
13905         * libc/stdlib/mprec.c (Balloc): Fix trampling problem.
13906         (ulp, b2d): Handle 32 bit doubles.
13907         * libc/stdlib/mprec.h:  Handle 32 bit doubles.
13908         * libc/stdlib/strtod.c (_strtod_r): Ditto.
13909
13910 Fri Jul 14 08:24:58 1995  steve chamberlain  <sac@slash.cygnus.com>
13911
13912         from medp@primag.co.uk:
13913         * libc/stdio/setvbuf.c (setvbuf): Fix line buffering on
13914         dynamically allocated buffers.
13915
13916 Thu Jul 20 10:11:03 1995  Fred Fish  <fnf@fishbowl>
13917
13918         * libc/include/sys/unistd.h (_exit):  Add _ATTRIBUTE ((noreturn)).
13919         * libc/stdlib/exit.c (unistd.h):  Include to pick up _exit() declaration.
13920
13921 Thu Jul 20 10:16:25 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13922
13923         * configure.in (powerpc): Fix previous fix.
13924
13925 Wed Jul 19 14:08:55 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13926
13927         * configure.in (powerpc-*eabiaix*): Update PowerPC multilib
13928         directories for this target.
13929
13930 Wed Jul 19 00:34:30 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13931
13932         * configure.in (hppa): Add machine_dir definition.
13933         * libc/machine/hppa: New directory with PA specific implementations
13934         of the basic memory/string functions.
13935
13936 Tue Jul 18 21:16:00 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13937
13938         * configure.in: Update current PowerPC multilib directories.
13939         Split big and little endian configurations.
13940
13941 Tue Jul 18 11:55:33 1995  Ian Lance Taylor  <ian@cygnus.com>
13942
13943         * configure.in: Add --enable-single-float option to configure to
13944         control use of MIPS single-float directories.  Default to yes.
13945
13946         * Makefile.in (all): Don't recurse into multilib directory if it
13947         does not exist.
13948
13949 Mon Jul 17 15:51:30 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13950
13951         * libc/sys/sh/syscalls.c: Fix typo.
13952
13953 Mon Jul  3 14:38:52 1995  Steve Chamberlain  <sac@slash.cygnus.com>
13954
13955         * Makefile.in, libc/Makefile.in, libc/sys/Makefile.in:
13956         Pass down DLLTOOL.
13957         * libc/include/process.h: Define WAIT_CHILD.
13958         * libc/include/types.h: Get sizes right for win32.
13959         * configure.in (i386-*-pe): Becomes i386-win32.
13960         * libc/sys/win32/{crt0.c, kernel32.def, longjmp.c, setjmp.c, syscalls.c
13961         wintypes.h,sys/file.h,sys/resource.h}: Second pass.
13962         * libc/stdlib/mallocr.c: Don't round up memory block if SBRK_IS_ALLOC
13963         is defined.
13964
13965 Wed Jun 28 18:34:54 1995  Steve Chamberlain  <sac@slash.cygnus.com>
13966
13967         * configure.in (i[345]86-*-pe):  New target (NT).
13968         * host/any: DLLTOOL new.
13969         * libc/sys/win32/{crt0.c, kernel32.def, longjmp.c, setjmp.c, syscalls.c
13970         wintypes.h,sys/file.h,sys/resource.h}: Preliminary support for
13971         WIN32 (just enough to cross host the comp-tools).
13972
13973 Thu Jun 22 11:45:18 1995  Doug Evans  <dje@canuck.cygnus.com>
13974
13975         * libc/machine/h8300/{cmpsi.S,ucmpsi.S,divhi3.S,mulhi3.S,mulsi3.S}:
13976         Deleted.  These files live in gcc/config/h8300/lib1funcs.asm now.
13977
13978 Mon Jun 19 11:40:40 1995  Doug Evans  <dje@canuck.cygnus.com>
13979
13980         * libc/include/machine/ieeefp.h (arm): Change to always be
13981         __IEEE_BIG_ENDIAN (even on little endian ARM's).
13982
13983 Thu Jun  8 14:22:28 1995  Steve Chamberlain  <sac@slash.cygnus.com>
13984
13985         * libc/sys/crt0.S: Initialze sp, and call exit after main.
13986         * libc/sys/syscalls.c (abort): New.
13987         * configure.in (arm): Define ABORT_PROVIDED.
13988
13989 Wed Jun  7 14:04:35 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13990
13991         * configure.in (powerpc): Define multidirs.
13992
13993 Mon Jun  5 16:10:13 1995  Doug Evans  <dje@canuck.cygnus.com>
13994
13995         * libc/sys/arm/crt0.S: Add __USER_LABEL_PREFIX__ support.
13996
13997 Thu Jun  1 10:51:47 1995  Sean Eric Fagan <sef@cygnus.com>
13998
13999         * configure.in (sparclite): Delete target_cflags.  Define multidirs.
14000
14001 Wed May 24 14:23:25 1995  Steve Chamberlain  <sac@slash.cygnus.com>
14002
14003         * configure.in, libc/include/machine/ieeefp.h: Modified
14004         for arm:
14005         libc/machine/arm/*, libc/sys/arm/*: New
14006
14007 Tue May 23 13:53:07 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
14008
14009         * libc/include/machine/ieeefp.h: Use __PPC__ instead of
14010           __powerpc__ when determining endianness.
14011
14012 Wed May 10 07:55:56 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
14013
14014         * configure.in (m68*): Add multidir for the m68332.
14015
14016         * host/any (CC): Fix typo in last change.
14017
14018 Fri Apr 14 22:20:31 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
14019
14020         * libc/include/sys/config.h: Test __m68k__ instead of __m68000__
14021         when determining endianness.
14022         * libc/include/machine/ieeefp.h: Ditto.
14023         * libc/machine/m68k/setjmp.S: Use '&' instead of '#' for immediate
14024         operands.
14025
14026 Fri Apr 14 14:14:29 1995  Doug Evans  <dje@chestnut.cygnus.com>
14027
14028         * libc/include/errno.h (ENOTEMPTY): Define.
14029
14030 Thu Apr  6 12:21:20 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
14031
14032         * configure.in (sparc-sun-sunos*): Add -DMALLOC_ALIGNMENT=8 to
14033           target_cflags.
14034
14035         * libc/sys/sun4/Makefile.in (COPYOFILES): Added rem.o, multiply.o,
14036           and umultiply.o.
14037
14038         * libc/stdio/tmpnam.c (worker): Unconditionally increment count
14039           instead of only when open succeeds.  ANSI requires that multiple
14040           calls to tmpnam() result in different files.
14041
14042         * libc/sys/sun4/Makefile.in (COPYRENAMEOFILES): New macro, list of
14043           objects pulled in from /lib/libc.a that must be renamed before
14044           being pulled into newlib.  /lib/libc.a's div.o conflicted with
14045           newlib's file with the same name.
14046
14047         * libc/stdlib/ldiv.c (ldiv): Call labs() instead of abs().
14048
14049         * host/any (CC, AS, AR, RANLIB): Changed so that executables in
14050           the build tree will only be used if the executables are present
14051           (instead of just the Makefiles).
14052
14053         * libc/include/stdlib.h (mblen, mbtowc, wctomb, mbstowcs,
14054           wcstombs): Define.
14055         * libc/stdlib/{mblen.c, mbstowcs.c, wcstombs.c}: New files, null
14056           versions of these functions that I orignally wrote for the
14057           NetBSD C library.
14058         * libc/stdlib/{mbtowc.c, wctomb.c}: Replaced functions with
14059           versions I wrote for NetBSD.
14060
14061 Wed Mar 29 12:42:42 1995  Kung Hsu  <kung@mexican.cygnus.com>
14062
14063         * libc/sys/sparclite/Makefile.in: add crt0.s and make info.
14064         * libc/sys/sparclite/crt0.s: ditto.
14065
14066 Tue Mar 28 20:28:03 1995  Rob Savoye  <rob@rtl.cygnus.com>
14067
14068         * configure.in: Add soft-float for proelf.
14069
14070 Mon Mar 27 12:07:56 1995  Steve Chamberlain  <sac@bang.hack.com>
14071
14072         * libc/stdlib/mprec.h (Bcopy): Copy the right number
14073         of bytes.
14074
14075 Mon Mar 27 11:24:22 1995  Doug Evans  <dje@chestnut.cygnus.com>
14076
14077         * Makefile.in (all): Depend on `force'.
14078         * configure.in (syscall_dir): Renamed from fake_sys_dir.
14079         (libc_syscall_lib): Renamed from libc_fake_sys_lib.
14080         (LIBC_SYSCALL_LIB): Renamed from LIBC_FAKE_SYS_LIB.
14081         * libc/Makefile.in: Likewise.
14082         * libc/include/reent.h: Update syscall references.
14083         (_fcntl_r): Add prototype.
14084         * libc/syscalls/*.c #include <reent.h>.
14085         (*) Call reentrant version if REENTRANT_SYSCALLS_PROVIDED.
14086
14087 Mon Mar 20 16:57:39 1995  Doug Evans  <dje@deneb.cygnus.com>
14088
14089         * libc/include/sys/stat-dj.h (S_ISBLK): Define.
14090         (S_ISCHR, S_ISDIR, S_ISFIFO, S_ISREG): Define.
14091         * libc/include/sys/stat.h (stat-dj.h): Include ifdef MSDOS.
14092         (time.h, sys/types.h): Always include (even if MSDOS).
14093         (stat): Fix prototype.
14094
14095 Fri Mar 10 11:30:38 1995  Ian Lance Taylor  <ian@cygnus.com>
14096
14097         * configure.in (i[345]86-*-go32): Compile with -DNO_EXEC.
14098
14099 Mon Feb 27 18:00:39 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
14100
14101         * libc/machine/h8500/psi.S (EXTPSIHI_RN_SN): Ifdef out.
14102
14103 Mon Feb 13 16:10:03 1995  Ian Lance Taylor  <ian@cygnus.com>
14104
14105         * libc/include/regdef.h: New file.
14106         * libc/machine/mips/machine/regdef.h: New file.
14107
14108 Mon Feb  6 15:24:29 1995  Doug Evans  <dje@canuck.cygnus.com>
14109
14110         * libc/sys/sparc64/sys/fcntl.h (open): Add ellipsis.
14111
14112 Fri Jan 27 13:52:10 1995  Steve Chamberlain  <sac@splat>
14113
14114         * libc/sys/sh/crt0.S: Pass main's return to exit.
14115         * libc/sys/sh/trap.S: Put errno in the right place.
14116
14117 Tue Jan 24 18:57:56 1995  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14118
14119         * libm/math/e_rem_pio2.c (__ieee754_rem_pio2): Integrate change
14120         from fdlibm 5.2: handle |x| < 3pi/4 more efficiently.
14121         * libm/math/ef_rem_pio2.c: Likewise.
14122         * libm/math/e_log10.c: Remove unused static one.
14123         * libm/math/ef_log10.c: Likewise.
14124         * libm/math/s_frexp.c: Likewise.
14125         * libm/math/sf_frexp.c: Likewise.
14126
14127 Sun Jan 22 21:26:14 1995  Steve Chamberlain  <sac@splat>
14128
14129         * libc/sys/go32/Makefile.in, clock.S, dir.c, setjmp.S, stat.c,
14130         longjmp.S: Upgraded.
14131         * libc/sys/go32/sys/setjmp.h: Upgraded.
14132         * libc/sys/go32/sys/go32.h, dpmi.h: New files.
14133
14134 Fri Jan 20 18:33:18 1995  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14135
14136         * configure.in: Add many entries to multidirs for mips targets.
14137
14138 Wed Jan 18 10:19:25 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
14139
14140         * libm/math/e_jn.c (__ieee754_yn): Integrate change from fdlibm
14141           5.2 which fixes bug where jn(-1,x) is three times larger than
14142           the actual answer.
14143         * libm/math/ef_jn.c (__ieee754_ynf): Likewise.
14144
14145 Sun Jan 15 21:48:58 1995  Steve Chamberlain  <sac@splat>
14146
14147         * libc/sys/w65/sys/syscalls.h: New file
14148         * libc/include/machine/ieeefp.h: W65 support.
14149         * libc/include/sys/config.h: Ditto.
14150         * libc/machine/w65/Makefile.in, cmpsi, divsi3, lshrhi.s, mulsi3.c,
14151         sdivhi3.s, smulhi3.s, udivhi3.s, umodhi3.s: New files.
14152         * libc/sys/w65/Makefile.in, crt0.c, syscalls.c, trap.c: New files.
14153
14154 Wed Jan 11 15:59:01 1995  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14155
14156         * libc/sys/Makefile.in (lib.a, crt0.o): Depend upon subs.
14157
14158 Tue Jan  3 15:57:03 1995  Rob Savoye  <rob@darkstar.cygnus.com>
14159
14160         * Makefile.in, configure.in: Remove any references to the old
14161         "stub" dir.
14162
14163 Thu Dec 22 10:42:08 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14164
14165         * libc/syscalls/sysopen.c: Write _HAVE_STDC version of open, which
14166         uses ... in prototype.
14167
14168
14169 Wed Nov 30 08:39:42 1994  Ian Lance Taylor  <ian@rtl.cygnus.com>
14170
14171         * libc/sys/a29khif/sys/libconfig.h: Remove.
14172         * libc/sys/go32/sys/libconfig.h: Remove.
14173         * libc/sys/sun4/sys/libconfig.h: Remove.
14174         * libc/sys/sysvi386/sys/libconfig.h: Remove.
14175         * libc/sys/sysvnecv70/sys/libconfig.h: Remove.
14176         * libc/sys/sparc64/sys/libconfig.h: Remove.
14177
14178         * libc/include/_ansi.h (_FLOAT_ARG, _FLOAT_RET): Don't define.
14179         * libc/include/sys/config.h (_FLOAT_ARG, _FLOAT_RET): Likewise.
14180         * libc/include/math.h: Change all uses of _FLOAT_RET and
14181         _FLOAT_ARG to float.
14182         * libm/test/math.c: Likewise.
14183         * testsuite/libm.sac/math.c: Likewise.
14184         * testsuite/libm.sac/working/math.c: Likewise.
14185
14186 Wed Nov 23 22:39:28 1994  Steve Chamberlain  (sac@jonny.cygnus.com)
14187
14188         * libc/sys/sh/trap.s,crt0.s,setjmp.s: Renamed with .S so that
14189         gcc calls gas with endian option.
14190         * configure.in (sh): Build little endian version too.
14191
14192 Wed Nov 16 18:21:45 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14193
14194         * configure.in: Configure big and little endian versions for MIPS
14195         targets.
14196
14197 Sat Nov 12 21:12:51 1994  Doug Evans  <dje@canuck.cygnus.com>
14198
14199         * libc/include/limits.h: Deleted.
14200         * libc/include/machine/limits.h: Deleted.
14201
14202 Thu Nov 10 15:32:44 1994  Rob Savoye  <rob@rtl.cygnus.com>
14203
14204         * ChangeLog: Remove stub directory. This has all been rewritten
14205         and moved to devo/libgloss.
14206
14207 Thu Sep 29 18:31:04 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14208
14209         * Makefile.in (dvi): Add to info target, use $@ in sub make.
14210         (docs): Merge into info target.
14211         * libm/Makefile.in (dvi): Add $(srcdir).
14212         * libm/math/Makefile.in (chobjs): Remove underscores from file
14213         names.  Texinfo doesn't like them.
14214         (wacos.def, ...): Add explicit targets for all .def files.
14215         * libm/math/math.tex: Remove underscores from @include file names.
14216         * doc/Makefile.in (dvi): Add dummy target.
14217         * testsuite/Makefile.in (dvi): Add dummy target.
14218
14219 Mon Sep 26 21:17:46 1994  Doug Evans  (dje@canuck.cygnus.com)
14220
14221         * Makefile.in (VERSION): Define.  For net newlib releases.
14222
14223 Thu Sep 22 19:01:26 1994  Doug Evans  (dje@canuck.cygnus.com)
14224
14225         * README: New file.
14226
14227 Mon Sep 19 16:35:23 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)
14228
14229         * libc/stdlib/ecvtbuf.c (_gcvt): Undo last change.
14230
14231 Mon Sep 19 11:44:23 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14232
14233         * libc/stdlib/setenv.c (_findenv): Declare.
14234
14235         * libc/include/sys/fcntl.h: Fix declarations of open, creat, and
14236         fcntl to not use _EXFUN, and change string parameters to open and
14237         creat to be ``const char *''.
14238         * libc/sys/sparc64/sys/fcntl.h: Likewise.
14239         * libc/sys/sparc64/creat.c (creat): Make PATH const.
14240         * libc/syscalls/sysopen.c: Include <fcntl.h>.
14241         (open) Make _FILE const.
14242         * libc/sys/z8ksim/glue.c (_open): Make BUF const.
14243         (_creat): Make PATH const.
14244         * libc/sys/h8300hms/syscalls.c (_open): Make PATH const.
14245         * libc/sys/h8500hms/syscalls.c (_open): Likewise.
14246         * libc/sys/m88kbug/syscalls.c (open): Likewise.
14247         * libc/sys/sh/syscalls.c (_open): Likewise.
14248         * stub/shared/glue.c (open): Make BUF const.
14249         * stub/ex93x/syscalls.c (open): Make FILENAME const.
14250
14251 Thu Sep  8 16:39:12 1994  Steve Chamberlain  (sac@jonny.cygnus.com)
14252
14253         * libc/include/errno.h: Add ENMFILE
14254         * libc/include/sys/config.h: Support Z8000.
14255         * libc/include/sys/signal.h: New signals for go32.
14256         * libc/machine/h8500/psi.S (__addpsir0r0): New function
14257         * libc/machine/h8500/cmpsi.S (__ucmppsi2): New function
14258         * libc/machine/sh/sdivsi3.s (__sdivsi3): Rewritten.
14259         * libc/stdlib/mallocr.c (_morecore_r): Minimum chunk
14260         size is variable, depending upon CHUNK_POWER.
14261         * libc/sys/go32/*.c: Upgrade to new go32 stuff.
14262
14263 Sun Sep  4 17:42:43 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)
14264
14265         * libc/stdlib/ecvtbuf.c (_gcvt): Output '-' for negative numbers.
14266
14267 Fri Sep  2 10:56:01 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14268
14269         * libc/include/_ansi.h (_PARAMS): Don't define if already defined.
14270
14271 Wed Aug 24 11:11:03 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14272
14273         * configure.in: Change i[34]86 to i[345]86.
14274
14275         * libc/include/math.h: Don't define HUGE_VAL if it is already
14276         defined.
14277
14278 Wed Aug 17 15:18:02 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14279
14280         * testsuite/libm.sac/test_erfc.c: Correct some result values.
14281         * testsuite/libm.sac/test_gammaf.c: Likewise.
14282         * testsuite/libm.sac/test_sin.c: Likewise.
14283         * testsuite/libm.sac/test_tanh.c: Likewise.
14284
14285 Tue Aug 16 16:12:53 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14286
14287         * libc/include/machine/ieeefp.h: Don't try set endianness if it is
14288         already set.  Define typedefs __int32_t and __uint32_t.
14289         * libc/include/math.h: Include <machine/ieeefp.h>.
14290         (union __dmath): Use __uint32_t.
14291         * libm/math/fdlibm.h, libm/math/*.c: Use __int32_t and __uint32_t
14292         instead of int and unsigned int.
14293
14294 Thu Aug 11 15:16:09 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14295
14296         Replace the math library with the SunPRO fdlibm package.
14297         * libm/math: Completely changed all files.
14298         * libm/ieeefp: Remove contents and directory.
14299         * libm/Makefile.in (LIBM_FP_LIB): Remove.
14300         (SUBDIRS): Just set to math/lib.a.
14301         * libm/libm.texinfo: Updated for new library.
14302         * libc/include/math.h: Extensive changes for new math library.
14303         * libc/include/ieeefp.h (isnanf, isinff, finitef): Change argument
14304         from _FLOAT_ARG to float.
14305         (maxpowtwo, maxpowtwof): Don't declare.
14306         * configure.in (fp_dir): Removed; was always ieeefp anyhow.
14307         (libm_fp_lib): Removed.
14308         * Makefile.in (MATHOBJS_IN_LIBC): Updated with new file names.
14309         * testsuite/libm.paranoia/Makefile.in (check): Correct --srcdir
14310         argument to ${RUNTEST}.
14311         * testsuite/libm.sac/Makefile.in (LOCAL_CFLAGS): Define.
14312         (.c.o): New rule.
14313         (RUNTESTFLAGS): Set CC and CFLAGS.
14314         (TESTS): Remove test_log2 and test_log2f.
14315         (${TESTS}): Pass ${LOCAL_CFLAGS}, not ${CFLAGS}.
14316         * testsuite/libm.sac/math.c (run_vector_1): Use float, not
14317         _FLOAT_ARG, for single precision argument type.
14318         * testsuite/libm.sac/sac.exp: Treat an error in bit 63 as an
14319         expected failure.  Close the input pipe.
14320         * testsuite/libm.sac/test.c (test_sok, test_iok, test_scok):
14321         Correct misspelling of inaccurate.
14322         (test_mok): Use ``inaccurate'', not ``wrong''.
14323         * testsuite/libm.sac/{test_acos.c, test_acosh.c, test_asin.c,
14324         test_asinh.c, test_atan.c, test_atanh.c, test_ceil.c,
14325         test_ceilf.c, test_cos.c, test_cosh.c, test_erf.c, test_erf.c,
14326         test_fabs.c, test_floor.c, test_floorf.c, test_fmod.c,
14327         test_fmodf.c, test_gamma.c, test_log1p.c, test_log1pf.c,
14328         test_yn.c): Correct many result values.  Many are still wrong.
14329
14330         * libc/stdlib/ecvtbuf.c (print_e): If _dtoa_r sets decpt to 9999,
14331         just copy the string.
14332         (_gcvt): Always return the buffer.
14333
14334 Tue Aug  9 13:43:23 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
14335
14336         * bcopy.c: fixed documentation, bcopy was not specified by ANSI.
14337
14338 Wed Aug  3 05:39:41 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14339
14340         * libc/include/sys/reent.h: (struct _Bigint): add _reclaim
14341         structure.
14342         (struct _reent): add _p5s, _cvtlen, _cvtbuf.
14343         (_reclaim_reent): declare new entry point.
14344         * libc/reent/reent.c (cleanup_glue, _reclaim_reent): new
14345         functions.
14346
14347         * libc/stdlib/mprec.c (Balloc): Keep track of every struct bigint
14348         ever allocated, so that we can later reclaim them all.
14349         (pow5mult): make reentrant.
14350
14351         * libc/stdlib/ecvtbuf.c (fcvtbuf, ecvtbuf): extend these functions
14352         so that when given NULL as a buffer, return a pointer to static
14353         space in the rent structure.  This is not documented behaviour;
14354         it's only to support ecvt and fcvt, which aren't ANSI anyway.
14355         * libc/stdlib/efgcvt.c (fcvt, ecvt) Use new functionality (and
14356         therefore become reentrant).
14357         
14358         * libc/stdlib/dtoastub.c: remove spurious inclusion of mprec.h.
14359
14360 Mon Aug  1 16:52:24 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14361
14362         * libc/include/machine/ieeefp.h: Check _AM29K, not ___AM29K__.
14363
14364 Thu Jul 28 15:40:21 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
14365
14366         * Makefile.in: Make link to libg.a after libc.a; this is needed
14367           for the testsuites to build executables when everything comes
14368           from the tree.
14369
14370 Mon Jun 27 17:14:29 1994  Bill Cox  (bill@rtl.cygnus.com)
14371
14372         * libc/Makefile.in: Add a VERSION variable so we can keep track.
14373         * libm/Makefile.in: Add a VERSION variable so we can keep track.
14374
14375 Wed Jun 22 10:26:00 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14376
14377         * libc/include/stdio.h: Use __VALIST, not va_list.
14378
14379 Tue May 17 15:43:28 1994  Bill Cox  (bill@rtl.cygnus.com)
14380
14381         * testsuite/config/unix-libm.exp, testsuite/lib/libm.exp,
14382         testsuite/libm.sac/execute.exp:
14383           Replace error proc calls with perror calls.
14384
14385 Wed May 11 09:25:28 1994  Doug Evans  (dje@canuck.cygnus.com)
14386
14387         * libc/include/*.h: #include "_ansi.h" instead of <_ansi.h>.
14388         * libc/include/time.h: #define NULL as 0L.
14389
14390 Mon May  9 18:41:20 1994  Doug Evans  (dje@canuck.cygnus.com)
14391
14392         * host/any (INCLUDES): Delete -I of gcc/include, gcc -B takes
14393         care of it.
14394
14395 Mon May  9 18:39:39 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14396
14397         * libc/include/sys/signal.h: Check for __GO32__, not __i386__ and
14398         not __unix__.
14399
14400 Sat May  7 17:07:36 1994  Steve Chamberlain  (sac@cygnus.com)
14401
14402         * configure.in (TARGET_CFLAGS): Set -O2 as default.
14403         (z8k-*-*): Use syscalls fake sys dir.
14404         * libc/sys/z8k/glue.c: Rename syscalls.
14405         * libc/sys/go32/Makefile.in: Use new routines.
14406         * libc/machine/Makefile.in: Fix typo in ln stuff.
14407
14408 Thu May  5 13:47:48 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14409
14410         * Makefile.in (libm.a, crt0.o): Use cp if ln fails.
14411         * libc/Makefile.in (crt0.o): Likewise.
14412         * libc/machine/Makefile.in (lib.a): Likewise.
14413         * libc/sys/Makefile.in (lib.a, crt0.o): Likewise.
14414
14415         All Makefile.in files: Added mostlyclean, realclean and distclean
14416         targets.
14417
14418         * Makefile.in: Don't bother to unexport XTRAFLAGS or
14419         XTRAFLAGS_FOR_TARGET, since they are no longer passed down from
14420         the top level Makefile.
14421
14422 Tue Apr 26 15:10:34 1994  Doug Evans  (dje@canuck.cygnus.com)
14423
14424         * libc/sys/sparc64/sys/stat.h: New file.
14425         * libc/sys/sparc64/sys/time.h: New file.
14426         * libc/sys/sparc64/sys/types.h: New file.
14427
14428 Fri Apr 22 12:58:24 1994  Stan Shebs  (shebs@andros.cygnus.com)
14429
14430         * stub/ex93x/crt0.s (start): Add code to clear bss.
14431
14432 Wed Apr 13 10:34:58 1994  Doug Evans  (dje@canuck.cygnus.com)
14433
14434         * libc/include/sys/types.h (time_t): Properly protect inside
14435         #ifndef __time_t_defined.
14436
14437         * libc/stdio/fileno.c: New file.
14438         * libc/stdio/Makefile.in (OFILES, CHEWOUT_FILES): Add fileno.
14439         (fileno.o): Add dependency.
14440         * libc/include/stdio.h (__sgetc): Rename never to _never.
14441         (fileno macro): Disable, needs to do CHECK_INIT first.
14442
14443 Mon Apr 11 17:37:09 1994  Bill Cox  (bill@rtl.cygnus.com)
14444
14445         * testsuite/Makefile.in (EXPECT, RUNTEST): Set these for the check
14446         goal.
14447
14448         * testsuite/Makefile.in (check): Set TCL_LIBRARY for runtest.
14449         * testsuite/libm.paranoia/Makefile.in (check): Set TCL_LIBRARY for
14450         runtest.
14451         * testsuite/libm.sac/Makefile.in (check): Set TCL_LIBRARY for
14452         runtest.
14453
14454 Sat Apr  9 16:18:09 1994  Doug Evans  (dje@cygnus.com)
14455
14456         * libc/sys/sparc64/sys/fcntl.h: New file, define solaris versions
14457         of the various constants.
14458
14459 Thu Apr  7 21:19:07 1994  Mark Eichin  (eichin@cygnus.com)
14460
14461         * libc/include/math.h: #ifndef __math_68881 around things which
14462         conflict with the (gcc-provided) inline functions in
14463         gcc/ginclude/math-68881.h.
14464
14465 Thu Apr  7 02:50:43 1994  Doug Evans  (dje@cygnus.com)
14466
14467         * libc/include/_syslist.h (_gettimeofday): Define.
14468         (_times): Ditto.
14469         * libc/include/reent.h: #include <machine/types.h> to get _CLOCK_T_.
14470         (struct tms, timeval, timezone): Declare.
14471         (_gettimeofday_r, _times_r): Declare.
14472         * libc/include/time.h (_CLOCK_T_): Don't #undef.  Remove
14473         #ifdef _CLOCK_T_ surrounding definition of clock_t.
14474         (time_t): Add multiple definition protection, __time_t_defined.
14475         * libc/include/sys/time.h: Don't #include <time.h>.
14476         Always define struct timezone (remove #ifndef _TIME_H_).
14477         * libc/include/sys/times.h (_CLOCK_T_): Don't #undef.  Remove
14478         #ifdef _CLOCK_T_ surrounding definition of clock_t.
14479         * libc/reent/Makefile.in (OFILES): Add timer.o.
14480         (CHEWOUT_FILES): Add timer.def.  Add timer.o/timer.c dependence.
14481         * libc/reent/timer.c: New file.
14482         * libc/time/clock.c: #include <reent.h>.
14483         (clock): Call _times_r instead of times.
14484         * libc/time/time.c (HAVE_GETTIMEOFDAY): Renamed from
14485         HAVE_GET_TIME_OF_DAY.
14486         Add comment regarding supporting OS routine(s) required (for docs).
14487         #include <reent.h>.
14488         (time): Call _gettimeofday_r instead of gettimeofday.
14489         * libc/time/asctime.c: Fix comment regarding supporting OS routines.
14490         * libc/time/ctime.c: Ditto.
14491         * libc/time/strftime.c: Ditto.
14492         * libc/sys/sparc64/Makefile.in (TEMPLATE_SFILES): Remove gettimeofday.
14493         (TEMPLATE_SFILES_R): Define here.  Also define times.
14494         Add times_r.o/times.S dependence.
14495         (time2.c, junk.c): Deleted.
14496         * libc/sys/sparc64/time2.c: Deleted.
14497         * configure.in (sparc64-*-*): Define HAVE_GETTIMEOFDAY.
14498
14499         * libc/stdio/mktemp.c (_getpid_r): Renamed from _getpid.
14500         * libc/stdio/tmpnam.c (_getpid_r): Ditto.
14501         * libc/sys/sparc64/junk.c: Deleted.
14502
14503 Mon Mar 21 16:51:03 1994  Doug Evans  (dje@canuck.cygnus.com)
14504
14505         * libc/sys/sparc64/Makefile.in: Add times syscall.
14506         * libc/sys/sparc64/crt0.S: Handle stack bias at run time so we can
14507         be used with and without it.  Add comment clarifying Medium/Anywhere
14508         model requirements.
14509         * libc/sys/sparc64/sigsetjmp.S (setjmp, longjmp): Add svr4 support.
14510         * libc/sys/sparc64/sys/syscall.h (SYS_times): Define for sunos4
14511         even if obsolete.
14512
14513 Sun Mar 20 15:51:47 1994  Doug Evans  (dje@cygnus.com)
14514
14515         * configure.in (target_cflags): Move init.
14516         (sparc64-*-*): Define HAVE_BLKSIZE.
14517
14518 Wed Mar  9 10:44:52 1994  Doug Evans  (dje@canuck.cygnus.com)
14519
14520         * libc/include/sys/_types.h: New file.
14521         * libc/include/reent.h: #include it.
14522         Add comment describing REENTRANT_SYSCALLS_PROVIDED and
14523         MISSING_SYSCALL_NAMES.
14524         Sort syscalls.
14525         * libc/include/_syslist.h: Remove _raise.
14526         * libc/reent/signalr.c: New file.
14527         * libc/reent/Makefile.in: Compile it.
14528         * libc/signal/signal.c: Only use ifdef SIMULATED_SIGNALS.
14529         Add doc for raise and _raise_r.
14530         * libc/signal/raise.c: Only use ifndef SIMULATED_SIGNALS.
14531         (raise): Call _raise_r.
14532         (_raise_r): Call _getpid_r and _kill_r.
14533         * libc/stdlib/abort.c: Remove inclusion of stdio.h and _syslist.h.
14534         (abort): Loop forever calling raise and _exit.
14535
14536 Mon Mar  7 14:40:08 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14537
14538         * configure.in: Remove extraneous echo.
14539
14540 Thu Mar  3 12:14:22 1994  Doug Evans  (dje@canuck.cygnus.com)
14541
14542         * libc/sys/sparc64/sys/dirent.h (MAXNAMLEN): #undef to avoid
14543         collision with unistd.h, and fix for svr4.
14544
14545 Wed Mar  2 13:55:25 1994  Doug Evans  (dje@canuck.cygnus.com)
14546
14547         * libc/stdio/local.h (_llicvt): Declare.
14548         (CVT_BUF_SIZE): Define (and buffer size from 512 to 128).
14549         * libc/stdio/cvt.c: Include "local.h" to get CVT_BUF_SIZE.
14550         (_llicvt): Define.
14551         (_sicvt): Fix function header (`value' is short).
14552         * libc/stdio/vfprintf.c (_vfprintf_r): Use CVT_BUF_SIZE.
14553         Add printing of long long's support.
14554         Add printing of 8 byte pointer support.
14555
14556 Fri Feb 11 21:52:11 1994  Steve Chamberlain  (sac@sphagnum.cygnus.com)
14557
14558         * libc/sys/sh/syscalls.c (pipe, execv, wait, fork, utime, chown,
14559         stat, chmod): New hooks. 
14560         (sbrk): Abort if stack and heap collide.
14561         * libc/machine/sh/udivsi3, libc/machine/sh/sdivsi3 Modified to
14562         shortcut when given small args.
14563         * libc/machine/sh/setjmp.s: Rewritten.
14564         * libc/machine/sh/strcmp.s (strcmp): New function takes advantage
14565         of cmp/str instruction.
14566
14567 Wed Feb  9 15:12:35 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14568
14569         * configure.in: Accept powerpc* as a CPU type, using fp_dir ieeefp
14570         and machine_dir powerpc.
14571         * libc/include/machine/setjmp.h, libc/include/machine/ieeefp.h:
14572         Add cases for __powerpc__.
14573         * libc/machine/powerpc/Makefile.in, libc/machine/powerpc/setjmp.S:
14574         New files.
14575
14576         * libc/include/stdio.h (_iprintf_r): Declare correctly.
14577
14578 Thu Jan 27 10:36:27 1994  Steve Chamberlain  (sac@cygnus.com)
14579
14580         * libc/stdlib/callocr.c: New file with _calloc_r in it.
14581         * libc/stdlib/calloc.c (calloc_r): Now in callocr.c
14582
14583 Thu Jan 20 15:14:37 1994  Doug Evans  (dje@canuck.cygnus.com)
14584
14585         * libc/stdlib/ecvtbuf.c (print_f): Remove local "done".
14586         (print_e): More comments to describe args, etc.
14587         "type" arg may now be 'g' or 'G' for %g/G format --> remove
14588         trailing blanks.
14589         (_gcvt): Remove locals decpt, sign, end, p, done.
14590         More comments for print_e invocation.
14591         Pass "type" to print_e as is (g/G).
14592
14593 Wed Jan 19 16:34:18 1994  Rob Savoye  (rob@darkstar.cygnus.com)
14594
14595         * stub/shared/m68k-crt0.S: Changed so it compiles (and runs) on a
14596         stock m68000. 
14597
14598 Mon Jan 17 15:41:53 1994  Doug Evans  (dje@canuck.cygnus.com)
14599
14600         * libc/stdlib/mallocr.c (_morecore_r): Fix aligning of pointer so it
14601         works with any sized pointer, including ones bigger than ints and
14602         longs.
14603
14604 Thu Jan  6 14:53:21 1994  Doug Evans  (dje@canuck.cygnus.com)
14605
14606         * libc/sys/sparc64/{time2.c,utime.S,utime2.c}: New files.
14607
14608 Sat Dec 11 16:17:20 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
14609
14610         * libc/include/stdlib.h (_calloc_r): Add prototype.
14611         * libc/machine/h8500/negsi2.c: New file.
14612         * libc/machine/h8500/divsi3.c: Prevent overflow when dividing v
14613         large unsigned numbers.
14614         * libc/machine/h8500/cmpsi.c: Add cmppsi.
14615         * libc/stdlib/mallocr.c (morecore_r): Fix aligning pointers so it
14616         works when sizeof(size_t) != sizeof(char *).
14617         * libc/stdlib/mprec.c (Balloc): Call calloc rather than malloc to
14618         get play area
14619         * libc/stdlib/mprec.h: Define Just_16 if generating for z8000.
14620
14621 Mon Dec  6 15:59:53 1993  Doug Evans  (dje@rtl.cygnus.com)
14622
14623         * libc/include/assert.h (assert): Handle -traditional.
14624
14625 Tue Nov 16 15:49:24 1993  Mark Eichin  (eichin@cygnus.com)
14626
14627         * Makefile.in: added ; after every "fi" and "done" that wasn't at
14628         the end of a line (ie. anything before a backslash continuation)
14629         so that bash handles them.
14630
14631 Tue Nov 16 12:31:57 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
14632
14633         * libc/sys/go32/lstat.s: new file, copied from stat.s and renamed
14634         stat to lstat
14635
14636 Mon Nov 15 15:50:43 1993  Steve Chamberlain  (sac@jonny.cygnus.com)
14637
14638         * libc/sys/sh/crt0.s, libc/sys/sh/trap.s,
14639         libc/machine/sh/sdivsi3.s, libc/machine/sh/setjmp.s,
14640         libc/machine/sh/udivsi3.s: Use new calling convention.
14641
14642 Mon Nov 15 15:25:38 1993  Mark Eichin  (eichin@cygnus.com)
14643
14644         * libc/include/sys/unistd.h, libc/include/sys/stat.h: ANSI-fy
14645         chmod, access, chdir, chown by making _path const. Also fix _amode
14646         param of access.
14647
14648 Fri Nov 12 20:25:28 1993  Mark Eichin  (eichin@cygnus.com)
14649
14650         * libc/sys/a29khif/_tmpnam.s (_tmpnam): renamed function to
14651         _khif_tmpnam, because it doesn't comply with ANSI but may be
14652         useful anyway. Real tmpnam was already in libc/stdio, and was
14653         colliding with this one (pr 2176.) 
14654         * libc/sys/a29khif/stubs.s (tmpnam): removed tmpnam. This file is
14655         the wrong idea anyhow.
14656
14657 Mon Nov  8 07:50:16 1993  Doug Evans  (dje@canuck.cygnus.com)
14658
14659         * configure.in: Remove h8300h, we have multilib now.
14660
14661 Fri Nov  5 12:37:27 1993  Mark Eichin  (eichin@cygnus.com)
14662
14663         * libc/string/strcasecmp.c, libc/string/strncasecmp.c: new
14664         functions, to get preference over the ones in libiberty (since we
14665         provide correct declarations in <string.h>.
14666         * libc/string/Makefile.in: add support for strncasecmp,
14667         strcasecmp.
14668
14669 Fri Nov  5 09:05:45 1993  D. V. Henkel-Wallace  (gumby@blues.cygnus.com)
14670
14671         * Change netware config not to look for cpu explicitly.
14672
14673 Thu Nov  4 14:21:25 1993  Doug Evans  (dje@canuck.cygnus.com)
14674
14675         * libc/sys/sparc64/{creat.c,junk.c}: New files.
14676         * libc/sys/sparc64/Makefile.in: Add dependencies.
14677
14678 Wed Nov  3 10:42:49 1993  Doug Evans  (dje@canuck.cygnus.com)
14679
14680         * configure.in: Clean up v9 a bit, new "os" aoutv8.
14681
14682 Tue Nov  2 10:00:44 1993  D. V. Henkel-Wallace  (gumby@cygnus.com)
14683
14684         * libc/include/sys/reent.h: make structure smaller by allocating
14685         some stuff when needed.
14686         * libc/signal/signal.c: allocate as needed
14687         * libc/stdio/findfp.c,stdio/local.h: ditto
14688         * libc/stdlib/mprec.c: ditto
14689
14690         * libc/time/localtime.c: don't return a dangling stack ptr.
14691
14692 Wed Sep 29 20:42:34 1993  Rob Savoye  (rob@darkstar.cygnus.com)
14693
14694         * stub/mvme135/crt0.S, stub/mvme135/glue.c: Moved to stub/generic.
14695
14696 Wed Sep 29 16:27:49 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
14697
14698         * libc/include/stdio.h (__sputc): comment out static inline which
14699           confuses coff toolchains.
14700
14701 Thu Sep  2 16:31:36 1993  Mark Eichin  (eichin@cygnus.com)
14702
14703         * libc/sys/a29khif/{_close.s, _fstat.s, _lseek.s, _sbrk.s,
14704         _write.s, getpid.c, kill.c, read.s}:
14705         * libc/sys/a29khif/stubs.s: eliminated stubs that already go
14706         through the syscalls directory.
14707
14708 Fri Oct 29 13:59:58 1993  Jeffrey Wheat  (cassidy@cygnus.com)
14709
14710         * configure.in: fixed double quote gotcha.
14711
14712 Wed Oct 27 15:27:09 1993  Rob Savoye  (rob@darkstar.cygnus.com)
14713
14714         * stub/ex931: stub library for sparclite board.
14715         * stub/idp: Renamed from mc68ec. Added contructor table
14716         stuff to linker script.
14717         * stub/mvme135: Renamed from m68kmvme. Added contructor table
14718         stuff to linker script.
14719
14720 Tue Oct 26 17:01:23 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
14721
14722         * configure.in: Configure testsuites only if they exist.
14723
14724 Tue Oct 26 12:37:11 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14725
14726         * configure.in: Don't set machine_dir for i386 until there is
14727         something in libc/machine/i386 to compile.  For i[34]86-*-netware*
14728         use sys/netware, don't use signal, define NO_EXEC, ABORT_PROVIDED,
14729         CLOCK_PROVIDED and MALLOC_PROVIDED.
14730
14731         * libc/sys/netware: New directory.  Contains simplistic and
14732         probably incorrect stubs for NetWare.  Should be enough to load
14733         the library.
14734         * libc/sys/netware/crt0.c, libc/sys/netware/environ.c,
14735         libc/sys/netware/getpid.c, libc/sys/netware/link.c: New NetWare
14736         stub files.
14737
14738         * libc/reent/execr.c: Don't use if NO_EXEC is defined.
14739         * libc/reent/sbrkr.c: Don't use if MALLOC_PROVIDED is defined.
14740         * libc/stdlib/abort.c: Don't use if ABORT_PROVIDED is defined.
14741         * libc/time/clock.c: Don't use if CLOCK_PROVIDED is defined.
14742
14743 Mon Oct 25 16:48:08 1993  Roland H. Pesch  (pesch@cygnus.com)
14744
14745         * testsuite/Makefile.in: add "docs" dummy target for consistency
14746         with rest of newlib; turn "info" and "install-info" into dummy
14747         targets, since they wouldn't have worked.  (Depended on
14748         nonexistent "doc" subdir.)
14749
14750 Fri Oct 22 20:37:32 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
14751
14752         * configure.in: handle mips* instead of mips
14753
14754 Thu Oct 21 08:57:24 1993  Ian Lance Taylor  (ian@cygnus.com)
14755
14756         * libc/include/sys/dirent.h: New file.  If it is not overridden by
14757         a version of libc/sys/*/sys/dirent.h, it includes the next
14758         <dirent.h> file in case there is one lurking somewhere.
14759
14760 Fri Oct 15 14:17:40 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14761
14762         * libc/stdlib/strtoul.c (_strtoul_r): Several changes for ANSI
14763         compliance, namely: Accept a minus sign.  Consider a single 0 with
14764         a radix of 0 as being a conversion.  Determine overflow correctly.
14765         If an overflow occurs, set *ptr to the end of the number, not the
14766         middle.
14767         * lib/stdlib/strtol.c (_strtol_r): Determine overflow correctly.
14768
14769 Thu Oct 14 21:49:52 1993  Doug Evans  (dje@canuck.cygnus.com)
14770
14771         * libc/machine/h8300/divsi3.S (divmodsi4): Fix h8300h case.
14772
14773 Fri Oct  1 17:17:34 1993  Doug Evans  (dje@canuck.cygnus.com)
14774
14775         * Makefile.in (INSTALL): Use $srcrootpre.
14776         (crt0.o): Replace $< with $(CRT0_DIR)/$(CRT0), Sun make
14777         can't handle it.
14778         * libc/Makefile.in (crt0.o): Spell out $<, Sun make can't handle
14779         it.
14780         * libc/sys/Makefile.in (crt0.o, lib.a): Ditto.
14781         * stub/Makefile.in (crt0.o, TARGETLIB): Ditto.
14782         * libc/sys/sparc64/Makefile.in (isatty.o): Sun VPATH lossage.
14783         * libm/math/Makefile.in (matherr.o): Ditto.
14784
14785 Thu Sep 30 11:09:17 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
14786
14787         * configure.in: Build multidirs for z8k.
14788         * libc/include/stdlib.h (_strtoul_r): add prototype.
14789         * libc/include/machine/limits.h: Get INT_MIN right for all the z8k family.
14790         * libc/include/machine/setjmp.h: Add for z8k.
14791         * libc/machine/z8k/{mulsi.o, udivsi3.o, umodsi3.o, modsi3.o} obsolete.
14792         * libc/sys/z8ksim/glue.c: tidy up.
14793
14794 Mon Sep 20 14:04:46 1993  Doug Evans  (dje@canuck.cygnus.com)
14795
14796         * libc/unix/{execl.c execle.c execlp.c execv.c execvp.c}:
14797         New files.  Requires execve system call.
14798         * libc/unix/Makefile.in: Use them.
14799         * libc/sys/sparc64/{execl.c execle.c execlp.c execv.c execvp.c}:
14800         Deleted, moved to libc/unix.
14801         * libc/sys/sparc64/Makefile.in: Remove them.
14802
14803 Mon Sep 20 10:38:32 1993  Doug Evans  (dje@canuck.cygnus.com)
14804
14805         * libc/sys/sparc64/{template.S template_r.S}: New files.
14806         * libc/sys/sparc64/Makefile.in: Build source for trivial syscalls
14807         from templates.
14808         * libc/sys/sparc64/{chdir.S chmod.S close.S dup.S fcntl.S
14809         fork.S fstat.S lseek.S link.S mkdir.S open.S pipe.S read.S rmdir.S
14810         umask.S unlink.S wait4.S write.S}: Removed, now built from
14811         templates.
14812
14813 Sun Sep 19 14:52:57 1993  Doug Evans  (dje@canuck.cygnus.com)
14814
14815         * libc/time/time.c: #include <_ansi.h>.
14816
14817 Sun Sep 19 13:43:25 1993  Doug Evans  (dje@canuck.cygnus.com)
14818
14819         * configure.in (sparc64-*-*): Remove -D__SIZE_TYPE__.
14820
14821 Mon Sep 13 13:52:16 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
14822
14823         * configure.in: match m8* rather than m88k so that m88110 is
14824           recognized as well.
14825
14826 Tue Sep  7 12:19:32 1993  Doug Evans  (dje@canuck.cygnus.com)
14827
14828         * libc/sys/h8300hms/{Makefile.in, _exit.c, misc.c}:
14829         Renamed exit.c to _exit.c to avoid collision with stdlib/exit.c.
14830         misc.c: New file.
14831
14832         * configure.in: Add multilib support to h8300.
14833
14834 Mon Sep  6 14:07:06 1993  Doug Evans  (dje@canuck.cygnus.com)
14835
14836         * libc/stdlib/abort.c (abort): Remove _VOLATILE from return type.
14837         * libc/include/_ansi.h (_ATTRIBUTE): New macro for __attribute__.
14838         * libc/include/stdlib.h (exit, abort): Add noreturn attribute.
14839
14840 Mon Sep  6 14:24:18 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14841
14842         * configure.in: Corrected multidirs for sparc target.
14843
14844 Mon Aug 30 15:56:44 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14845
14846         Support for building newlib multiple times with different
14847         compilation flags.
14848         * configure.in: Only configure doc at top level.  Set multidirs
14849         when appropriate for target, unless not at top level.  If
14850         multidirs is set, independently configure each subdirectory.
14851         Adjust TOP, MULTIDIRS and MULTISUBDIR appropriately in Makefile.
14852         * Makefile.in (MULTIDIRS, MULTISUBDIR): New variables,
14853         automagically set by configure.in.
14854         (all): If MULTIDIRS is set, build multiple copies of libraries.
14855         (install): If MULTIDIRS is set, install multiple copies of
14856         libraries.  Install in $(tooldir)/lib/$(MULTISUBDIR).  If
14857         MULTISUBDIR is set, don't bother to install header files.
14858         * host/any (INCLUDES, CHEW): Use $(SRCTOP) rather than $(TOP) from
14859         ${srcrootpre}.
14860         * stub/configure.in: Set MULTISUBDIR appropriately.
14861         * stub/Makefile.in (install): Install in
14862         $(tooldir)/lib/$(MULTISUBDIR).
14863         * All Makefile.in files: Define SRCTOP as well as TOP.
14864
14865 Mon Aug 30 10:34:24 1993  Doug Evans  (dje@canuck.cygnus.com)
14866
14867         * libc/machine/h8300/{mulhi3.S, divhi3.S}: Comment out if h8300h.
14868         * libc/machine/h8300/{mulsi3.S, divsi3.S}: Add h8300h support.
14869
14870 Thu Aug 26 19:38:12 1993  Doug Evans  (dje@canuck.cygnus.com)
14871
14872         * libc/sys/h8300hms/exit.c (_exit): New function.
14873
14874 Wed Aug 25 16:31:48 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
14875
14876         * configure.in: recognize m88110.
14877
14878 Fri Aug 20 16:46:23 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
14879
14880         * libc/sys/m88kbug/crt0.c: pretty up, remove extraneous comments,
14881           prototype main and call with args.
14882
14883 Fri Jul 30 16:52:47 1993  K. Richard Pixley  (rich@cygnus.com)
14884
14885         First real try at system traps for m88k-bug.
14886         * libc/sys/m88kbug/syscalls.c: many changes.  Convert from stubs
14887           to real trap calls.
14888         * libc/sys/m88kbug/sys/systraps.h: new file.
14889
14890 Tue Jul 27 16:31:16 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
14891
14892         Patches to fix info building when target does not use sys
14893         directory.
14894         * libc/Makefile.in (targetdep.tex): add sys.tex separately.
14895         * libc/sys.tex, libc/sys/sys.tex: moved from libc/sys/sys.tex to
14896           libc/sys.tex.
14897         * libc/sys/Makefile.in (doc): do nothing.
14898
14899 Mon Jul 26 17:08:11 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
14900
14901         * libc/Makefile.in (CRT0): new macro.
14902           (all): depend on $(CRT0) rather than crt0.o.
14903
14904         * configure.in: fix libc_sys_dir -> libc_sys_lib thinko.
14905           do not default crt0, instead, set crt0 and crt0_dir based on
14906           sys_dir and stub_dir.
14907
14908         * Makefile.in (CRT0_DIR): new macro.
14909           (all): depend on $(CRT0) rather than crt0.o which may not exist.
14910           (crt0.o): depend on $(CRT0_DIR)/$(CRT0) rather than simply
14911           $(CRT0).
14912           ($(CRT0)): recur by cd'ing into $(CRT0_DIR).
14913
14914 Sun Jul 25 17:51:51 MDT 1993  Jeffrey Wheat  (cassidy@cygnus.com)
14915
14916         * testsuite/lib/libm.exp: 
14917                 added code to support compiling and linking of tests for 
14918                 libm.sac (paranoia to be added next) and processing the 
14919                 pass or failure of the tests.
14920
14921         * testsuite/config/unix-libm.exp:
14922                 platform specific proc's for dealing with compiler, linker
14923                 and the way we execute and process the test results.
14924
14925         * testsuite/libm.sac/execute.exp:
14926                 generic framework for the sac tests. the config and lib 
14927                 expect code for specific platforms tie it all together.
14928
14929         * testsuite/libm.sac/test_is.c:
14930                 changed the output of the test to be consistant with the
14931                 other tests. parsing of pass nad fail messages is now fixed.
14932
14933 Fri Jul 23 19:20:07 1993  Per Bothner  (bothner@kalessin)
14934
14935         * libc/include/{assert.h, ctype.h, dirent.h, errno.h, fastmath.h,
14936         locale.h, math.h, pwd.h, reent.h, setjmp.h, signal.h, stdio.h,
14937         stdlib.h, string.h, termios.h, time.h, utime.h, utmp.h}: For C++:
14938         #ifdef __cplusplus, surround by extern ""C { ... }.
14939         * libc/include/assert.h:  Do *not* protect assert.h against
14940         multiple inclusion!  Also, #undef it before #define, to allow
14941         redefinition.
14942         * libc/include/stdio.h (getlogin, cuserid):  Removed.  These
14943         should be only in unistd.h.
14944
14945         * libc/include/sys/{fcntl.h, reent.h, stat.h, time.h, times.h,
14946         unistd.h}: For C++: #ifdef __cplusplus, surround by extern ""C {
14947         ... }.
14948
14949 Fri Jul 23 10:15:33 1993  Doug Evans  (dje@canuck.cygnus.com)
14950
14951         * libc/machine/sparc/Makefile.in: Must create a library, even
14952         if empty.
14953
14954 Wed Jul 21 16:00:37 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
14955
14956         * configure.in: set machine_dir for m88k.  edit crt0 definition
14957           into makefiles.
14958
14959         * Makefile.in, libc/Makefile.in (crt0): pull up from lower directories.
14960
14961         * libc/Makefile.in (all): also build crt0.o.
14962
14963         * libc/machine/i386/Makefile.in, libc/machine/sparc/Makefile.in,
14964           libc/machine/z8k/Makefile.in, libm/Makefile.in (clean): no need
14965           to remove CRT0.
14966
14967         * libc/machine/m88k/Makefile.in (TOP, TARGETLIB): removed.
14968           (all): reworked to build in place.
14969           (clean): remove lib.a
14970           (Makefile): remove redundant ./, call $(SHELL) rather than sh.
14971
14972         * libc/sys/m88kbug/crt0.c (start): renamed to _start.
14973           (_start): key off edata rather than _start_bss.
14974
14975 Wed Jul 21 14:29:47 1993  david d `zoo' zuhn  (zoo@cygnus.com)
14976
14977         * libc/include/sys/unistd.h, libc/include/reent.h,
14978         libc/reent/sbrkr.c: change sbrk to return void* instead of char*.
14979
14980 Tue Jul 20 13:19:18 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
14981
14982         * libm/Makefile.in, libc/Makefile.in ($(SUBDIRS)): dollar escape a dollar sign.
14983
14984         * Makefile.in (libc.a): break into two rules, one for libc.a and
14985           one for libc/libc.a.  Force subdirs current before rebuilding
14986           library.
14987           (libm.a): break into two rules, one for libm.a and one for
14988           libm/libm.a.  Force subdirs current before rebuilding library.
14989
14990         * libc/Makefile.in (SUBLIBS): fix typo.
14991
14992         * libc/sys/Makefile.in (all): force descent into subdirs, then
14993           rebuild library iff out of of date.
14994
14995 Fri Jul 16 17:47:57 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
14996
14997         Rework so that library is built and then finished rather than
14998         being built on each invocation of make.
14999
15000         * host/any (machine_dir, sys_dir, signal_dir): these are not
15001           shared and have been moved to their associated Makefile.in's.
15002           (AR_FLAGS): switch to qc which is faster.
15003         * configure.in: no longer assign machine_dir for m88k.  set
15004           stub_dir, stub_lib, & crt0 for m68k*-unknown-{aout,coff}.  If
15005           stub_dir set, then add to configdirs.  add comment about silly
15006           configuration.
15007           (configdirs): drop stub.  It will be added only
15008           when needed.
15009           (libm_fp_lib, libc_unix_lib, libc_signal_lib, libc_machine_lib,
15010           libc_sys_dir, fake_sys_dir, libc_fake_sys_lib, stub_dir,
15011           stub_lib, crt0): new variables for tailoring lower level
15012           makefiles.  Assign accordingly and edit into makefiles.
15013         * libm/Makefile.in: updated copyright.
15014           (TARGETLIB): removed.
15015           (FLAGS_TO_PASS): removed TARGETLIB, machine_dir, sys_dir.
15016           (SUBDIRS): removed TARGETDEP_DIRS.
15017           (LIBM_FP_LIB, SUBLIBS): new macros.
15018           (all): reworked.
15019           (force): new target to force rebuilds.
15020           (Makefile): call $(SHELL) rather than sh.  drop redundant ./
15021         * libc/sys/a29khif/Makefile.in, libc/sys/decstation/Makefile.in,
15022           libc/sys/go32/Makefile.in, libc/sys/h8300hms/Makefile.in,
15023           libc/sys/h8500hms/Makefile.in, libc/sys/m88kbug/Makefile.in,
15024           libc/sys/sh/Makefile.in, libc/sys/sparc64/Makefile.in,
15025           libc/sys/sun4/Makefile.in, libc/sys/sysvi386/Makefile.in,
15026           libc/sys/sysvnecv70/Makefile.in, libc/sys/z8ksim/Makefile.in,
15027           stub/m68kmvme/Makefile.in: updated copyright.
15028           (TARGETLIB, TARGETCRT0, CRT0): macros removed.
15029           (all): reworked.  made this the default rule.
15030           (clean): also remove lib.a.
15031           (Makefile): call $(SHELL) rather than sh.  drop redundant ./
15032         * stub/Makefile.in: updated copyright.
15033           (TARGETLIB, TARGETCRT0, CRT0, TOP): removed.
15034           (stub_lib): new macro.
15035           (FLAGS_TO_PASS): removed TARGETLIB, stub_dir, TARGETCRT0.  Added
15036           RANLIB.
15037           (all): reworked.
15038           (clean, install): assume stub_dir exists.
15039           (Makefile): depend on configure.in.  call $(SHELL) rather than
15040           sh.  drop redundant ./
15041         * stub/configure.in (stublib): new macro, assign it, edit it into
15042           makefiles.
15043         * Makefile, libc/Makefile.in, doc/Makefile.in, libc/sys/Makefile.in:
15044           updated copyright.
15045           (all): reworked.
15046           (Makefile): call $(SHELL) rather than sh.  drop redundant ./
15047         * libc/Makefile.in (TARGETCRT0): removed.
15048           (FLAGS_TO_PASS): dropped TARGETLIB, machine_dir, sys_dir,
15049           TARGETCRT0.
15050           (SUBDIRS): drop TARGETDEP_DIRS.
15051           (LIBC_SIGNAL_LIB, LIBC_SYS_LIB, LIBC_MACHINE_LIB, LIBC_UNIX_LIB,
15052           LIBC_FAKE_SYS_LIB, SUBLIBS): new macros for configuration.
15053           (force): new target to force rebuilds.
15054         * libc/sys/Makefile.in (TARGETCRT0, sys_dir): removed.
15055           (FLAGS_TO_PASS): TARGETLIB, machine_dir, sys_dir, TARGETCRT0
15056           removed.
15057           (clean): assume sys_dir always exists.
15058         * libm/test/Makefile.in (Makefile): call $(SHELL) rather than sh.
15059           drop redundant ./
15060         * libc/ctype/Makefile.in, libc/errno/Makefile.in,
15061           libc/locale/Makefile.in, libc/machine/Makefile.in,
15062           libc/machine/a29k/Makefile.in, libc/machine/h8300/Makefile.in,
15063           libc/machine/h8500/Makefile.in, libc/machine/i386/Makefile.in,
15064           libc/machine/i960/Makefile.in, libc/machine/m68k/Makefile.in,
15065           libc/machine/mips/Makefile.in, libc/machine/necv70/Makefile.in,
15066           libc/machine/sh/Makefile.in, libc/machine/sparc/Makefile.in,
15067           libc/machine/z8k/Makefile.in, libc/reent/Makefile.in,
15068           libc/signal/Makefile.in, libc/stdio/Makefile.in,
15069           libc/stdlib/Makefile.in, libc/string/Makefile.in,
15070           libc/sys/Makefile.in, libc/syscalls/Makefile.in,
15071           libc/time/Makefile.in, libc/unix/Makefile.in,
15072           libm/ieeefp/Makefile.in, libm/math/Makefile.in: updated copyright.
15073           (TARGETLIB): removed.
15074           (all): reworked.
15075           (clean): also remove lib.a.
15076           (Makefile): call $(SHELL) rather than sh.  drop redundant ./
15077         * Makefile.in: (machine_dir, sys_dir, stub_dir, stub_lib, CRT0):
15078           new macros.
15079           (SUBDIRS): moved to follow frag inclusion, change stub to
15080           stub_dir.
15081           (FLAGS_TO_PASS): removed machine_dir, sys_dir, signal_dir which
15082           are now set in the libc Makefile.
15083         * libc/machine/Makefile.in (TARGETCRT0, machine_dir): removed.
15084           (FLAGS_TO_PASS): removed TARGETLIB, machine_dir, sys_dir,
15085           TARGETCRT0.
15086           (force): new target to force rebuilds.
15087         * stub/configure.in: determine and set stub_lib for for Makefile.
15088
15089 Thu Jul 15 12:01:27 1993  Doug Evans  (dje@canuck.cygnus.com)
15090
15091         * libc/sys/h8300hms/Makefile.in: Make `all' the default target.
15092         crt0.s renamed to crt0.S.
15093         * libc/sys/h8300hms/crt0.S: Add h8/300h support.
15094
15095         * libc/machine/h8300/Makefile.in: Make `all' the default target.
15096         * libc/machine/h8300/{cmpsi.S,ucmpsi.S}: #ifdef out entire file if
15097         h8300h.
15098         * libc/machine/h8300/defines.h: Add macros to handle pointers for
15099         h8300 (16 bits) and h8300h (32 bits).
15100         * libc/machine/h8300/{divsi3.S,mulsi3.S,memcpy.S,memset.S,
15101         reg_memcpy.S,reg_memset.S,strcmp.S}: Add h8300h support.
15102
15103 Thu Jul 15 10:13:29 1993  Ian Lance Taylor  (ian@cygnus.com)
15104
15105         * libc/machine/m88k/setjmp.S, Makefile.in: New files; a simple
15106         implementation of setjmp and longjmp for the m88k.
15107         * libc/include/machine/setjmp.h: Added __m88000__ case.
15108
15109 Wed Jul 14 10:10:30 1993  Doug Evans  (dje@canuck.cygnus.com)
15110
15111         * configure.in: Recognize h8300h as variant of h8300.
15112
15113 Tue Jul 13 12:24:11 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
15114
15115         * libc/include/sys/unistd.h (read, write): get prototypes right.
15116         (sbrk): New prototype.
15117         * libc/reent/sbrkr.c (sbrkr): Use correct sbrk prototype.
15118         * libc/stdio/local.h: Include unistd.h.
15119         * libc/machine/h8300/syscalls.c: Names have changed.
15120
15121 Mon Jul 12 18:08:42 1993  K. Richard Pixley  (rich@cygnus.com)
15122
15123         * configure.in: add sys_dir assignment for m88k-bug.
15124
15125 Thu Jul  8 09:16:21 1993  Doug Evans  (dje@canuck.cygnus.com)
15126
15127         * libc/sys/sparc64/sys/syscallasm.h: New macros to handle either
15128         a.out or elf.
15129         * libc/sys/sparc64: all *.S files: Use new macros.
15130         * libc/sys/sparc64/isatty.c: New file.
15131         * libc/sys/sparc64/Makefile.in: Stop using /lib/libc.a for
15132         functions beyond what newlib provides.
15133
15134 Thu Jul  8 09:11:28 1993  Doug Evans  (dje@canuck.cygnus.com)
15135
15136         * libc/include/sys/stat.h: Move st_atime so not doubly defined for
15137         svr4.
15138
15139 Thu Jul  8 09:09:16 1993  Doug Evans  (dje@canuck.cygnus.com)
15140
15141         * libc/include/machine/ieeefp.h: Add support for h8/300h.
15142
15143 Fri Jul  2 10:11:20 1993  K. Richard Pixley  (rich@cygnus.com)
15144
15145         * configure.in: add m88k.
15146         * libc/include/machine/ieeefp.h: add case for m88k.  Also add
15147         sanity check so no one else need ever chase what I did to find
15148         this.
15149
15150         * libm/math/Makefile.in (FAKEC): added atanf.c log1pf.c scalbnf.c.
15151
15152 Fri Jul  2 09:15:21 1993  Ian Lance Taylor  (ian@cygnus.com)
15153
15154         * doc/makedoc.c: Include <ctype.h>.
15155
15156 Wed Jun 30 09:35:06 1993  Doug Evans  (dje@canuck.cygnus.com)
15157
15158         * libc/Makefile.in (FLAGS_TO_PASS): Add TARGET_ASFLAGS.
15159         * libc/sys/Makefile.in (FLAGS_TO_PASS): Add TARGET_ASFLAGS.
15160         * libc/machine/Makefile.in (FLAGS_TO_PASS): Add TARGET_ASFLAGS.
15161
15162         * libm/test/Makefile.in (all): Link with ../../lib[cm].a.
15163
15164 Sun Jun 27 17:05:20 1993  Doug Evans  (dje@sphagnum.cygnus.com)
15165
15166         * libc/include/errno.h (ENOSYS): Added.
15167
15168         * libc/unix/getpwd.c (getcwd): Fix typo (_up -> up).
15169
15170 Mon Jun 21 09:03:32 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
15171
15172         * libc/stdio/fflush.c (fflush): Check for reent struct
15173         initialization.
15174         * libc/stdio/fdopen.c (fdopen): Avoid namespace conflict.
15175
15176 Fri Jun 18 16:06:05 1993  Mark Eichin  (eichin@rtl.cygnus.com)
15177
15178         * libc/stdlib/dtoastub.c: new file -- move user callable "dtoa"
15179         out of dtoa.c so it doesn't pollute the namespace.
15180         * libc/include/_syslist.h: new file -- mappings from _function to
15181         function, for systems where we can't win (by default, all of them,
15182         until we start updating system calls.)
15183         * libc/syscalls: new directory -- stubs for exporting _function
15184         names as unmodified function names.
15185         * libc/configure.in: add MISSING_SYSCALL_NAMES to enable
15186         _syslist.h on all platforms by default, but put hooks in for
15187         fake_sys_dir so we can include it when we've renamed the system
15188         calls.
15189         * libc/reent/execr.c libc/reent/filer.c libc/reent/fstatr.c
15190         libc/reent/linkr.c libc/reent/sbrkr.c libc/reent/statr.c
15191         libc/signal/raise.c libc/signal/signal.c libc/stdio/fdopen.c
15192         libc/stdio/mktemp.c libc/stdio/tmpnam.c libc/stdlib/abort.c
15193         libc/stdlib/system.c libc/unix/getcwd.c libc/unix/getlogin.c
15194         libc/unix/getpass.c libc/unix/getut.c libc/unix/ttyname.c: change
15195         non ANSI functions to call _function.
15196
15197 Wed Jun  9 09:48:26 1993  Ian Lance Taylor  (ian@cygnus.com)
15198
15199         * libc/stdlib/strtoul.c (_strtoul_r): Handle leading 0 correctly
15200         when base 16 is specified.  Don't accept non-digits if radix > 10.
15201
15202 Thu Jun  3 10:01:15 1993  Doug Evans  (dje@canuck.cygnus.com)
15203
15204         * libc/include/math.h: Rename xxx_r fns to _xxx_r.
15205
15206 Wed Jun  2 16:54:16 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
15207
15208         * libc/include/sys/stat.h: Surround text after #endif with
15209         comments.
15210
15211 Wed Jun  2 12:47:32 1993  Ian Lance Taylor  (ian@cygnus.com)
15212
15213         * libc/stdlib/mallocr.c: If MALLOC_PROVIDED is defined, just make
15214         _malloc_r, _realloc_r, and free_r call the corresponding
15215         non-reentrant functions.
15216
15217         * libm/math/modf.c (modf): We now take the address of ipart, so
15218         don't make it a register variable.
15219
15220 Tue Jun  1 18:25:54 1993  Doug Evans  (dje@canuck.cygnus.com)
15221
15222         * libm/math/*: Rename all xxx_r fns to _xxx_r.
15223
15224 Wed May 26 22:06:35 1993  Roland H. Pesch  (pesch@cygnus.com)
15225
15226         * libc/libc.texinfo and embedded docn throughout: formatting
15227         improvements, minor rephrasing for clarity, and improved
15228         reentrancy docn.
15229
15230 Sun May 23 17:29:49 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
15231
15232         * libm/ieeefp/infinity.c (maxpowtwof): Fix initialzation bug.
15233
15234         * libc/stdio/cvt.c (_licvt): Print the right value on machines
15235         where sizeof(int) != sizeof(long).
15236
15237 Fri May 21 22:09:32 1993  Roland H. Pesch  (pesch@fowanton.cygnus.com)
15238
15239         * libc/reent/execr.c, libc/reent/filer.c, libc/reent/linkr.c,
15240         libc/reent/sbrkr.c, libc/reent/statr.c, libc/stdio/tmpnam.c,
15241         libc/stdlib/atol.c, libc/stdlib/rand.c, libc/string/strpbrk.c,
15242         libc/string/strspn.c, libm/ieeefp/isnan.c, libm/math/bessel.c,
15243         libm/math/matherr.c: changes for better docn formatting (info).
15244
15245         * libc/libc.texinfo, libc/ctype/ctype.tex, libc/locale/locale/tex,
15246         libc/reent/reent.tex, libc/signal/signal.tex,
15247         libc/stdio/stdio.tex, libc/stdlib/stdlib.tex,
15248         libc/string/strings.tex, libc/sys/sys.tex, libc/time/time.tex,
15249         libm/libm.texinfo, libm/ieeefp/ieeefp.tex, libm/math/math.tex: use
15250         makeinfo node defaulting to get better Info file node structure.
15251         (Requires recent sac change to doc/makedoc.c and doc/doc.str.)
15252         Also include a few formerly missing sections (subroutines).
15253
15254         * doc/doc.str: delete fossil expansion for "func"
15255
15256         * default.menu, no-signal.menu: delete.
15257
15258         * Makefile.in, libc/Makefile.in, configure.in, host/any: simplify
15259         method used to adjust doc for missing "signals" chapter when 
15260         signal_dir is empty.
15261
15262 Thu May 20 21:38:37 MDT 1993  Jeffrey Wheat  (cassidy@cygnus.com)
15263
15264         * configure.in: added testsuite/libm.sac
15265
15266 Wed May 19 14:52:34 1993  Doug Evans  (dje@thepub.cygnus.com)
15267
15268         * libc/sys/sparc64/crt0.S: Set %g4 to 0 (to test Medium/Anywhere
15269         code model).
15270
15271 Tue May 18 13:17:21 1993  Ian Lance Taylor  (ian@cygnus.com)
15272
15273         * libm/Makefile.in: Use $(MAKE) rather than make, and define
15274         MAKEOVERRIDES to be empty.
15275
15276 Mon May 17 08:42:44 1993  Ian Lance Taylor  (ian@cygnus.com)
15277
15278         * configure.in: Don't build mips-*-* with -msoft-float, since that
15279         makes it incompatible with hard floating point.
15280
15281 Mon May 17 00:03:35 MDT 1993  Jeffrey Wheat  (cassidy@cygnus.com)
15282
15283         * Makefile.in: added recursive 'make check'
15284
15285 Thu May 13 16:24:18 MDT 1993  Jeffrey Wheat  (cassidy@cygnus.com)
15286
15287         * configure.in: added ./testsuite ./testsuite/libm.paranoia
15288         * ./testsuite/Makefile.in: created
15289         * ./testsuite/libm.paranoia: paranoia tests added
15290
15291 Thu May 13 10:30:24 1993  Ian Lance Taylor  (ian@cygnus.com)
15292
15293         * configure.in: For mips-*-* set machine_dir to mips.
15294
15295         * libc/machine/mips: New directory.
15296         * libc/machine/mips/Makefile.in: New file.
15297         * libc/machine/mips/setjmp.S: New file; simplistic MIPS version of
15298         setjmp and longjmp.
15299         * libc/include/machine/setjmp.h: Added __mips__ case.
15300
15301         * libc/machine/lmips: Removed unused and useless directory.
15302
15303 Mon May  3 10:22:31 1993  Ian Lance Taylor  (ian@cygnus.com)
15304
15305         * configure.in: Accept i486-*-sco* as well as i386-*-sco*.
15306
15307 Thu Apr 15 15:16:44 1993  Doug Evans  (dje@canuck.cygnus.com)
15308
15309         * libc/sys/sparc64/crt0.S: Add comment (%g1 contains atexit arg at
15310         start up).
15311
15312 Fri Apr  9 13:32:26 1993  Ian Lance Taylor  (ian@cygnus.com)
15313
15314         * libc/include/machine/setjmp-dj.h: Use _SETJMP_DJ_H rather than
15315         SETJMP_H.
15316
15317 Thu Apr  8 10:07:18 1993  Doug Evans  (dje@canuck.cygnus.com)
15318
15319         * libm/test/convert.c: structure member errno -> errno_val.
15320         Must include <errno.h> to use errno, it's a macro now.
15321         * libm/test/math.c: Ditto.
15322         * libm/test/math2.c: Include errno.h.
15323         * libm/test/string.c: Ditto.
15324         * libm/test/test.h: structure member errno -> errno_val.
15325         Remove extern int errno decl.
15326
15327 Thu Apr  8 07:56:33 1993  Ian Lance Taylor  (ian@cygnus.com)
15328
15329         * libc/stdio/Makefile.in: Added dependencies on local header
15330         files.
15331         * libc/stdio/std.h, libc/stdio/vfprintf.h: Removed unused header
15332         files.
15333
15334 Wed Apr  7 16:19:32 1993  Ian Lance Taylor  (ian@cygnus.com)
15335
15336         * libc/include/machine/ieeefp.h: Added __MIPSEB__ case.
15337
15338 Wed Apr  7 10:55:21 1993  Doug Evans  (dje@canuck.cygnus.com)
15339
15340         * libc/stdio/siprintf.c libc/stdio/sscanf.c libc/stdio/vsprintf.c:
15341         Initialize _data.
15342
15343         * libc/stdio/vfprintf.c: No need to declare _icvt, _licvt, _sicvt.
15344         * libc/stdio/local.h: Add prototype for _licvt.
15345
15346         * libc/stdio/ungetc.c (__submore): Use _malloc_r,_realloc_r
15347         instead of malloc,reealloc.
15348
15349         * libc/stdlib/local.h: New file.
15350         * libc/stdlib/efgcvt.c: #include local.h.
15351         (gcvt): Fix call to _gcvt.
15352         * libc/stdlib/ecvtbuf.c: #include local.h.
15353
15354         * libc/stdlib/Makefile.in: new files mallocr.c mstats.c.
15355         * libc/stdlib/mallocr.c mstats.c malloc.h: New files.
15356         * libc/stdlib/malloc.c: main routines moved to mallocr.c.
15357
15358         * libc/stdlib/atexit.c: moved global data to struct _reent.
15359         * libc/stdlib/exit.c: use struct _atexit in struct _reent.
15360
15361         * libc/reent/reent.c (inpure_data): _REENT_INIT macro modified.
15362
15363 Wed Apr  7 09:41:50 1993  Doug Evans  (dje@canuck.cygnus.com)
15364
15365         * libc/include/sys/reent.h: Stuff required by ANSI headers moved
15366         here from ../reent.h.
15367
15368 Tue Apr  6 12:56:01 1993  Ian Lance Taylor  (ian@cygnus.com)
15369
15370         * Makefile.in (MATHOBJS_IN_LIBC): List of object files which
15371         should be provided in both libc.a and libm.a.
15372         (libc.a): Depend on targ-include and libm.a.  Copy
15373         $(MATHOBJS_IN_LIBC) from libm.a to libc.a.
15374         (libm.a): Depend on targ-include.
15375         * configure.in (subdirs): Removed libc/math.
15376
15377 Mon Apr  5 10:18:16 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
15378
15379         * libm/ieeefp/infinity.c (maxpowtwo): Fix initialization bug.
15380
15381 Sat Apr  3 11:06:07 1993  Doug Evans  (dje@canuck.cygnus.com)
15382
15383         * libc/include/{errno.h, math.h, stdio.h, stdlib.h}: Use
15384         sys/reent.h instead of reent.h.
15385         * libc/include/reent.h: Split into two parts: stuff needed by ANSI
15386         headers moved to sys/reent.h.  
15387         * libc/include/signal.h: _MAX_SIGNALS moved to sys/signal.h.
15388         * libc/include/sys/signal.h: Define _MAX_SIGNALS if
15389         __need__MAX_SIGNALS defined.
15390         * libc/include/stdio.h: struct __sFILE moved to sys/reent.h.
15391         std{in,out,err} refer to new _std{in,out,err} members.
15392
15393 Fri Apr  2 11:27:12 1993  Doug Evans  (dje@canuck.cygnus.com)
15394
15395         * libc/include/sys/signal.h: #define _SYS_SIGNAL_H for general
15396         case.
15397
15398 Fri Apr  2 09:41:10 1993  Doug Evans  (dje@canuck.cygnus.com)
15399
15400         * libc/sys/sparc64/execve.S (execve): Insert nop in delay slot,
15401         rather than whatever macro seterrno() has.
15402
15403 Thu Apr  1 16:47:08 1993  Doug Evans  (dje@canuck.cygnus.com)
15404
15405         * libc/locale/locale.c: Reentrant routines _r_xxx renamed to
15406         _xxx_r.  struct reent_struct renamed to struct _reent for ANSI.
15407
15408         * libc/include/machine/fastmath.h: Use _HAVE_STDC instead of
15409         __STDC__.
15410
15411         * libc/reent/{execr.c, filer.c, fstatr.c, linkr.c, reent.c,
15412         reent.tex, sbrkr.c, statr.c}: _r_xxx reentrant routines renamed to
15413         _xxx_r.  struct reent_struct renamed to struct _reent for ANSI.
15414
15415         * libc/signal/signal.c: Reentrant routines _r_xxx renamed to
15416         _xxx_r.  struct reent_struct renamed to struct _reent for ANSI.
15417
15418         * libc/stdio/{fclose.c, fdopen.c, findfp.c, fiprintf.c, flags.c,
15419         fopen.c, fprintf.c, freopen.c, fscanf.c, fseek.c, ftell.c,
15420         fwalk.c, getchar.c, gets.c, iprintf.c, local.h, makebuf.c,
15421         mktemp.c, perror.c, printf.c, putchar.c, puts.c, refill.c,
15422         remove.c, rename.c, scanf.c, setvbuf.c, siprintf.c, sprintf.c,
15423         sscanf.c, stdio.c, tmpfile.c, tmpnam.c, vfprintf.c, vfprintf.h,
15424         vfscanf.c, vprintf.c, vsprintf.c}: Reentrant routines _r_xxx
15425         renamed to _xxx_r.  struct reent_struct renamed to struct _reent
15426         for ANSI.  structure members given leading "_" for ANSI.  Use
15427         _HAVE_STDC instead of __STDC__ and _HAVE_STDARG.
15428
15429         * libc/stdlib/{__adjust.c, calloc.c, dtoa.c, ecvtbuf.c, malloc.c,
15430         mprec.c, mprec.h, rand.c, std.h, strtod.c, strtol.c, strtoul.c,
15431         system.c}: Reentrant routines _r_xxx renamed to _xxx_r.  struct
15432         reent_struct renamed to struct _reent for ANSI.
15433         Structure members given leading "_" for ANSI.
15434         _CONST --> const in prototypes.
15435         Use _HAVE_STDC instead of __STDC__.
15436
15437         * libc/string/strtok.c: Reentrant routines _r_xxx renamed to
15438         _xxx_r.
15439         struct reent_struct renamed to struct _reent for ANSI.
15440         Structure members given leading "_" for ANSI.
15441
15442         * libc/time/asctime.c: Reentrant routines _r_xxx renamed to
15443         _xxx_r.
15444         struct reent_struct renamed to struct _reent for ANSI.
15445
15446         * libm/math/{acos.h, acosh.h, asin.c, asinh.h, atanh.h, bessel.h,
15447         cbrt.h, cosh.h, erf.c, erf.h, error.c, exp.c, fmod.c, frexp.h,
15448         gamma.h, hypot.h, ldexp.c, log.h, log10.c, log1p.c log2.c,
15449         mathimpl.h, pow.c, remainder.c, sincos.c, sinh.h, sqrt.h, tan.c,
15450         tanh.h}: struct reent_struct renamed to struct _reent for ANSI.
15451
15452         * libc/include/{_ansi.h, ctype.h, math.h, reent.h, locale.h,
15453         signal.h, stdio.h, stdlib.h, string.h, time.h}:
15454         Use _HAVE_STDC instead of __STDC__ and _HAVE_STDARG.
15455         #ifndef _STRICT_ANSI non-ANSI routines.
15456         Reentrant routines renamed from _r_xxx to _xxx_r.
15457         No need to use _STRICT_ANSI on _xxx_r reentrant routines.
15458         Use _STRICT_ANSI instead of __STRICT_ANSI, _ANSI_SOURCE, etc.
15459         Clean up namespace (structure members have leading "_").
15460         struct reent_struct renamed to struct _reent for ANSI compliance.
15461         _CONST --> const in function prototypes.
15462
15463         * libc/include/string.h: Add NULL and size_t.
15464
15465         * libc/sys/sparc64/Makefile.in: New syscall routines for link,
15466         unlink, wait, wait4. Reentrant syscall routines close, fork,
15467         fstat, link, lseek, open, read, sbrk, stat, unlink, wait, wait4,
15468         write.
15469         * libc/sys/sparc64/cerror.S (cerror_r): New routine.
15470         * libc/sys/sparc64/{close.S, fork.S, fstat.S, link.S, lseek.S,
15471         open.S, read.S, sbrk.S, stat.S, unlink.S, wait.S, wait4.S,
15472         write.S}: Define reentrant versions.
15473         * libc/sys/sparc64/sys/syscallasm.h (defsyscall_r): New macro for
15474         reentrant syscalls.
15475
15476         * libc/sys/sparc64/crt0.S (start): Fix initialization of environ.
15477
15478         * libc/include/stdlib.h (RAND_MAX): Fix value.
15479
15480 Thu Apr  1 12:28:30 1993  Ian Lance Taylor  (ian@cygnus.com)
15481
15482         * libc/sys/a29khif/_main.c: Removed unnecessary file.
15483         * libc/sys/a29khif/Makefile.in (OFILES): Removed _main.c, moved
15484         VPATH support targets after all: target.
15485
15486         * stub/mvme135/mvme.S: Renamed exceptionhandler to
15487         exceptionHandler, which is what mvme135-stub.c expects.
15488
15489 Wed Mar 31 17:42:03 1993  Doug Evans  (dje@cygnus.com)
15490
15491         * libc/stdio/tmpnam.c (worker): Fix test for _r_open() failure.
15492
15493         * libc/unix/getpass.c (getpass): Use stdin,stderr instead of
15494         def_stdin/def_stderr (latter removed from stdio.h to make it ANSI
15495         compliant).
15496
15497 Tue Mar 30 09:58:21 1993  Doug Evans  (dje@canuck.cygnus.com)
15498
15499         * libc/reent/execr.c (_r_wait): Re-order args to make reent_struct
15500         first.
15501         libc/reent/filer.c (_r_open, _r_close, _r_lseek, _r_read,
15502         _r_write): Ditto.
15503         libc/reent/fstatr.c (_r_fstat): Ditto.
15504         libc/reent/linkr.c (_r_link, _r_unlink): Ditto.
15505         libc/reent/sbrkr.c (_r_sbrk): Ditto.
15506         libc/reent/statr.c (_r_stat): Ditto.
15507
15508         * libc/stdio/fopen.c (_r_fopen): Re-order args to _r_open.
15509         * libc/stdio/freopen.c (freopen): Ditto for _r_open, _r_free.
15510         * libc/stdio/fseek.c (fseek): Ditto for _r_fseek.
15511         * libc/stdio/makebuf.c (__smakebuf): Ditto for _r_fstat.
15512         * libc/stdio/mktemp.c (_gettemp): Ditto for _r_stat, _r_open.
15513         * libc/stdio/remove.c (_r_remove): Ditto for _r_unlink.
15514         * libc/stdio/rename.c (_r_rename): Ditto for _r_link, _r_unlink.
15515         * libc/stdio/stdio.c (__sread): Ditto for _r_read.
15516         (__swrite): Ditto for _r_lseek, _r_write.
15517         (__sseek): Ditto for _r_lseek.
15518         (__close): Ditto for _r_close.
15519         * libc/stdio/tmpnam.c (worker): Ditto for _r_open, _r_close.
15520
15521         * libc/stdlib/malloc.c (_r_morecore): Re-order args to _r_sbrk.
15522         * libc/stdlib/system.c (_r_system): Ditto for _r_wait.
15523
15524         * libc/include/reent.h: Re-order arguments to _r_xxx syscall fns
15525         to make reent_struct the first argument (and thus consistent with
15526         the rest of newlib).
15527
15528         * stub/mvme135/mvme135-stub.c (initializeRemcomErrorFrame): Remove
15529         reference to __STDC__.
15530
15531 Mon Mar 29 12:34:32 1993  Doug Evans  (dje@canuck.cygnus.com)
15532
15533         * libc/stdlib/exit.c (exit): Use _REENT->__cleanup instead of
15534         global __cleanup.
15535
15536 Wed Mar 24 11:54:35 1993  Doug Evans  (dje@canuck.cygnus.com)
15537
15538         * libc/stdio/freopen.c (freopen): Ensure stdio is initialized
15539         first.
15540         libc/stdio/fclose.c (fclose): Ditto.
15541
15542 Tue Mar 23 01:26:52 1993  Doug Evans  (dje@rtl.cygnus.com)
15543
15544         * Run through indent and rename reentrant routines for ANSI.
15545         libc/stdio/{clearerr.c cvt.c fclose.c fdopen.c feof.c ferror.c
15546         fflush.c fgetc.c fgetpos.c fgets.c findfp.c fiprintf.c flags.c
15547         fopen.c fprintf.c fputc.c fputs.c fread.c freopen.c fscanf.c
15548         fseek.c fsetpos.c ftell.c fvwrite.c fwalk.c fwrite.c getc.c
15549         getchar.c gets.c iprintf.c makebuf.c mktemp.c perror.c printf.c
15550         putc.c putchar.c puts.c refill.c remove.c rename.c rewind.c rget.c
15551         scanf.c setbuf.c setvbuf.c siprintf.c sprintf.c sscanf.c stdio.c
15552         tmpfile.c tmpnam.c ungetc.c vfprintf.c vfscanf.c vprintf.c
15553         vsprintf.c wbuf.c wsetup.c local.h}
15554
15555         * libc/locale/locale.c: Reformat and rename for ANSI, GNU style.
15556
15557         * Run through indent and rename xxx_r fns to _r_xxx for ANSI.
15558         libc/stdlib/{__adjust.c __exp10.c __ten_mu.c abort.c abs.c
15559         assert.c atexit.c atof.c atoi.c atol.c bsearch.c calloc.c div.c
15560         dtoa.c ecvtbuf.c efgcvt.c exit.c getenv.c labs.c ldiv.c malloc.c
15561         mbtowc.c mprec.c putenv.c qsort.c rand.c setenv.c strdup.c
15562         strtod.c strtol.c strtoul.c system.c wctomb.c mprec.h}
15563
15564         * Run through indent.
15565         libc/string/{bcmp.c bcopy.c bzero.c index.c memchr.c memcmp.c
15566         memcpy.c memmove.c memset.c rindex.c strcat.c strchr.c strcmp.c
15567         strcoll.c strcpy.c strcspn.c strerror.c strlen.c strncat.c
15568         strncmp.c strncpy.c strpbrk.c strrchr.c strspn.c strstr.c strtok.c
15569         strxfrm.c}
15570
15571         * libc/time/{asctime.c clock.c ctime.c difftime.c gmtime.c
15572         localtime.c mktime.c strftime.c time.c}:
15573         Run through indent and rename xxx_r (reentrant) fns to _r_xxx for ANSI.
15574
15575         * Reformatting + renaming (for ANSI, GNU style, consistency).
15576         libc/include/{_ansi.h, assert.h, ctype.h, errno.h, fastmath.h,
15577         ieeefp.h, locale.h, math.h, paths.h, pwd.h, reent.h, setjmp.h,
15578         signal.h, stdio.h, stdlib.h, string.h, time.h, unistd.h}
15579
15580 Fri Mar 19 11:28:01 1993  Doug Evans  (dje@cygnus.com)
15581
15582         * libc/include/stdio.h (stdin_r): Fix.
15583
15584 Fri Mar 19 09:43:48 1993  Ian Lance Taylor  (ian@cygnus.com)
15585
15586         * Makefile.in: Unexport some variables to keep GNU make from
15587         putting them in the environment and using up needed ARG_MAX space
15588         (a hack is used to let this work with older makes as well).
15589
15590 Tue Mar 16 15:11:08 1993  Ian Lance Taylor  (ian@cygnus.com)
15591
15592         * Makefile.in: Use $(MAKE) rather than make.
15593         (MAKEOVERRIDES): Define to be empty.
15594         (FLAGS_TO_PASS): Don't pass down LD (it's not used).
15595         (libc.a, libm.a): Depend on targ-include.
15596         * host/any (LD): Don't define.
15597         (INCLUDES): Use targ-include.   
15598         * stub/Makefile.in (MAKEOVERRIDES): Define to be empty.
15599         (FLAGS_TO_PASS): Don't pass down LD (it's not used).
15600         * libc/Makefile.in: Use $(MAKE) rather than make.
15601         (MAKEOVERRIDES): Define to be empty.
15602         (FLAGS_TO_PASS): Don't pass LD (it's not used).
15603         (all): Rewrote to be slightly smaller.
15604         * libc/machine/Makefile.in, libc/sys/Makefile.in (MAKEOVERRIDES):
15605         Define to be empty.
15606         (FLAGS_TO_PASS): Don't pass LD (it's not used).
15607         * libm/Makefile.in (FLAGS_TO_PASS): Don't pass LD (it's not used).
15608
15609 Mon Mar 15 08:45:41 1993  Ian Lance Taylor  (ian@cygnus.com)
15610
15611         * libc/sys/go32/gerrno.s: Renamed from errno.s to avoid conflict
15612         with errno/errno.c.
15613
15614 Fri Mar 12 09:46:54 1993  Ian Lance Taylor  (ian@cygnus.com)
15615
15616         * Changes for reentrancy.
15617         libc/stdio/fdopen.c, libc/stdio/freopen.c, libc/stdio/perror.c:
15618         Use ptr->_errno, not errno.
15619         libc/stdio/mktemp.c (mkstemp_r, mktemp_r): New functions.
15620         libc/stdio/remove.c (remove_r): New function.
15621         libc/stdio/rename.c (rename_r): New function.
15622         libc/stdio/fopen.c, libc/stdio/freopen.c, libc/stdio/fseek.c,
15623         libc/stdio/makebuf.c, libc/stdio/mktemp.c, libc/stdio/remove.c,
15624         libc/stdio/rename.c, libc/stdio/stdio.c, libc/stdio/tmpnam.c: Use
15625         reentrant versions of system calls.
15626         libc/stdio/gets.c: Call getchar_f, not nonexistent getchar_r.
15627         libc/stdio/scanf.c: Use stdin_r, not nonexistent stdin_n.
15628         libc/stdio/tmpfile.c: Use tmpnam_f, not nonexistent tmpnam_r.
15629         libc/stdio/findfp.c: Include <string.h>.
15630         libc/stdio/fread.c, libc/stdio/rget.c, libc/stdio/scanf.c: Include
15631         "local.h".
15632         libc/stdio/wbuf.c: Include "fvwrite.h"
15633
15634         * libc/stdlib/{dtoa.c, ecvtbuf.c, mprec.c, strtod.c}: Include
15635         <string.h>.
15636         libc/stdlib/malloc.c: Call sbrk_r rather than sbrk.
15637         (NULL): Don't define if already defined.
15638         libc/stdlib/system.c: Call reentrant versions of system calls.
15639         (system_r): New function.
15640
15641         * Changes for reentrancy.
15642         libc/include/_ansi.h (_PARAMS): New macro.
15643         libc/include/errno.h: Define errno as a macro that calls __errno.
15644         (__errno_r): New macro for reentrant code.
15645         libc/include/math.h: Include reent.h.  Declare many reentrant
15646         functions.
15647         (signgam): Now a macro, not a variable.
15648         (struct exception): Added err field.
15649         libc/include/reent.h: Don't declare __sglue.  Added function
15650         declarations.
15651         (struct reent_struct): Moved errno to beginning.  Added _signgam.
15652         libc/include/stdio.h, libc/include/stdlib.h: Added function
15653         declarations.
15654
15655         * More reentrancy hacking.
15656         libc/errno/errno.c (__errno): New function.
15657         libc/reent/execr.c, libc/reent/filer.c, libc/reent/fstatr.c,
15658         libc/reent/linkr.c, libc/reent/sbrkr.c, libc/reent/statr.c: New
15659         files.
15660         
15661         * Added many new reentrant functions to libm/math/*.
15662         libm/math/error.c (__matherror): Added reent_struct pointer
15663         argument. Changed all callers.
15664         libm/math/gamma.c (signgam): Removed. Set ptr->_signgam, instead.
15665         libm/math/exp.h, libm/math/pow.h, libm/math/sincos.h,
15666         libm/math/tan.h: Removed obsolete unused header files.
15667
15668         * libc/sys/a29khif/stubs.s: Use register lr0, not v0.
15669
15670         * libc/sys/sun/Makefile.in (COPYOFILES): Don't pull in errno.o.
15671
15672 Mon Mar  8 16:43:43 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
15673
15674         * libc/sys/a29khif/stubs.s: clobber safe register, and fill all
15675         delay slots.
15676
15677 Tue Mar  2 14:47:00 1993  Jeffrey Osier      (jeffrey@fowanton.cygnus.com)
15678
15679         * libc/libc.texinfo:  comment out reentrancy chapter (duh)
15680
15681 Tue Mar  2 14:34:16 1993  Jeffrey Osier      (jeffrey@fowanton.cygnus.com)
15682
15683         * libc/reent/reent.tex:  New file.  (text from
15684         newlib/libc/libc.texinfo)
15685         * libc/stdio/tmpnam.c:  fixed doc typo
15686         * libc/stdlib/rand.c:   fixed doc typo
15687
15688 Tue Mar  2 14:34:16 1993  Jeffrey Osier      (jeffrey@fowanton.cygnus.com)
15689
15690         * libc/reent/reent.tex:  New file.  (text from
15691         newlib/libc/libc.texinfo)
15692
15693 Fri Feb 26 12:20:54 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
15694
15695         support for reentrancy
15696         * libc/reent/reent.c, libc/reent/Makefile.in, libc/reent/reent.c:
15697         new files
15698         * libc/errno/errno.c, libc/include/ieeefp.h,
15699         libc/include/locale.h, libc/include/reent.h,
15700         libc/include/signal.h, libc/include/stdio.h,
15701         libc/include/stdlib.h, libc/include/string.h, libc/include/time.h,
15702         libc/signal/signal.c libc/stdio/cvt.c, libc/stdio/fclose.c,
15703         libc/stdio/fdopen.c, libc/stdio/fflush.c, libc/stdio/fgets.c,
15704         libc/stdio/findfp.c, libc/stdio/flags.c, libc/stdio/fopen.c,
15705         libc/stdio/fputc.c, libc/stdio/freopen.c, libc/stdio/fseek.c,
15706         libc/stdio/ftell.c, libc/stdio/fwalk.c, libc/stdio/getchar.c,
15707         libc/stdio/gets.c, libc/stdio/glue.h, libc/stdio/iprintf.c,
15708         libc/stdio/local.h, libc/stdio/makebuf.c, libc/stdio/perror.c,
15709         libc/stdio/printf.c, libc/stdio/putchar.c, libc/stdio/puts.c,
15710         libc/stdio/refill.c, libc/stdio/scanf.c, libc/stdio/setvbuf.c,
15711         libc/stdio/sprintf.c, libc/stdio/tmpfile.c, libc/stdio/tmpnam.c,
15712         libc/stdio/ungetc.c, libc/stdio/vfprintf.c, libc/stdio/vfprintf.h,
15713         libc/stdio/vfscanf.c, libc/stdio/vprintf.c, libc/stdio/wsetup.c,
15714         libc/stdlib/__adjust.c, libc/stdlib/__exp10.c,
15715         libc/stdlib/assert.c, libc/stdlib/atexit.c, libc/stdlib/atol.c,
15716         libc/stdlib/dtoa.c, libc/stdlib/ecvtbuf.c, libc/stdlib/malloc.c,
15717         libc/stdlib/mprec.c, libc/stdlib/mprec.h, libc/stdlib/rand.c,
15718         libc/stdlib/setenv.c, libc/stdlib/std.h, libc/stdlib/strtod.c,
15719         libc/stdlib/strtol.c, libc/stdlib/strtoul.c, libc/string/strtok.c,
15720         libc/time/asctime.c, libc/time/localtime.c, libc/time/mktime.c,
15721         libc/time/strftime.c: modify to provide reentracy.
15722
15723         new routines:
15724         strtok_r, asctime_r, fdopen_r, _cleanup_r, fopen_r, iprintf_r,
15725         perror_r, printf_r, putchar_r, puts_r, scanf_r, sprintf_r,
15726         tmpfile_r, vfiprintf_r, vfprintf_r, strtod_r, dtoa_r, rand_r,
15727         srand_r, strtoul_r,strtol_r, free_r, malloc_r, morecore_r,
15728         mstats_r, realloc_r, localeconv_r, setlocale_r
15729
15730 Wed Feb 17 20:17:15 1993  Mark Eichin  (eichin@cygnus.com)
15731
15732         * libc/include/machine/ieeefp.h, libc/include/machine/setjmp.h,
15733         libc/include/sys/config.h, libc/include/sys/signal.h,
15734         libc/include/sys/stat.h, libc/include/sys/types.h: For compiler
15735         provided macros (such as m68000), use the ansi version
15736         (__m68000__) so that the library can be used with code compiled
15737         -ansi. In particular, m68000, mc68000, _AM29K, i386, MIPSEL, unix,
15738         and sparc.
15739
15740 Wed Feb 17 13:01:34 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
15741
15742         * configure.in (sparc*): Don't set -fsoft-float for sparc
15743         configurations.  Do set -fsoft-float for sparclite configurations.
15744
15745 Fri Feb 12 16:25:52 1993  Roland H. Pesch  (pesch@fowanton.cygnus.com)
15746
15747         * default.menu, no-signal.menu: alternate forms of libc main menu
15748           (in newlib rather than newlib/libc due to configuration restrictions)
15749
15750         * configure.in: select one of the two menus above, link to
15751         libc.menu
15752
15753         * libc/libc.texinfo: include menu from separate file
15754
15755 Fri Feb 12 12:50:06 1993  Ian Lance Taylor  (ian@cygnus.com)
15756
15757         * Makefile.in (FLAGS_TO_PASS): Put INSTALL back in.
15758         (info): Split long shell command in half.
15759         * libc/Makefile.in (info, targetdep.tex): Don't pass everything to
15760         sub-makes, just CHEW and TARGETDOC. 
15761         (targetdep.tex): Removed now special handling of sys and machine
15762         subdirectories, made obsolete some time ago.
15763         * libc/machine/Makefile.in (doc): Don't pass everything to
15764         sub-make, just CHEW and TARGETDOC.
15765         (Makefile): New target.
15766         * libc/sys/Makefile.in (Makefile): New target.
15767
15768 Thu Feb 11 15:25:15 1993  Ian Lance Taylor  (ian@cygnus.com)
15769
15770         * Makefile.in (here and most subdirectories): Only pass down CHEW
15771         and TARGETDOC when making info, not for other targets.
15772
15773         * Makefile.in (here and most subdirectories), host/any: Use $(AR)
15774         $(AR_FLAGS) rather than $(ARUPDATE).
15775
15776 Wed Feb 10 11:57:52 1993  Ian Lance Taylor  (ian@cygnus.com)
15777
15778         * Try to reduce command line length:
15779         * Makefile.in (FLAGS_TO_PASS): don't pass down exec_prefix,
15780         CC_FOR_BUILD, CFLAGS_FOR_BUILD, INSTALL or CHEW.
15781         (info, docs): pass CC_FOR_BUILD and CFLAGS_FOR_BUILD to doc.
15782         (info): Pass CHEW to other subdirs.
15783
15784 Tue Feb  9 14:01:42 1993  Mark Eichin  (eichin@cygnus.com)
15785
15786         * configure.in: add signal_dir, like unix_dir, but by default it
15787         is set to "signal" so that a29khif can turn it off (since a29khif
15788         has raise() as part of machine-specific signal.s.)
15789
15790 Fri Jan 15 12:09:50 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
15791
15792         * libc/sys/config.h, libc/machine/ieeefp.h: add Z8000 support
15793         * libc/stdio/Makefile.in: pass CFLAGS so vfiprintf.c gets built
15794         correctly.
15795         * libc/stdio/fdopen.c, libc/stdio/fgets.c, libc/stdio/fscanf.c,
15796         libc/stdio/vfprintf: type lint.
15797         * libc/sys/z8ksim/crt0.c (start): Z8001/Z8002 independent
15798         initialzation code.
15799         * libc/sys/z8ksim/glue.c: Z8001/Z8002 clean system calls.
15800
15801 Tue Dec 29 10:15:33 1992  Ian Lance Taylor  (ian@cygnus.com)
15802
15803         * stub/mvme135/mvme135-asm.S: new file.
15804         stub/mvme135mvme135-stub.c: moved all assembler routines into
15805         mvme135-asm.S.
15806         stub/mvme135/Makefile.in: build mvme135-stub.o.
15807
15808 Mon Dec 28 12:40:43 1992  Ian Lance Taylor  (ian@cygnus.com)
15809
15810         * Makefile.in: don't pass down $(CPP); use $(CC) -E in
15811         sub-Makefiles instead, to try to avoid line length limitations.
15812
15813 Mon Dec 21 18:36:13 1992  Per Bothner  (bothner@rtl.cygnus.com)
15814
15815         * libc/include/unistd.h (read, write):  Use void* instead of
15816         char*.
15817
15818 Thu Dec 17 13:49:46 1992  Mark Eichin  (eichin@cygnus.com)
15819
15820         * stub/go32/resetpc: sample script to send a reset packet to the
15821         stub
15822
15823         * stub/go32/I386STUB.C: new file, gdb/i386stub.c modified for the
15824         DOS environment, which compiles with Turbo C.
15825
15826         * stub/go32/DSER32.LNK: new file, linker commands for serial
15827         remote stub.
15828
15829         * stub/go32/CONTROL.C: turn off debug_mode, add CYGNUS tag line to
15830         start up message to identify version; call set_debug_traps.
15831
15832         * stub/go32/DEBUG.C: turn off debug_mode (so stub doesn't need any
15833         keyboard interaction); call handle_exception() in go_til_stop,
15834         rather than return, so that the remote stub gets control.
15835
15836         * stub/go32/MAKEFILE: fixed to actually use DOS commands (del and
15837         rename, rather than mv), set flags that work with current Turbo C,
15838         including using the /3 flag; also, add commands to build dser32.
15839
15840         * stub/go32/DEBUG32.LNK, stub/go32/GO32.LNK: fix paths to match
15841         default Turbo C installation (\tc rather than \usr)
15842
15843         * stub/go32/MONO.C (printf): current Turbo C uses "..." instead of
15844         "&..."
15845
15846 Mon Dec 14 09:37:33 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
15847
15848         * libc/include/math.h: added _DOUBLE_IS_32BITS checks
15849
15850 Thu Nov 12 22:31:04 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
15851
15852         * libc/stdio/cvt.c (licvt): new function to convert ints when
15853         sizeof(int) != sizeof(long).
15854
15855         * libc/include/stdio.h: added prototype for iprintf.
15856         * libc/include/machine/limits.h machine/ieeefp.h: z8k stuff
15857
15858 Tue Nov 10 12:18:12 1992  Ian Lance Taylor  (ian@cygnus.com)
15859
15860         * libc/machine/m68k/setjmp.S: use __USER_LABEL_PREFIX__ and
15861         __REGISTER_PREFIX__.
15862
15863 Mon Nov  2 13:50:14 1992  Ian Lance Taylor  (ian@cygnus.com)
15864
15865         * libc/sys/m68kbare: moved into stub directory.
15866
15867 Mon Nov  2 13:40:42 1992  Ian Lance Taylor  (ian@cygnus.com)
15868
15869         * configure.in, Makefile.in: created new directory stub, to hold
15870         sample code for specific targets.
15871
15872 Wed Oct 28 02:19:55 1992  Mark Eichin  (eichin@cygnus.com)
15873
15874         * restored libc/sys/go32/sys/fcntl.h, to override incorrect values
15875         in the unified libc/include/sys/fcntl.h.
15876
15877 Wed Oct 21 13:55:58 1992  Doug Evans  (dje@rtl.cygnus.com)
15878
15879         * libc/stdlib/ecvtbuf.c: (print_f,_gcvt): printf("%f", 0.01)
15880         printed .01, not 0.01.
15881
15882 Mon Oct 19 11:05:55 1992  Ian Lance Taylor  (ian@cygnus.com)
15883
15884         * configure.in: compile with -m68000 for m68* targets.
15885
15886 Sun Oct 18 05:29:05 1992  Mark Eichin  (eichin@cygnus.com)
15887
15888         * libm/math/remainder.c (remainder): document the svr4 and sunos
15889         references used to construct the function.
15890
15891 Sat Oct 17 21:46:16 1992  Mark Eichin  (eichin@cygnus.com)
15892
15893         * libm/math/remainder.c (rint, remainder): fix old typos.
15894         * libm/math/Makefile.in: actually build remainder.c (functions
15895         rint and remainder, from SysVr4 Programmer's Guide floor(3m) man
15896         page.)
15897
15898 Thu Oct 15 07:48:05 1992  Ian Lance Taylor  (ian@cygnus.com)
15899
15900         * libc/string/bcopy.c: BSD version works on overlapping strings,
15901         so ours should too.
15902
15903         * libc/stdlib/system.c: always invoke /bin/sh, not getenv
15904         ("SHELL").
15905
15906 Wed Oct 14 11:07:11 1992  Ian Lance Taylor  (ian@cygnus.com)
15907
15908         * Makefile.in (docs): new target.
15909
15910 Wed Oct 14 07:44:25 1992  Ian Lance Taylor  (ian@cygnus.com)
15911
15912         * libc/include/sys/times.h: define clock_t as required by POSIX.
15913         libc/include/time.h: protect clock_t from multiple definitions.
15914
15915 Wed Oct  7 11:02:21 1992  Mark Eichin  (eichin at tweedledumber.cygnus.com)
15916
15917         * libm/math/sqrt.h (sqrt): actually, the final version of fp-bit
15918         does not need more than the original three iterations to get
15919         within 1 ulp. (Paranoia tests for rounding to better than that,
15920         but further iterations *don't* help, only more subtle changes
15921         can.)
15922
15923 Tue Oct  6 09:22:12 1992  Ian Lance Taylor  (ian@cygnus.com)
15924
15925         * libc/sys/vxworks68, libc/sys/vxworks960: removed, since they
15926         were doing nothing useful.
15927
15928 Tue Oct  6 08:48:13 1992  Ian Lance Taylor  (ian@cygnus.com)
15929
15930         * configure.in: define MALLOC_PROVIDED for vxworks targets;
15931         removed sys_dir settings of vxworks68 and vxworks960.
15932         host/any: don't pass -nostdinc to gcc, since newlib no longer
15933         provides all required header files.
15934
15935         * libc/stdlib/malloc.c: only compile this file if MALLOC_PROVIDED
15936         is not defined; this provides a hook for VxWorks.
15937
15938 Mon Oct  5 03:44:57 1992  Mark Eichin  (eichin at tweedledumber.cygnus.com)
15939
15940         * libc/stdio/setvbuf.c (setvbuf): while ANSI does say to malloc a
15941         buffer if buf is NULL, don't do it here -- it is already being
15942         done by makebuf elsewhere in stdio.
15943
15944 Fri Oct  2 13:12:07 1992  Ian Lance Taylor  (ian@cygnus.com)
15945
15946         * libc/sys/a29khif/Makefile.in: assemble Steve's list of stubs so
15947         that C programs can call functions without using initial
15948         underscores.
15949
15950 Thu Oct  1 09:37:47 1992  Ian Lance Taylor  (ian@cygnus.com)
15951
15952         * libc/stdlib/abort.c (abort): call exit, in case kill returns.
15953
15954 Wed Sep 30 08:22:18 1992  Ian Lance Taylor  (ian@cygnus.com)
15955
15956         * configure.in: set TARGET_CFLAGS for certain CPU types to
15957         -msoft-float.
15958
15959 Tue Sep 29 21:09:32 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15960
15961         * libc/sys/m68kbare/glue.c: use <_ansi.h> instead of <ansidecl.h>
15962
15963 Mon Sep 28 14:58:44 1992  Ian Lance Taylor  (ian@cygnus.com)
15964
15965         * configure.in: added sys_dir m68kbare for m68k*-unknown-aout and
15966         m68k*-unknown-coff.
15967
15968 Fri Sep 25 08:33:21 1992  Ian Lance Taylor  (ian@cygnus.com)
15969
15970         * libc/include/stdio.h: define __need___va_list before including
15971         <stdarg.h>, to avoid defining va_arg, et. al.
15972
15973 Tue Sep 22 13:47:00 1992  Ian Lance Taylor  (ian@cygnus.com)
15974
15975         * libc/sys/Makefile.in: handle the case of an empty $(sys_dir)
15976         (don't cd to the user's home directory).
15977
15978         * libc/Makefile.in: replaced all instances of $(MAKE) with make.
15979         In general this is the wrong thing to do, but I can't get around
15980         GNU make's insistence on passing command line arguments any other
15981         way.
15982
15983 Tue Sep 22 10:12:44 1992  Ian Lance Taylor  (ian@cygnus.com)
15984
15985         * configure.in: always configure the libc/sys directory, since it
15986         now provides a required documentation file.
15987
15988         * Makefile.in: replaced all instances of $(MAKE) with make.  In
15989         general this is the wrong thing to do, but I can't get around GNU
15990         make's insistence on passing command line arguments any other way.
15991
15992 Mon Sep 21 22:42:26 1992  Ian Lance Taylor  (ian@tweedledumbest.cygnus.com)
15993
15994         * libc/stdlib/ecvtbuf.c (_gcvt): string for 0 was not null
15995         terminated.
15996
15997         * libc/stdio/local.h: include <stdarg.h> to define va_list.
15998         libc/stdio/vsprintf.c: include <stdarg.h> rather than <varargs.h>.
15999
16000         * libc/include/float.h, libc/include/stdarg.h,
16001         libc/include/stddef.h, libc/include/varargs.h: removed; use gcc
16002         versions instead.
16003         libc/include/stdio.h: get size_t from <stddef.h>, and va_list from
16004         <stdarg.h>, not from <machine/types.h>.  Protect definition of
16005         NULL.
16006         libc/include/time.h: get size_t from stddef.h.  Protect definition
16007         of NULL.
16008         libc/include/machine/limits.h: override gcc <limits.h> by defining
16009         _LIMITS_H___.  Don't define CLK_TCK.  Copied in gcc <limits.h> to
16010         get correct INT_MIN and LONG_LONG values.
16011         libc/include/machine/types.h: don't define ptrdiff_t, wchar_t,
16012         size_t or va_list at all; they're now gotten from stddef.h
16013         instead.
16014         libc/include/machine/varargs.h: removed; use gcc version instead.
16015         libc/include/sys/types.h: explicitly include <machine/types.h>.
16016
16017         * libm/math/sqrt.h: using the fp-bit routines appears to require
16018         more iterations.
16019
16020         * Makefile.in, host/any: let system include files override machine
16021         include files.
16022
16023 Sat Sep 19 21:10:06 1992  Mark Eichin  (eichin at tweedledumber.cygnus.com)
16024
16025         * libc/include/machine/types.h: allow __*_TYPE__ from cpp to
16026         override _*_T_ definitions defaulted here.
16027
16028 Tue Sep 15 11:14:46 1992  Ian Lance Taylor  (ian@cygnus.com)
16029
16030         * Makefile.in (install): install the include files in
16031         $(tooldir)/include, not $(exec_prefix)/include.
16032
16033 Fri Sep 11 15:48:43 1992  Ian Lance Taylor  (ian@cygnus.com)
16034
16035         * Makefile.in (install): fixed typo, and changed install to not
16036         force rebuild of libc.a and libm.a.
16037
16038 Thu Sep 10 10:46:09 1992  Ian Lance Taylor  (ian@cygnus.com)
16039
16040         * libc/sys/a29khif/*: Changed all .include's to include
16041         sys/sysmac.h, not plain sysmac.h.  The header files live in sys so
16042         that they will be installed for the user.
16043
16044         * Makefile.in (all): create targ-include, a directory holding the
16045         machine and system specific header files during the build.
16046         (install): fixed installation of machine and system specific
16047         header files.
16048
16049         * Makefile.in: fixed comment.
16050         host/any: change .s.o rule to use $(AS) rather than $(CC), so that
16051         we can pass $(INCLUDES) to it.
16052
16053 Thu Sep 10 10:13:13 1992  Ian Lance Taylor  (ian@cygnus.com)
16054
16055         * libc/include/sys/param.h: new generic file, which may be
16056         overridden for specific systems.
16057
16058         * libc/include/sys/signal.h: define all ANSI signal names, and
16059         NSIG (which is not ANSI) for a29k.
16060
16061 Tue Sep  8 09:04:30 1992  Ian Lance Taylor  (ian@cygnus.com)
16062
16063         * Makefile.in: don't pass down arguments the lower level makes
16064         will not need.
16065         * libc/Makefile.in: recurse directly, rather than using subdir_do,
16066         in hopes of avoiding argument length limits.
16067         * libm/Makefile.in: recurse directly, rather using subdir_do, in
16068         hopes of avoiding argument length limits.
16069
16070 Tue Sep  8 08:27:22 1992  Ian Lance Taylor  (ian@cygnus.com)
16071
16072         * libc/include/sys/fcntl.h: include <sys/types.h> to ensure that
16073         mode_t is defined.
16074
16075 Mon Sep  7 14:02:07 1992  Ian Lance Taylor  (ian@cygnus.com)
16076
16077         * Fixed make info and make install-info for newlib, changing most
16078         Makefile.in and several *.tex files.  Moved doc directory from
16079         libc to top level.
16080
16081         * libc/time/mktime.c (_DAYS_IN_MONTH): actually, not const.
16082         Should be rewritten.
16083
16084         * libc/string/strings.tex: renamed node index to node index
16085         function, so that it does not conflict with the top level index
16086         node.
16087
16088         * libc/include/sys/config.h: define __IEEE_BIG_ENDIAN for h8300.
16089
16090 Fri Sep  4 02:34:06 1992  Ian Lance Taylor  (ian@cygnus.com)
16091
16092         * Overhauled general configuration for newlib.  Eliminated all
16093         target dependent Makefile fragments.  Create libraries in newlib
16094         rather than newlib/libc and newlib/libm.  Use CC, et. al., rather
16095         than CROSS_CC, et. al.  Broke make docs; will fix later.
16096
16097         * libc/time/localtime.c (_DAYS_IN_MONTH): actually, not const.
16098         Should be rewritten.
16099
16100 Tue Sep  1 15:21:14 1992  Ian Lance Taylor  (ian@cygnus.com)
16101
16102         * libc/configure.in: cleaned up somewhat; switch on ${target}
16103         rather than ${target_alias}.
16104         * libm/configure.in: cleaned up somewhat; switch on ${target}
16105         rather than ${target_alias}.
16106
16107         * libc/ctype/ctype_.c: marked _ctype_ array _CONST.
16108         * libc/include/ctype.h: marked _ctype_ as _CONST.
16109
16110         * libc/locale/locale.c (lconv, localeconv): marked static lconv as
16111         _CONST.
16112
16113         * libc/stdio/cvt.c, libc/stdio/findfp.c (__sfmoreglue),
16114         libc/stdio/vfscanf.c (__svfscanf): made static variables const.
16115         libc/stdio/gets.c (gets): removed non-ANSI warning message.
16116         libc/stdio/tmpnam.c (tmpnam): removed unneeded filename variable.
16117
16118         * libc/stdlib/mprec.h, libc/stdlib/mprec.c (pow5mult, tens,
16119         bigtens, tinytens): marked arrays _CONST.
16120         libc/stdlib/qsort.c (swap): if __GNUC__, use _builtin_alloca
16121         rather than a static variable.
16122
16123         * libc/time/asctime.c (asctime), libc/time/localtime.c
16124         (_DAYS_IN_MONTH), libc/time/mktime.c (_DAYS_IN_MONTH,
16125         _DAYS_BEFORE_MONTH), libc/time/strftime.c (dname_len, dname,
16126         mname_len, mname): Marked static arrays _CONST.
16127
16128         * libm/math/gamma.h: made local variables non-static.
16129
16130         * libm/math/acos.h, libm/math/bessel.c, libm/math/erf.c,
16131         libm/math/exp.c, libm/math/gamma.h: marked static arrays as
16132         _CONST.
16133
16134         * libm/math/constants.c: removed file, because the constants it
16135         defined were never referenced.
16136         libm/math/Makefile.in: removed references to constants.c.
16137         libm/math/mathimpl.h: removed declarations of constants.
16138
16139 Wed Aug 26 21:09:06 1992  Ian Lance Taylor  (ian@cygnus.com)
16140
16141         * libc/include/machine/varargs.h: only call __builtin_saveregs if
16142         it is sensibly defined in libgcc2.  Checks preprocessor defines,
16143         which is not a good solution.
16144
16145         * libm/sqrt.c: sqrt(Infinity) should not be a domain error.
16146
16147         * libm/frexp.c: handle denormalized numbers as arguments.
16148
16149         * libm/math/Makefile.in: added some dependencies for .c files
16150         which include local .h files.
16151
16152 Mon Aug 24 12:57:58 1992  Ian Lance Taylor  (ian@cygnus.com)
16153
16154         * libc/configure.in: set target_alias for OSE*.  Replace
16155         target_makefile_frag if it is blank.
16156
16157         * libc/Makefile.in: make sure everything is passed to subsidiary
16158         makes; create all directories when installing.
16159
16160         * libm/ieeefp/Makefile.in, libm/math/Makefile.in: use
16161         CROSS_ARUPDATE instead of AR.
16162
16163         * libm/configure.in: set target_alias for OSE*.  Replace
16164         target_makefile_frag if it is blank.
16165
16166         * libm/Makefile.in: make sure everything is passed to subsidiary
16167         makes; create all directories when installing.
16168
16169 Thu Aug 20 15:11:51 1992  Mark Eichin  (eichin@cygnus.com)
16170
16171         * add following change from libc copy.
16172
16173 Wed Aug 19 18:54:49 1992  Roland H. Pesch  (pesch@fowanton.cygnus.com)
16174
16175         * libc/libc.texinfo: make copyright disclaimers appear on back of
16176         title page; make format of same slightly less ugly; avoid using
16177         underbars in section headings (avoids nasty texinfo bug in table
16178         of contents).
16179
16180         * libc/ctype/tolower.c, libc/ctype/toupper.c: (doc changes in
16181           comments only) avoid using underbars in section headings
16182
16183         * libc/ieeefp/ieeefp.tex: include doc from fpsticky, infinity,
16184           isnan ieeefp/fpmask.c, ieeefp/fpround.c, ieeefp/fpsticky.c (doc
16185           changes in comments only): shorten headings ieeefp/infinity.c,
16186           ieeefp/isnan.c: (doc, comments only) more informative headings
16187
16188         * libc/math/bessel.c: (doc, comments only) shorten heading
16189
16190         * libc/stdlib/efgcvt.c, libc/stdlib/mbtowc.c, libc/stdlib/wctomb.c
16191         (doc, comments only) shorten headings
16192
16193         * libc/time/localtime.c (doc, comments only): shorten headings
16194
16195         * libm/ieeefp/ieeefp.tex: include doc from fpsticky, infinity,
16196           isnan
16197           libm/ieeefp/fpmask.c, libm/ieeefp/fpround.c,
16198           libm/ieeefp/fpsticky.c (doc changes in comments only): shorten
16199           headings
16200           libm/ieeefp/infinity.c, libm/ieeefp/isnan.c: (doc, comments
16201           only) more informative headings
16202         * libm/math/bessel.c: (doc, comments only) shorten heading
16203
16204 Wed Aug 19 07:06:37 1992  Mark Eichin  (eichin at tweedledumber.cygnus.com)
16205
16206         * .../Makefile.in: use CROSS_ARUPDATE consistently.
16207         * config/*.mt: define CROSS_AR as well as CROSS_ARUPDATE
16208         * config/*.mt: define CROSS_CPP based on CROSS_CC, not /lib/cpp.
16209         * .../Makefile.in: get rid of .c.o rule - if TOP is correctly
16210         defined, the one from the .mt file will be correct.
16211         * libc/include/machine, libc/include/sys: created, and populated
16212         with common files from machine/*/machine. ifdefs were used for
16213         most, typically by handling exceptions first and then filling in
16214         defaults. Files with D.J. Delorie copyright #included rather than
16215         copied. Most files in include/sys really were the same in the
16216         original.
16217         * libc/include/...: cleaned up use of _EXFUN.
16218         * libc/stdlib/mprec.c: mprec.h doesn't get installed, so include
16219         it with double quotes, not angles.
16220
16221 Mon Aug 10 11:43:20 1992  Ian Lance Taylor  (ian@dumbest.cygnus.com)
16222
16223         * libc/Makefile.in: always create installation directories.
16224
16225 Sun Aug  9 22:45:48 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16226
16227         * libc/configure.in: handle host properly (using canonical
16228         triples), better error message for the case of target not found
16229
16230 Thu May 28 01:56:37 1992  Michael Tiemann  (tiemann@rtl.cygnus.com)
16231
16232         * libc/Makefile.in (insincdir): Ensure this directory exists
16233         before attempting installation.
16234
16235 Fri May  1 18:16:42 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16236
16237         * libc/stdlib/assert.c: now calls abort like it should
16238         * libc/sys/a29khif: many many patches for 29khif work
16239         * libc/machine/i386: gnulib2 expanded there.
16240
16241 Tue Apr 28 19:08:37 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16242
16243         Added accurate fp conversion routines to stdlib, moved dcvt from
16244         stdio to stdlib and called it ecvtbuf:
16245         * libc/stdlib/mprec.c, mprec.h: new files for multiprec arithmetic
16246         * libc/stdlib/Makefile.in, efgcvt.c, strtod.c: modified to use new
16247         routines
16248         * libc/libc.texinfo: Modifed to include the copyright info from
16249         the mprec files
16250         * libc/stdlib/efgcvt.c: now xref to ecvtbuf in stdlib.
16251         * libc/test/ : many vector which tested for the implementation
16252         defined returns of strange conversion requests have been updated
16253         to relflect the new implementation
16254
16255 Mon Apr 27 13:41:33 1992  Roland H. Pesch  (pesch@fowanton.cygnus.com)
16256
16257         * libc/libc.texinfo: new chapter on variable arg lists
16258         (stdarg.h/varargs.h)
16259         * libc/libc.texinfo: new title
16260         * libc/time/gmtime.c, libc/time/localtime./c, libc/time/mktime.c:
16261         (doc only) shorter headings for better formatting.
16262
16263 Fri Apr 24 11:26:48 1992  Roland H. Pesch  (pesch@fowanton.cygnus.com)
16264
16265         * libc/libc.texinfo: three more info menu entries
16266         * libc/locale/locale.tex: new chapter
16267         * libc/locale/locale.c: new doc for setlocale, localeconv
16268         * libc/locale/Makefile.in: use new locale doc
16269         * libc/signal/signal.tex: new chapter
16270         * libc/signal/raise.c, libc/signal/signal.c: new doc
16271         * libc/signal/Makefile.in: use new doc
16272         * libc/time/time.tex: new chapter
16273         * libc/time/asctime.c libc/time/clock.c libc/time/ctime.c
16274         libc/time/difftime.c libc/time/gmtime.c libc/time/localtime.c
16275         libc/time/mktime.c libc/time/strftime.c libc/time/time.c: new doc
16276         * libc/time/Makefile.in: use new doc
16277
16278 Tue Apr 21 14:48:50 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16279
16280         * libm/math/log1p.c: split to use the new function way of float
16281         function definition. math/log1p.h deleted
16282         * libm/math/scalb.c: obsolete and deleted
16283         * libm/math/scalbn.c: created from part log1p.c
16284         * libm/math/Makefile.in: know about log1p and scalbn
16285
16286 Tue Apr 21 12:32:21 1992  Roland H. Pesch  (pesch@fowanton.cygnus.com)
16287
16288         * libc/ctype/isupper.c: revise doc;
16289           libc/ctype/ctype.tex: use doc from isupper.c
16290
16291         * libc/string/bzero.c: new doc
16292
16293 Mon Apr 20 14:19:42 1992  Roland H. Pesch  (pesch@fowanton.cygnus.com)
16294
16295         * libc/stdlib/system.c, libc/stdlib/exit.c, libc/stdlib/abort.c:
16296         new doc
16297         * libc/stdlib/Makefile.in: extract new doc
16298         * libc/stdlib/stdlib.tex: use new doc
16299
16300         * libc/string/strerror.c: expanded doc.
16301
16302         * libc/stdio/Makefile.in: extract doc from more files
16303         * libc/stdio/fopen.c, libc/stdio/perror.c, libc/stdio/remove.c,
16304         libc/stdio/rename.c, libc/stdio/rewind.c, libc/stdio/setbuf.c,
16305         libc/stdio/setvbuf.c, libc/stdio/sprintf.c, libc/stdio/tmpfile.c,
16306         libc/stdio/tmpnam.c, libc/stdio/vfprintf.c, libc/stdio/vprintf.c,
16307         libc/stdio/vsprintf.c: new doc
16308         * libc/stdio/stdio.tex: use new doc
16309
16310 Mon Apr 20 09:38:17 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16311
16312         * libc/config/ebmon29k: added CROSS_CPP rule and other fixes
16313         * libc/include/ieeefp.h: fixed ansi conflict with isnanf, isinff,
16314         finitef functions.
16315         * libc/sys/a29khif/sys/*.h: ansidecl.h was renamed to _ansi.h some
16316         time ago.
16317
16318         * libc/stdio/stdio.h: added P_tmpdir for /tmp (SVID thing)
16319         * libc/stdio/setbuf.c: added ansi style definition.
16320         * libc/stdio/setvbuf.c: added ansi definition, now mallocs own
16321         buffer if none provided.
16322         * libc/stdio/tmpfile.c: lint
16323         * libc/stdio/tmpnam.c (worker): created. (tmpnam): mallocs buffer
16324         rather than using static, also make sure file isn't already
16325         present.  Uses P_tmpdir. (tempnam): rewritten to use new
16326         subroutine, and uses P_tmpdir.
16327         * libc/stdio/siprintf.c: created
16328
16329 Mon Apr 13 09:12:58 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16330
16331         Release 1.03 for NEC, major mods. Main differences from release
16332         1.02::
16333
16334         More tests in test/:
16335         * jn_vec.c, jnf_vec.c, yn_vec.c, ynf_vec.c, log2_vec.c,
16336         log2f_vec.c, atan2_vec.c, atan2f_vec.c: new test vectors.
16337         * test_ieee.c: tests for ieee flags & masks - get/set rounding,
16338         get/set mask, get/set sticky and get/set roundtoi.  Tests
16339         that setting the bits changes the way arithmetic is done.
16340         * string.c: added test to make sure memcmp does it with unsigned
16341         chars.
16342         * test.c: cleaned up and removed lint.
16343         * sprint_vec, sprint_ivec.c, convert.c, conv_vec.c, iconf_vec.c,
16344         dvec.c: tests for string to value conversions,  sprintf, scanf,
16345         atof, atoff, strtod, strtodf, atoi, atol, strtol, ecvtbuf, ecvt,
16346         ecvtf,  fcvtbuf, fcvt, fcvtf, gcvt, gcvtf.  Some attention paid to
16347         rounding in sprintf too.
16348         * test_is.c: tests for  isalnum, isalpha, isascii, iscntrl,
16349         isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
16350         isxdigit, toascii, tolower, toupper, _tolower, _toupper in macro
16351         and function form.
16352         * math2.c: test for frexp, frexpf, ldexp, ldexpf, modf modff, pow,
16353         powf
16354
16355         In the library:
16356         * libc/stdlib/div.c, libc/stdlib/ldiv.c, libc/stdlib/strtod.c,
16357         libc/stdlib/strtol.c, libc/stdlib/stroul.c, libc/stdlib/abs.c,
16358         libc/stdlib/bsearch.c, libc/stdlib/calloc.c, libc/stdlib/getenv.c,
16359         libc/stdlib/labs.c, libc/stdlib/malloc.c: new documentation
16360         * libc/stdlib/efgcvt.c: rewritten to use new _dcvt routines rather
16361         than sprintf.
16362         * libc/stdio/dcvt.c: rewritten to make more useful elsewhere. 
16363         * Method of producting float versions of double functions has
16364         changed, functions will be modified gradually. So far:
16365         libm/math/exp.c, libm/math/pow.c, libm/math/modf.c,
16366         libm/math/sincos.c, libm/math/fmod.c, libm/math/tan.c have been
16367         altered
16368         * libc/string/memcmp.c: now uses unsigned chars
16369         * libc/string/bcmp.c, libc/string/strcpy.c,
16370         libc/stsring/strxfrm.c: fixed doc
16371         * libc/sys/sysvnecv70.tex: fix example of sbrk code
16372 \f
16373 Local Variables:
16374 version-control: never
16375 End: