]> sourceware.org Git - newlib-cygwin.git/blob - newlib/ChangeLog
2007-06-20 Patrick Mansfield <patmans@us.ibm.com>
[newlib-cygwin.git] / newlib / ChangeLog
1 2007-06-20 Patrick Mansfield <patmans@us.ibm.com>
2
3 * libc/include/sys/unistd.h[__SPU__]: Add lockf prototype and related
4 defines; expose ftruncate, truncate and sync prototypes.
5
6 2007-06-20 Patrick Mansfield <patmans@us.ibm.com>
7
8 * libc/include/sys/unistd.h[__SPU__]: Make fchdir prototype visible.
9 * libc/include/sys/stat.h[__SPU__]: Make mknod and lstat prototypes
10 visible.
11
12 2007-06-15 Patrick Mansfield <patmans@us.ibm.com>
13
14 * libc/machine/spu/Makefile.am: Remove mktemp.c, it was left in
15 from a dropped patch.
16 * libc/machine/spu/Makefile.in: Regenerate.
17
18 2007-06-13 Patrick Mansfield <patmans@us.ibm.com>
19
20 * libc/machine/spu/creat.c: New file copied from libc/posix/creat.c,
21 it just calls open with appropriate arguments.
22 * libc/machine/spu/Makefile.am: Add creat.c.
23 * libc/machine/spu/Makefile.in: Regenerate.
24
25 2007-06-13 Jeff Johnston <jjohnstn@redhat.com>
26
27 * libc/machine/spu/Makefile.am: Re-add back setjmp.S which
28 I accidentally dropped.
29 * libc/machine/spu/Makefile.in: Regenerated.
30
31 2007-06-13 Patrick Mansfield <patmans@us.ibm.com>
32
33 * libc/include/sys/features.h: Define _POSIX_TIMERS for spu.
34 * libc/include/sys/unistd.h: Change usleep prototype to Posix
35 form and move outside of OS flag checks.
36 * libc/machine/spu/Makefile.am: Add sleep and usleep.
37 * libc/machine/spu/Makefile.in: Regenerate.
38 * libc/machine/spu/sleep.c: Copy libc/posix/sleep.c.
39 * libc/machine/spu/usleep.c: Copy libc/posix/usleep.c.
40
41 2007-06-11 Corinna Vinschen <corinna@vinschen.de>
42
43 * libc/include/sys/unistd.h: Declare confstr for Cygwin.
44 Define confstr constants for Cygwin. Add comment.
45
46 2007-06-10 Hans-Peter Nilsson <hp@bitrange.com>
47
48 * libc/sys/mmixware/access.c (access): Do not try to use a magic
49 file-handle and a direct syscall, just use _open.
50 * libc/sys/mmixware/sys/syscall.h (TMPFNO): Remove this magic
51 file-handle.
52
53 * libc/sys/mmixware/_exit.c (_exit): Update comment about
54 passing on the exit value.
55
56 2007-06-08 Jeff Johnston <jjohnstn@redhat.com>
57
58 * libc/string/strcasestr.c: New file.
59 * libc/include/string.h: Add strcasestr.
60 * libc/string/strings.tex: Add strcasestr.
61 * libc/string/Makefile.am: Ditto.
62 * libc/string/Makefile.in: Regenerated.
63
64 2007-06-06 Christian Groessler <chris@groessler.org>
65
66 * libc/stdlib/ldtoa (_ldcheck): Make sure the setting of
67 rnd is done after the last local variable declaration.
68
69 2007-06-06 Jeff Johnston <jjohnstn@redhat.com>
70
71 * libc/stdlib/mprec.h[Just_16]: Make sure that Pack_16 is defined.
72
73 2007-06-05 Christian Groessler <chris@groessler.org>
74
75 * libc/argz/argz_insert.c (argz_insert): Move delta variable
76 declaration to top of function in keeping with C89 standard.
77
78 2007-06-04 Eric Blake <ebb9@byu.net>
79
80 Implement funopen, fopencookie.
81 * libc/include/sys/reent.h (struct __sFILE, struct __sFILE64):
82 Switch to reentrant callbacks.
83 * libc/include/stdio.h (funopen): Fix declaration.
84 (fopencookie): Declare.
85 * libc/stdio/local.h (__sread, __swrite, __sseek, __sclose)
86 (__sseek64, __swrite64): Fix prototypes.
87 [__SCLE]: Pull in setmode declaration.
88 * libc/stdio/stdio.c (__sread, __swrite, __sseek, __sclose): Fix
89 reentrancy.
90 * libc/stdio64/stdio64.c (__sseek64_r, __swrite64_r): Delete.
91 (__sseek64, __swrite64): Fix reentrancy.
92 * libc/stdio/fseek.c (_fseek_r): Account for overflow, and fix
93 reentrancy.
94 * libc/stdio/ftell.c (_ftell_r): Likewise.
95 * libc/stdio/flags.c (__sflags): Don't lose __SAPP on "a+".
96 * libc/stdio/fclose.c (_fclose_r): Fix reentrancy.
97 * libc/stdio/freopen.c (_freopen_r): Likewise.
98 * libc/stdio/fvwrite.c (__sfvwrite_r): Likewise.
99 * libc/stdio/refill.c (__srefill_r): Likewise.
100 * libc/stdio/siscanf.c (eofread): Likewise.
101 * libc/stdio/sscanf.c (eofread): Likewise.
102 * libc/stdio/vsiscanf.c (eofread1): Likewise.
103 * libc/stdio/vsscanf.c (eofread1): Likewise.
104 * libc/stdio64/freopen64.c (_freopen64_r): Likewise.
105 * libc/stdio64/fseeko64.c (_fseeko64_r): Likewise.
106 * libc/stdio64/ftello64.c (_ftello64_r): Likewise.
107 * libc/stdio/fflush.c (fflush): Improve reentrancy, although more
108 could be fixed.
109 * libc/stdio/fopencookie.c (_fopencookie_r, fopencookie): New file.
110 * libc/stdio/funopen.c (_funopen_r, funopen): New file.
111 * libc/stdio/Makefile.am (ELIX_4_SOURCES, CHEWOUT_FILES): Build
112 new files.
113 * libc/stdio/Makefile.in: Regenerate.
114
115 2007-05-29 Eric Blake <ebb9@byu.net>
116
117 Avoid more compiler warnings.
118 * libc/stdlib/btowc.c: Add missing header.
119 * libc/stdlib/getopt.c (getopt_internal): Initialize variable.
120 * libc/stdlib/system.c (do_system) [__CYGWIN__]: Add declaration.
121 * libc/stdlib/wctob.c: Add missing header.
122 * libc/string/strcpy.c (strcpy): Avoid warnings.
123 * libc/string/strrchr.c (strrchr): Likewise.
124
125 2007-05-29 Corinna Vinschen <corinna@vinschen.de>
126
127 * libc/argz/argz_add_sep.c (argz_add_sep): Handle empty string
128 argument.
129 * libc/argz/argz_append.c (argz_append): Handle empty buf argument.
130 * libc/argz/argz_create_sep.c (argz_create_sep): Return (NULL, 0)
131 on empty input strings.
132 * libc/argz/argz_extract.c (argz_extract): Check argz_len before
133 looping through argz.
134 * libc/argz/argz_stringify.c (argz_stringify): Ditto.
135
136 2007-05-27 Brian Dessent <brian@dessent.net>
137
138 * libc/stdio/vfprintf.c (_VFPRINTF_R): Populate 'ox' when
139 handling %p.
140
141 2007-05-25 Eric Blake <ebb9@byu.net>
142
143 * libc/stdio/rewind.c (rewind): Fix regression of 2003-08-22.
144
145 2007-05-24 Steve Ellcey <sje@cup.hp.com>
146 Charles Wilson <libtool@cwilson.fastmail.fm>
147
148 * libtool.m4: removed
149 * configure.in: invoke _LD_DECL_SED before conditionally initializing
150 libtool. Move AC_PROG_AWK outside conditional.
151 * libc/sys/linux/configure.in: Ditto.
152 * libc/sys/linux/linuxthreads/configure.in: Ditto.
153 * libc/sys/linux/linuxthreads/machine/i386/configure.in: Ditto.
154 * libc/sys/linux/machine/i386/configure.in: Ditto.
155
156 * iconvdata/configure.in: invoke _LD_DECL_SED before conditionally
157 initializing libtool.
158 * libc/configure.in: Ditto.
159 * libc/machine/configure.in: Ditto.
160 * libc/machine/i386/configure.in: Ditto.
161 * libc/sys/configure.in: Ditto.
162 * libc/sys/linux/linuxthreads/machine/configure.in: Ditto.
163 * libc/sys/linux/machine/configure.in: Ditto.
164 * libm/configure.in: Ditto.
165 * libm/machine/configure.in: Ditto.
166
167 * Makefile.am: Ensure toplevel is included in ACLOCAL_AMFLAGS.
168 * doc/Makefile.am: Ditto.
169 * iconvdata/Makefile.am: Ditto.
170 * libc/Makefile.am: Ditto.
171 * libc/machine/Makefile.am: Ditto.
172 * libc/machine/a29k/Makefile.am: Ditto.
173 * libc/machine/arm/Makefile.am: Ditto.
174 * libc/machine/bfin/Makefile.am: Ditto.
175 * libc/machine/cris/Makefile.am: Ditto.
176 * libc/machine/crx/Makefile.am: Ditto.
177 * libc/machine/d10v/Makefile.am: Ditto.
178 * libc/machine/d30v/Makefile.am: Ditto.
179 * libc/machine/fr30/Makefile.am: Ditto.
180 * libc/machine/frv/Makefile.am: Ditto.
181 * libc/machine/h8300/Makefile.am: Ditto.
182 * libc/machine/h8500/Makefile.am: Ditto.
183 * libc/machine/hppa/Makefile.am: Ditto.
184 * libc/machine/i386/Makefile.am: Ditto.
185 * libc/machine/i960/Makefile.am: Ditto.
186 * libc/machine/iq2000/Makefile.am: Ditto.
187 * libc/machine/m32c/Makefile.am: Ditto.
188 * libc/machine/m32r/Makefile.am: Ditto.
189 * libc/machine/m68hc11/Makefile.am: Ditto.
190 * libc/machine/m68k/Makefile.am: Ditto.
191 * libc/machine/m88k/Makefile.am: Ditto.
192 * libc/machine/mips/Makefile.am: Ditto.
193 * libc/machine/mn10200/Makefile.am: Ditto.
194 * libc/machine/mn10300/Makefile.am: Ditto.
195 * libc/machine/mt/Makefile.am: Ditto.
196 * libc/machine/necv70/Makefile.am: Ditto.
197 * libc/machine/powerpc/Makefile.am: Ditto.
198 * libc/machine/sh/Makefile.am: Ditto.
199 * libc/machine/sparc/Makefile.am: Ditto.
200 * libc/machine/spu/Makefile.am: Ditto.
201 * libc/machine/tic4x/Makefile.am: Ditto.
202 * libc/machine/tic80/Makefile.am: Ditto.
203 * libc/machine/v850/Makefile.am: Ditto.
204 * libc/machine/w65/Makefile.am: Ditto.
205 * libc/machine/xscale/Makefile.am: Ditto.
206 * libc/machine/xstormy16/Makefile.am: Ditto.
207 * libc/machine/z8k/Makefile.am: Ditto.
208 * libc/sys/Makefile.am: Ditto.
209 * libc/sys/a29khif/Makefile.am: Ditto.
210 * libc/sys/arc/Makefile.am: Ditto.
211 * libc/sys/arm/Makefile.am: Ditto.
212 * libc/sys/d10v/Makefile.am: Ditto.
213 * libc/sys/decstation/Makefile.am: Ditto.
214 * libc/sys/h8300hms/Makefile.am: Ditto.
215 * libc/sys/h8500hms/Makefile.am: Ditto.
216 * libc/sys/linux/Makefile.am: Ditto.
217 * libc/sys/linux/linuxthreads/Makefile.am: Ditto.
218 * libc/sys/linux/linuxthreads/machine/Makefile.am: Ditto.
219 * libc/sys/linux/linuxthreads/machine/i386/Makefile.am: Ditto.
220 * libc/sys/linux/machine/Makefile.am: Ditto.
221 * libc/sys/linux/machine/i386/Makefile.am: Ditto.
222 * libc/sys/m88kbug/Makefile.am: Ditto.
223 * libc/sys/mmixware/Makefile.am: Ditto.
224 * libc/sys/netware/Makefile.am: Ditto.
225 * libc/sys/rdos/Makefile.am: Ditto.
226 * libc/sys/rtems/Makefile.am: Ditto.
227 * libc/sys/sh/Makefile.am: Ditto.
228 * libc/sys/sparc64/Makefile.am: Ditto.
229 * libc/sys/sun4/Makefile.am: Ditto.
230 * libc/sys/sysmec/Makefile.am: Ditto.
231 * libc/sys/sysnec810/Makefile.am: Ditto.
232 * libc/sys/sysnecv850/Makefile.am: Ditto.
233 * libc/sys/sysvi386/Makefile.am: Ditto.
234 * libc/sys/sysvnecv70/Makefile.am: Ditto.
235 * libc/sys/tic80/Makefile.am: Ditto.
236 * libc/sys/w65/Makefile.am: Ditto.
237 * libc/sys/z8ksim/Makefile.am: Ditto.
238 * libm/Makefile.am: Ditto.
239 * libm/machine/Makefile.am: Ditto.
240 * libm/machine/i386/Makefile.am: Ditto.
241 * libm/machine/spu/Makefile.am: Ditto.
242
243 * aclocal.m4: Regenerate.
244 * iconvdata/aclocal.m4: Regenerate.
245 * libc/aclocal.m4: Regenerate.
246 * libc/machine/aclocal.m4: Regenerate.
247 * libc/machine/i386/aclocal.m4: Regenerate.
248 * libc/sys/aclocal.m4: Regenerate.
249 * libc/sys/linux/aclocal.m4: Regenerate.
250 * libc/sys/linux/linuxthreads/aclocal.m4: Regenerate.
251 * libc/sys/linux/linuxthreads/machine/aclocal.m4: Regenerate.
252 * libc/sys/linux/linuxthreads/machine/i386/aclocal.m4: Regenerate.
253 * libc/sys/linux/machine/aclocal.m4: Regenerate.
254 * libc/sys/linux/machine/i386/aclocal.m4: Regenerate.
255 * libm/aclocal.m4: Regenerate.
256 * libm/machine/aclocal.m4: Regenerate.
257 * libm/machine/i386/aclocal.m4: Regenerate.
258
259 * Makefile.in: Regenerate.
260 * doc/Makefile.in: Regenerate.
261 * iconvdata/Makefile.in: Regenerate.
262 * libc/Makefile.in: Regenerate.
263 * libc/argz/Makefile.in: Regenerate.
264 * libc/ctype/Makefile.in: Regenerate.
265 * libc/errno/Makefile.in: Regenerate.
266 * libc/iconv/Makefile.in: Regenerate.
267 * libc/iconv/ccs/Makefile.in: Regenerate.
268 * libc/iconv/ccs/binary/Makefile.in: Regenerate.
269 * libc/iconv/ces/Makefile.in: Regenerate.
270 * libc/iconv/lib/Makefile.in: Regenerate.
271 * libc/locale/Makefile.in: Regenerate.
272 * libc/machine/Makefile.in: Regenerate.
273 * libc/machine/a29k/Makefile.in: Regenerate.
274 * libc/machine/arm/Makefile.in: Regenerate.
275 * libc/machine/bfin/Makefile.in: Regenerate.
276 * libc/machine/cris/Makefile.in: Regenerate.
277 * libc/machine/crx/Makefile.in: Regenerate.
278 * libc/machine/d10v/Makefile.in: Regenerate.
279 * libc/machine/d30v/Makefile.in: Regenerate.
280 * libc/machine/fr30/Makefile.in: Regenerate.
281 * libc/machine/frv/Makefile.in: Regenerate.
282 * libc/machine/h8300/Makefile.in: Regenerate.
283 * libc/machine/h8500/Makefile.in: Regenerate.
284 * libc/machine/hppa/Makefile.in: Regenerate.
285 * libc/machine/i386/Makefile.in: Regenerate.
286 * libc/machine/i960/Makefile.in: Regenerate.
287 * libc/machine/iq2000/Makefile.in: Regenerate.
288 * libc/machine/m32c/Makefile.in: Regenerate.
289 * libc/machine/m32r/Makefile.in: Regenerate.
290 * libc/machine/m68hc11/Makefile.in: Regenerate.
291 * libc/machine/m68k/Makefile.in: Regenerate.
292 * libc/machine/m88k/Makefile.in: Regenerate.
293 * libc/machine/mips/Makefile.in: Regenerate.
294 * libc/machine/mn10200/Makefile.in: Regenerate.
295 * libc/machine/mn10300/Makefile.in: Regenerate.
296 * libc/machine/mt/Makefile.in: Regenerate.
297 * libc/machine/necv70/Makefile.in: Regenerate.
298 * libc/machine/powerpc/Makefile.in: Regenerate.
299 * libc/machine/sh/Makefile.in: Regenerate.
300 * libc/machine/sparc/Makefile.in: Regenerate.
301 * libc/machine/spu/Makefile.in: Regenerate.
302 * libc/machine/tic4x/Makefile.in: Regenerate.
303 * libc/machine/tic80/Makefile.in: Regenerate.
304 * libc/machine/v850/Makefile.in: Regenerate.
305 * libc/machine/w65/Makefile.in: Regenerate.
306 * libc/machine/xscale/Makefile.in: Regenerate.
307 * libc/machine/xstormy16/Makefile.in: Regenerate.
308 * libc/machine/z8k/Makefile.in: Regenerate.
309 * libc/misc/Makefile.in: Regenerate.
310 * libc/posix/Makefile.in: Regenerate.
311 * libc/reent/Makefile.in: Regenerate.
312 * libc/search/Makefile.in: Regenerate.
313 * libc/signal/Makefile.in: Regenerate.
314 * libc/stdio/Makefile.in: Regenerate.
315 * libc/stdio64/Makefile.in: Regenerate.
316 * libc/stdlib/Makefile.in: Regenerate.
317 * libc/string/Makefile.in: Regenerate.
318 * libc/sys/Makefile.in: Regenerate.
319 * libc/sys/a29khif/Makefile.in: Regenerate.
320 * libc/sys/arc/Makefile.in: Regenerate.
321 * libc/sys/arm/Makefile.in: Regenerate.
322 * libc/sys/d10v/Makefile.in: Regenerate.
323 * libc/sys/decstation/Makefile.in: Regenerate.
324 * libc/sys/h8300hms/Makefile.in: Regenerate.
325 * libc/sys/h8500hms/Makefile.in: Regenerate.
326 * libc/sys/linux/Makefile.in: Regenerate.
327 * libc/sys/linux/argp/Makefile.in: Regenerate.
328 * libc/sys/linux/cmath/Makefile.in: Regenerate.
329 * libc/sys/linux/dl/Makefile.in: Regenerate.
330 * libc/sys/linux/iconv/Makefile.in: Regenerate.
331 * libc/sys/linux/intl/Makefile.in: Regenerate.
332 * libc/sys/linux/linuxthreads/Makefile.in: Regenerate.
333 * libc/sys/linux/linuxthreads/machine/Makefile.in: Regenerate.
334 * libc/sys/linux/linuxthreads/machine/i386/Makefile.in: Regenerate.
335 * libc/sys/linux/machine/Makefile.in: Regenerate.
336 * libc/sys/linux/machine/i386/Makefile.in: Regenerate.
337 * libc/sys/linux/net/Makefile.in: Regenerate.
338 * libc/sys/linux/stdlib/Makefile.in: Regenerate.
339 * libc/sys/m88kbug/Makefile.in: Regenerate.
340 * libc/sys/mmixware/Makefile.in: Regenerate.
341 * libc/sys/netware/Makefile.in: Regenerate.
342 * libc/sys/rdos/Makefile.in: Regenerate.
343 * libc/sys/rtems/Makefile.in: Regenerate.
344 * libc/sys/sh/Makefile.in: Regenerate.
345 * libc/sys/sparc64/Makefile.in: Regenerate.
346 * libc/sys/sun4/Makefile.in: Regenerate.
347 * libc/sys/sysmec/Makefile.in: Regenerate.
348 * libc/sys/sysnec810/Makefile.in: Regenerate.
349 * libc/sys/sysnecv850/Makefile.in: Regenerate.
350 * libc/sys/sysvi386/Makefile.in: Regenerate.
351 * libc/sys/sysvnecv70/Makefile.in: Regenerate.
352 * libc/sys/tic80/Makefile.in: Regenerate.
353 * libc/sys/w65/Makefile.in: Regenerate.
354 * libc/sys/z8ksim/Makefile.in: Regenerate.
355 * libc/syscalls/Makefile.in: Regenerate.
356 * libc/time/Makefile.in: Regenerate.
357 * libc/unix/Makefile.in: Regenerate.
358 * libm/Makefile.in: Regenerate.
359 * libm/common/Makefile.in: Regenerate.
360 * libm/machine/Makefile.in: Regenerate.
361 * libm/machine/i386/Makefile.in: Regenerate.
362 * libm/machine/spu/Makefile.in: Regenerate.
363 * libm/math/Makefile.in: Regenerate.
364 * libm/mathfp/Makefile.in: Regenerate.
365
366 * configure: Regenerate.
367 * iconvdata/configure: Regenerate.
368 * libc/configure: Regenerate.
369 * libc/machine/configure: Regenerate.
370 * libc/machine/i386/configure: Regenerate.
371 * libc/sys/configure: Regenerate.
372 * libc/sys/linux/configure: Regenerate.
373 * libc/sys/linux/linuxthreads/configure: Regenerate.
374 * libc/sys/linux/linuxthreads/machine/configure: Regenerate.
375 * libc/sys/linux/linuxthreads/machine/i386/configure: Regenerate.
376 * libc/sys/linux/machine/configure: Regenerate.
377 * libc/sys/linux/machine/i386/configure: Regenerate.
378 * libm/configure: Regenerate.
379 * libm/machine/configure: Regenerate.
380 * libm/machine/i386/configure: Regenerate.
381
382 2007-05-23 Eric Blake <ebb9@byu.net>
383
384 * libc/stdio/vfprintf.c (_VFPRINTF_R): Don't truncate %p when
385 sizeof(void*) is 8 but sizeof(long) is 4.
386 * libc/stdio/vfscanf.c (__SVFSCANF_R): Likewise. Fix %i scanning
387 of "-0x". Support "-nan" and "inf" for %e. Audit usage of ungetc
388 to fix reentrancy and bug on encoding error in multibyte locales.
389 Always return EOF on read error.
390
391 2007-05-23 Patrick Mansfield <patmans@us.ibm.com>
392
393 * libc/machine/spu/sys/syscall.h: Update the __send_to_ppe
394 prototype.
395 * libc/machine/spu/fclose.c: Use the __send_to_ppe return value
396 instead of the slot 0 value, remove any now unused variables, and
397 for some cases, now store the result in an int vs int*.
398 * libc/machine/spu/feof.c: Ditto.
399 * libc/machine/spu/ferror.c: Ditto.
400 * libc/machine/spu/fflush.c: Ditto.
401 * libc/machine/spu/fgetc.c: Ditto.
402 * libc/machine/spu/fgetpos.c: Ditto.
403 * libc/machine/spu/fgets.c: Ditto.
404 * libc/machine/spu/fileno.c: Ditto.
405 * libc/machine/spu/fopen.c: Ditto.
406 * libc/machine/spu/fprintf.c: Ditto.
407 * libc/machine/spu/fputc.c: Ditto.
408 * libc/machine/spu/fputs.c: Ditto.
409 * libc/machine/spu/fread.c: Ditto.
410 * libc/machine/spu/freopen.c: Ditto.
411 * libc/machine/spu/fscanf.c: Ditto.
412 * libc/machine/spu/fseek.c: Ditto.
413 * libc/machine/spu/fsetpos.c: Ditto.
414 * libc/machine/spu/ftell.c: Ditto.
415 * libc/machine/spu/fwrite.c: Ditto.
416 * libc/machine/spu/getc.c: Ditto.
417 * libc/machine/spu/getchar.c: Ditto.
418 * libc/machine/spu/gets.c: Ditto.
419 * libc/machine/spu/printf.c: Ditto.
420 * libc/machine/spu/putc.c: Ditto.
421 * libc/machine/spu/putchar.c: Ditto.
422 * libc/machine/spu/puts.c: Ditto.
423 * libc/machine/spu/remove.c: Ditto.
424 * libc/machine/spu/rename.c: Ditto.
425 * libc/machine/spu/scanf.c: Ditto.
426 * libc/machine/spu/setvbuf.c: Ditto.
427 * libc/machine/spu/snprintf.c: Ditto.
428 * libc/machine/spu/sprintf.c: Ditto.
429 * libc/machine/spu/sscanf.c: Ditto.
430 * libc/machine/spu/tmpfile.c: Ditto.
431 * libc/machine/spu/tmpnam.c: Ditto.
432 * libc/machine/spu/ungetc.c: Ditto.
433 * libc/machine/spu/vfprintf.c: Ditto.
434 * libc/machine/spu/vfscanf.c: Ditto.
435 * libc/machine/spu/vprintf.c: Ditto.
436 * libc/machine/spu/vscanf.c: Ditto.
437 * libc/machine/spu/vsnprintf.c: Ditto.
438 * libc/machine/spu/vsprintf.c: Ditto.
439 * libc/machine/spu/vsscanf.c: Ditto.
440
441 2007-05-23 Eric Blake <ebb9@byu.net>
442
443 * libc/stdio/vfscanf.c (__SVFSCANF_R): Support scanf(%1$s).
444 Avoid warning when !FLOATING_POINT.
445 * libc/stdio/vfprintf.c (_VFPRINTF_R): Simplify _NO_POS_ARGS
446 slightly.
447
448 2007-05-23 Corinna Vinschen <vinschen@redhat.com>
449
450 * libc/argz/argz_create_sep.c (argz_create_sep): Initialize *argz_len
451 to zero.
452 * libc/include/argz.h: Guard against multiple inclusion. Guard for
453 use with C++.
454
455 2007-05-18 Eric Blake <ebb9@byu.net>
456
457 * libc/stdio/vfprintf.c [_WANT_IO_LONG_LONG]: Allow non-gcc
458 compilers.
459 * libc/stdio/vfscanf.c: Likewise.
460
461 2007-05-17 Cary R. <cygcary <at> yahoo.com>
462
463 * libm/math/w_atan2.c: Fix atan2 to be consistent with glibc
464 (atan2(+0,-0), atan2(-0,-0) and atan(-0,+0))
465 * libm/math/wf_atan2.c: Ditto.
466
467 2007-05-17 Yaakov Selkowitz <yselkowitz <at> users.sourceforge.net>
468
469 * libm/common/Makefile.am: Add support for exp10, exp10f,
470 pow10, and pow10f functions.
471 * libm/common/Makefile.in: Regenerated.
472 * libm/common/s_pow10.c: New file.
473 * libm/common/sf_pow10.c: Ditto.
474 * libm/common/s_exp10.c: Ditto.
475 * libm/common/sf_exp10.c: Ditto.
476 * libc/include/math.h [!pow10]: New pow10 prototype.
477 [!pow10f]: New pow10f prototype.
478 [!exp10]: New exp10 prototype.
479 [!exp10f]: New exp10f prototype.
480
481 2007-05-17 Charles Wilson <cygwin@...>
482
483 * stdio/tmpfile.c: Include <sys/stat.h>.
484 * stdio64/tmpfile64.c: Ditto.
485
486 2007-05-16 Eric Blake <ebb9@byu.net>
487
488 Close security hole in tmpfile.
489 * libc/stdio/tmpfile.c (_tmpfile_r): Avoid window between filename
490 generation and opening the fd.
491 * libc/stdio64/tmpfile64.c (_tmpfile64_r): Likewise.
492
493 * libc/include/math.h (INFINITY, NAN, FP_ILOGB0, FP_ILOGBNAN)
494 (MATH_ERRNO, MATH_ERREXCEPT, math_errhandling): Add macros
495 required by POSIX.
496 * libc/stdlib/ldtoa.c (USE_INFINITY): Rename from INFINITY, to
497 avoid clash with <math.h>.
498
499 * libc/stdlib/wctomb_r.c (_wctomb_r): Avoid gcc warnings on cygwin.
500 * libc/search/hash.c (__hash_open): Likewise.
501
502 2007-05-14 Eric Blake <ebb9@byu.net>
503
504 Reduce stack size of *printf.
505 * libc/stdio/vfprintf.c (_VFPRINTF_R): Fix use of decimal point
506 in %f. Avoid malloc when possible for %S.
507 (BUF): Improve stack locality by using smaller size.
508 (MAXEXPLEN, _PRINTF_FLOAT_TYPE): Define.
509 (exponent): Use smaller stack size.
510
511 2007-05-11 Eric Blake <ebb9@byu.net>
512
513 Minimize printf/scanf size on platforms that don't need C99.
514 * acconfig.h (_WANT_IO_C99_FORMATS): New macro.
515 * newlib.hin (_WANT_IO_C99_FORMATS): Likewise.
516 * configure.in (newlib-io-c99-formats): New configure option.
517 (_WANT_IO_C99_FORMATS): Define appropriately.
518 * configure.host (*-linux*, cygwin): Default c99-formats to yes.
519 * libc/stdio/vfprintf.c (_VFPRINTF_R) [!_WANT_IO_C99_FORMATS]:
520 Cripple ' flag; hh, z, j, t sizes; a, A, F, C, S specifiers.
521 * libc/stdio/vfscanf.c (_VFSCANF_R) [!_WANT_IO_C99_FORMATS]:
522 Likewise.
523 * configure: Regenerate.
524
525 * libc/stdio/vfprintf.c (_VFPRINTF_R, cvt, exponent, chclass)
526 (get_arg): Support '%a' and '%A'.
527
528 2007-05-09 Eric Blake <ebb9@byu.net>
529
530 Allow zero size with non-null buf in *asnprintf.
531 * libc/stdio/asnprintf.c (_asnprintf_r, asnprintf): Avoid free'ing
532 user's buf.
533 * libc/stdio/asniprintf.c (_asniprintf_r, asniprintf): Likewise.
534 * libc/stdio/vasniprintf.c (_vasniprintf_r): Likewise.
535 * libc/stdio/vasnprintf.c (_vasnprintf_r): Likewise.
536
537 2007-05-07 Charles Wilson <cygwin@...>
538
539 * libc/stdio/vfprintf.c: Fix typo in comments that breaks docs.
540
541 2007-05-03 Eric Blake <ebb9@byu.net>
542
543 Add support for asnprintf, and improve *printf documentation.
544 * libc/stdio/Makefile.am (ELIX_SOURCES): Rename...
545 (ELIX_2_SOURCES): ...to this.
546 (ELIX_4_SOURCES): Add new variable. Build asnprintf.
547 (GENERAL_SOURCES): Move dprintf to ELIX_4_SOURCES.
548 (CHEWOUT_FILES): Include diprintf in documentation.
549 * libc/stdio/Makefile.in: Regenerate.
550 * libc/stdio/diprintf.c: Improve documentation.
551 * libc/stdio/dprintf.c: Likewise.
552 * libc/stdio/siprintf.c: Likewise.
553 * libc/stdio/sprintf.c: Likewise.
554 * libc/stdio/vfprintf.c: Likewise.
555 * libc/stdio/viprintf.c: Likewise.
556 * libc/stdio/vsniprintf.c: Consolidate documentation.
557 * libc/stdio/asiprintf.c: Refer to documentation.
558 * libc/stdio/asprintf.c: Likewise.
559 * libc/stdio/fiprintf.c: Likewise.
560 * libc/stdio/fprintf.c: Likewise.
561 * libc/stdio/iprintf.c: Likewise.
562 * libc/stdio/printf.c: Likewise.
563 * libc/stdio/sniprintf.c: Likewise.
564 * libc/stdio/vdiprintf.c: Likewise.
565 * libc/stdio/vdprintf.c: Likewise.
566 * libc/stdio/vsiprintf.c: Likewise.
567 * libc/stdio/fvwrite.c (__sfvwrite_r): Handle asnprintf.
568 * libc/stdio/asniprintf.c (asniprintf, _asniprintf_r): New file.
569 * libc/stdio/asnprintf.c (asnprintf, _asnprintf_r): New file.
570 * libc/stdio/vasniprintf.c (vasniprintf, _vasniprintf_r): New
571 file.
572 * libc/stdio/vasnprintf.c (vasnprintf, _vasnprintf_r): New file.
573 * libc/stdio/vdprintf.c (_vdprintf_r): Rewrite to avoid malloc in
574 typical case.
575 * libc/stdio/vdiprintf.c (_vdiprintf_r): Likewise.
576 * libc/include/stdio.h: Add prototypes for new functions; sort
577 existing functions.
578
579 2007-05-03 Kazu Hirata <kazu@codesourcery.com>
580
581 * libc/machine/m68k/Makefile.am (lib_a_SOURCES): Add memcpy.S
582 and memset.S.
583 * libc/machine/m68k/Makefile.in: Regenerate.
584 * libc/machine/m68k/memcpy.S: Use sub.l followed by dbra.
585 * libc/machine/m68k/memset.S: Likewise.
586
587 2007-05-01 Eric Blake <ebb9@byu.net>
588
589 * libc/stdio64/local64.h: Delete, move contents to...
590 * libc/stdio/local.h: ...here.
591 * libc/stdio64/fdopen64.c: Update includes.
592 * libc/stdio64/fopen64.c: Likewise.
593 * libc/stdio64/freopen64.c: Likewise.
594 * libc/stdio64/fseeko64.c: Likewise.
595 * libc/stdio64/ftello64.c: Likewise.
596 * libc/stdio/findfp.c (std) [__LARGE64_FILES]: Open stdin, stdout,
597 and stderr with 64-bit offset.
598 * libc/stdio/fseek.c (_fseek_r): Avoid compile warning.
599 * libc/stdio/makebuf.c (__smakebuf_r): Likewise.
600 * libc/stdio/mktemp.c (_gettemp): Likewise.
601
602 2007-05-01 Cary R. <cygcary <at> yahoo.com>
603
604 * libm/math/e_pow.c: Fix to be consistent with glibc with regards
605 to treatment of NaN and +-inf arguments.
606 * libm/math/ef_pow.c: Ditto.
607 * libm/math/w_pow.c: Ditto.
608 * libm/math/wf_pow.c: Ditto.
609 * libm/math/w_acos.c: Fix domain errors to return NaN.
610 * libm/math/w_asin.c: Ditto.
611 * libm/math/wf_acos.c: Ditto.
612 * libm/math/wf_asin.c: Ditto.
613 * libm/math/w_log.c: Fix to return NaN for negative number inputs.
614 * libm/math/wf_log.c: Ditto.
615 * libm/math/wf_log10.c: Ditto.
616 * libm/math/w_log10.c: Ditto.
617
618 2007-04-27 Jeff Johnston <jjohnstn@redhat.com>
619
620 * libc/machine/m68k/Makefile.am: Temporarily remove
621 memcpy.S and memset.S until logic can be confirmed for
622 !(__mcoldfile__) case.
623 * libc/machine/m68k/Makefile.in: Regenerated.
624
625 2007-04-27 Kazu Hirata <kazu@codesourcery.com>
626
627 * libc/machine/m68k/Makefile.am (lib_a_SOURCES): Add memcpy.S
628 and memset.S.
629 * libc/machine/m68k/Makefile.in: Regenerate.
630 * libc/machine/m68k/memcpy.S, libc/machine/m68k/memset.S: New.
631
632 2007-04-26 Patrick Mansfield <patmans@us.ibm.com>
633
634 * libc/include/ieeefp.h: use prefixed __ieeefp_ macros that can be
635 overridden via machine/ieeefp.h.
636 * libc/include/machine/ieeefp.h: Add SPU specific C99 and ieeefp
637 macros for isnan and related macros.
638 * libc/include/math.h: Allow C99 isfinite, isinf, and isnan to be
639 overridden via machine/ieeefp.h.
640 * libm/machine/spu/Makefile.am: Add new files.
641 * libm/machine/spu/Makefile.in: Autogenerate with new files.
642 * libm/machine/spu/sf_fpclassify.c: Add SPU specific __fpclassifyf.
643 * libm/machine/spu/sf_finite.c: Add SPU specific finitef.
644 * libm/machine/spu/sf_isinf.c: Add SPU specific isinff.
645 * libm/machine/spu/sf_isinff.c: Add SPU specific __isinff.
646 * libm/machine/spu/sf_isnan.c: Add SPU specific isnanf.
647 * libm/machine/spu/sf_isnanf.c: Add SPU specific __isnanf.
648 * libm/machine/spu/sf_nan.c: Add SPU specific nanf.
649
650 2007-04-25 Jeff Johnston <jjohnstn@redhat.com>
651
652 * libm/common/s_fpclassify.c (__fpclassifyf): Move this to...
653 * libm/common/sf_fpclassify.c: ...here. New file.
654 * libm/common/Makefile.am: Add sf_fpclassify.c.
655 * libm/common/Makefile.in: Regenerated.
656
657 2007-04-25 Patrick Mansfield <patmans@us.ibm.com>
658
659 * libc/machine/spu/sys/errno.h: New file, so spu errno values match
660 ppu linux values. This file is a copy of the cris/sys/errno.h plus
661 a few changes (see spu errno.h comments).
662
663 2007-04-25 Eric Blake <ebb9@byu.net>
664
665 * libc/stdio/vfprintf.c (get_arg): Support %1$lc. Simplify types
666 that promote to int.
667
668 2007-04-25 Patrick Mansfield <patmans@us.ibm.com>
669
670 * libm/machine/spu/headers/feholdexcept.h: Use *envp not env so
671 we clear the proper bits in the fpscr, and don't set some random ones.
672
673 2007-04-24 Eric Blake <ebb9@byu.net>
674
675 * libc/stdio/vfprintf.c (_VFPRINTF_R): Don't zero pad on infinity
676 or NaN with %05f.
677
678 * libc/stdio/vfprintf.c (_VFPRINTF_R): Avoid multibyte when not
679 _MB_CAPABLE.
680
681 * libc/include/limits.h (NL_ARGMAX): Define a default value.
682 * libc/stdio/vfprintf.c (MAX_POS_ARGS): Define in terms of
683 NL_ARGMAX, if present.
684
685 2007-04-23 Brian Dessent <brian@dessent.net>
686
687 * libc/stdio/vfprintf.c (_vfprintf_r): When the alternate-form flag
688 has been specified with types 'f', 'F', 'g', or 'G', ensure the
689 trailing decimal is printed.
690
691 2007-04-23 Ralf Wildenhues <Ralf.Wildenhues <at> gmx.de>
692
693 * confsubdir.m4 (AC_CONFIG_SUBDIRS, _AC_OUTPUT_SUBDIRS): New
694 file. Override Autoconf-2.59's version of these macros with
695 fixed handling of multiple adjacent whitespace in arguments.
696 * aclocal.m4: Regenerated forcefully.
697 * configure: Ditto.
698 * Makefile.in: Ditto.
699 * libc/*Makefile.in: Ditto.
700 * libc/*aclocal.m4: Ditto.
701 * libc/*configure: Ditto.
702 * libm/*Makefile.in: Ditto.
703 * libm/*aclocal.m4: Ditto.
704 * libm/*configure: Ditto.
705
706 2007-04-23 Jeff Johnston <jjohnstn@redhat.com>
707
708 * libc/sys/arc/dummy.S: Dummy file to force .S.o suffix rule.
709 * libc/sys/arc/Makefile.am: Add dummy.S to EXTRA_lib_a_SOURCES
710 and set lib_a_CCASFLAGS so crto.o will use .S.o default suffix rule.
711 * libc/sys/arc/Makefile.in: Regenerated.
712
713 2007-04-17 Brian Dessent <brian@dessent.net>
714
715 * libc/stdio/sscanf.c: Update documentation comments.
716 * libc/stdio/vfscanf.c (__SVFSCANF_R): Handle j, t, and z modifiers.
717
718 2007-04-12 Eric Blake <ebb9@byu.net>
719
720 * libc/stdio/vfprintf.c (_VFPRINTF_F, cvt): Don't confuse %F with %e.
721 (chclass): Recognize 'F', 'X', 'n', and not 'W'.
722 (get_arg): Handle %1$F, %1$n.
723
724 2007-04-10 Eric Blake <ebb9@byu.net>
725
726 * libc/include/stdio.h (_ELIDABLE_INLINE): Work even when using
727 CFLAGS=-O0.
728
729 2007-04-09 Eric Blake <ebb9@byu.net>
730
731 * libc/include/stdio.h: Add gcc format attributes to printf and
732 scanf families.
733
734 2007-04-09 Joel Schopp <jschopp@austin.ibm.com>
735
736 * libc/machine/spu/strxfrm.c: Fix strxfrm so we still copy data
737 even if the passed in length n is shorter than the source string.
738 This matches both the non-spu specific and the glibc strxfrm
739 behaviour.
740
741 2007-04-04 Mark Mitchell <mark@codesourcery.com>
742
743 * libc/stdlib/__call_atexit.c (__call_exitprocs): Handle atexit
744 functions registering additional atexit functions.
745
746 * testsuite/lib/flags.exp (newlib_include_flags): Drop
747 -I${newlib_dir}.
748
749 2007-04-04 Patrick Mansfield <patmans@us.ibm.com>
750
751 * libc/machine/spu/sys/syscall.h: New file for __send_to_ppe
752 prototype.
753 * libc/machine/spu/c99ppe.h: Remove static version of send_to_ppe.
754 * libc/machine/spu/clearerr.c: Call __send_to_ppe vs send_to_ppe.
755 * libc/machine/spu/fclose.c: Ditto.
756 * libc/machine/spu/feof.c: Ditto.
757 * libc/machine/spu/ferror.c: Ditto.
758 * libc/machine/spu/fflush.c: Ditto.
759 * libc/machine/spu/fgetc.c: Ditto.
760 * libc/machine/spu/fgetpos.c: Ditto.
761 * libc/machine/spu/fgets.c: Ditto.
762 * libc/machine/spu/fileno.c: Ditto.
763 * libc/machine/spu/fopen.c: Ditto.
764 * libc/machine/spu/fprintf.c: Ditto.
765 * libc/machine/spu/fputc.c: Ditto.
766 * libc/machine/spu/fputs.c: Ditto.
767 * libc/machine/spu/fread.c: Ditto.
768 * libc/machine/spu/freopen.c: Ditto.
769 * libc/machine/spu/fscanf.c: Ditto.
770 * libc/machine/spu/fseek.c: Ditto.
771 * libc/machine/spu/fsetpos.c: Ditto.
772 * libc/machine/spu/ftell.c: Ditto.
773 * libc/machine/spu/fwrite.c: Ditto.
774 * libc/machine/spu/getc.c: Ditto.
775 * libc/machine/spu/getchar.c: Ditto.
776 * libc/machine/spu/gets.c: Ditto.
777 * libc/machine/spu/perror.c: Ditto.
778 * libc/machine/spu/printf.c: Ditto.
779 * libc/machine/spu/putc.c: Ditto.
780 * libc/machine/spu/putchar.c: Ditto.
781 * libc/machine/spu/puts.c: Ditto.
782 * libc/machine/spu/remove.c: Ditto.
783 * libc/machine/spu/rename.c: Ditto.
784 * libc/machine/spu/rewind.c: Ditto.
785 * libc/machine/spu/scanf.c: Ditto.
786 * libc/machine/spu/setbuf.c: Ditto.
787 * libc/machine/spu/setvbuf.c: Ditto.
788 * libc/machine/spu/snprintf.c: Ditto.
789 * libc/machine/spu/sprintf.c: Ditto.
790 * libc/machine/spu/sscanf.c: Ditto.
791 * libc/machine/spu/tmpfile.c: Ditto.
792 * libc/machine/spu/tmpnam.c: Ditto.
793 * libc/machine/spu/ungetc.c: Ditto.
794 * libc/machine/spu/vfprintf.c: Ditto.
795 * libc/machine/spu/vfscanf.c: Ditto.
796 * libc/machine/spu/vprintf.c: Ditto.
797 * libc/machine/spu/vscanf.c: Ditto.
798 * libc/machine/spu/vsnprintf.c: Ditto.
799 * libc/machine/spu/vsprintf.c: Ditto.
800 * libc/machine/spu/vsscanf.c: Ditto.
801
802 2007-04-04 Jeff Johnston <jjohnstn@redhat.com>
803
804 * libc/argz/argz_insert.c: Add stddef.h to get ptrdiff_t type.
805
806 2007-04-04 Eric Blake <ebb9@byu.net>
807
808 * libc/stdio/asiprintf.c (_asiprintf_r): Fix reentrancy.
809 (asiprintf): Avoid overhead.
810 * libc/stdio/asprintf.c (_asprintf_r): Fix reentrancy.
811 (asprintf): Avoid overhead.
812 * libc/stdio/diprintf.c (_diprintf_r, diprintf): New file.
813 * libc/stdio/dprintf.c (_dprintf_r, dprintf): Use _DEFUN.
814 * libc/stdio/fiprintf.c (_fiprintf_r): Add reentrant version.
815 (fiprintf): Avoid overhead.
816 * libc/stdio/fprintf.c (_fprintf_r): Add reentrant version.
817 (fprintf): Avoid overhead.
818 * libc/stdio/iprintf.c (_iprintf_r): Use _DEFUN.
819 (iprintf): Avoid overhead.
820 * libc/stdio/printf.c (_printf_r): Use _DEFUN.
821 (printf): Avoid overhead.
822 * libc/stdio/vasiprintf.c (vasiprintf): Reduce binary size.
823 * libc/stdio/vasprintf.c (vasprintf): Reduce binary size.
824 * libc/stdio/vdiprintf.c (_vdiprintf_r, vdiprintf): New file.
825 * libc/stdio/vdprintf.c (vdprintf): Avoid overhead.
826 * libc/stdio/vsiprintf.c (vsiprintf): Reduce binary size.
827 * libc/stdio/vsniprintf.c (vsniprintf): Reduce binary size.
828 * libc/stdio/vsnprintf.c (vsnprintf): Reduce binary size.
829 * libc/stdio/vsprintf.c (vsprintf): Reduce binary size.
830 * libc/stdio/Makefile.am (GENERAL_SOURCES): Add diprintf.c,
831 vdiprintf.c.
832 * libc/include/stdio.h (diprintf, _diprintf_r, vdiprintf)
833 (_vdiprintf_r, _fiprintf_r, _vfiprintf_r): Add prototypes.
834
835 2007-03-30 Dave Korn <dave.korn@artimi.com>
836
837 * libc/include/stdio.h (_ELIDABLE_INLINE): New macro to conceal
838 conflicting inline semantics between C99 and GNU89.
839 (__sgetc_r): Replace static inline with _ELIDABLE_INLINE to be
840 compatible with -fkeep-inline-functions usage.
841 (__sputc_r): Likewise for consistency even though disabled.
842
843 2007-03-29 Nick Clifton <nickc@redhat.com>
844
845 Reflect changes made to generic vfprintf.c:
846 * libc/machine/powerpc/vfprintf.c (__sprint): Rename to __sprint_r
847 and add a "struct reent *" argument.
848 (__sbprintf): Rename to __sbprintf_r, add a "struct reent *"
849 argument and call _VFPRINTF_R instead of VFPRINTF.
850 (_VFPRINTF_R): Add data pointer to call to cantwrite().
851 Fix uses of __sprint() and __sbprintf.
852
853 2007-03-20 Nick Clifton <nickc@redhat.com>
854
855 Reflect changes made to generic vfprintf.c:
856 * libc/machine/powerpc/vfprintf.c (__sprint): Rename to __sprint_r
857 and add a "struct reent *" argument.
858 (__sbprintf): Rename to __sbprintf_r, add a "struct reent *"
859 argument and call _VFPRINTF_R instead of VFPRINTF.
860 (_VFPRINTF_R): Add data pointer to call to cantwrite().
861 Fix uses of __sprint() and __sbprintf.
862
863 2007-03-16 Charles Wilson <cygwin@...>
864
865 * libc/argz/argz_insert.c: "before" pointer is
866 invalid after *argz realloc. Compute offset
867 between "before" and *argz, and use it after
868 reallocation instead.
869
870 2007-03-16 Eric Blake <ebb9@byu.net>
871
872 * libc/stdio64/fseek064.c (_fseeko64_r): Fix reentrancy.
873 * libc/stdio64/freopen64.c (_freopen64_r): Ditto.
874
875 2007-03-15 Jeff Johnston <jjohnstn@redhat.com>
876
877 * configure.in: Add new --enable-newlib-reent-small option.
878 * configure: Regenerated.
879 * acconfig.h: Add _WANT_REENT_SMALL.
880 * newlib.hin: Regenerated minus PACKAGE macros to add
881 _WANT_REENT_SMALL macro.
882 * libc/include/sys/config.h[_WANT_REENT_SMALL]: Set _REENT_SMALL
883 if not already set.
884 * libc/stdio/fflush.c[_REENT_SMALL]: Return immediately if
885 there is no buffer.
886 * libc/stdio/local.h[_REENT_SMALL]: Fix CHECK_INIT macro to
887 use reentrant pointer passed in when resetting the file
888 pointer to one of the std streams.
889
890 2007-03-15 Eric Blake <ebb9@byu.net>
891
892 * libc/stdio/local.h (cantwrite, FREEUB, FREELB): Make reentrant.
893 (__smakebuf): Rename...
894 (__smakebuf_r): to this.
895 * libc/stdio/fvwrite.h (__swsetup_r): Rename, from __swsetup.
896 * libc/stdio/makebuf.c (__smakebuf): Detect failed asprint
897 allocation, then rename...
898 (__smakebuf_r): ...to this and fix reentrancy.
899 * libc/stdio/wsetup.c (__swsetup): Detect failed asprintf
900 allocation, then rename...
901 (__swsetup_r): ...to this and fix reentrancy.
902 * libc/stdio/fseek.c (_fseek_r): Fix reentrancy.
903 * libc/stdio/refill.c (__srefill_r): Likewise.
904 * libc/stdio/fclose.c (_fclose_r): Likewise.
905 * libc/stdio/fread.c (_fread_r): Likewise.
906 * libc/stdio/freopen.c (_freopen_r): Likewise.
907 * libc/stdio/wbuf.c (__swbuf_r): Likewise.
908 * libc/stdio64/fseeko64.c (_fseeko64_r): Likewise.
909 * libc/stdio/fvwrite.c (__sfvwrite_r): Set errno properly on
910 failed asprintf allocation, and fix reentrancy.
911 * libc/stdio/snprintf.c (snprintf, _snprintf_r): Report overflow,
912 as required by POSIX.
913 * libc/stdio/sniprintf.c (sniprintf, _sniprintf_r): Likewise.
914 * libc/stdio/vsnprintf.c (vsnprintf, _vsnprintf_r): Likewise.
915 * libc/stdio/vsniprintf.c (vsniprintf, _vsniprintf_r): Likewise.
916
917 2007-03-12 Eric Blake <ebb9@byu.net>
918
919 * libc/stdio/fvwrite.c (__sfvwrite_r): Fix reentrancy.
920 * libc/stdio/vasprintf.c (vasprintf, _vasprintf_r): Pass failed
921 allocation to caller.
922 * libc/stdio/asprintf.c (_asprintf_r, asprintf): Likewise.
923 * libc/stdio/asiprintf.c (_asiprintf_r, asiprintf): Likewise.
924 * libc/stdio/vasiprintf.c (vasiprintf, _vasiprintf_r): Likewise.
925
926 2007-02-23 Jeff Johnston <jjohnstn@redhat.com>
927
928 * libm/math/w_pow.c: Fix typo in documentation comment.
929
930 2007-02-21 Patrick Mansfield <patmans@us.ibm.com>
931
932 * libc/reent/timer.c: Removed (split into two new files).
933 * libc/reent/timesr.c: New file for _times_r.
934 * libc/reent/gettimeofdayr.c: New file out _gettimeofday_r.
935 * reent/Makefile.in: Remove timer.c, add timesr.c and
936 gettimeofdayr.c.
937 * libc/reent/Makefile.am: Regenerate.
938
939 2007-02-20 Patrick Mansfield <patmans@us.ibm.com>
940
941 * configure.host: Build SPU with default_newlib_atexit_dynamic_alloc="no".
942
943 2007-02-20 Kazunori Asayama <asayama@sm.sony.co.jp>
944
945 * libc/machine/spu/Makefile.am: Add new objects.
946 * libc/machine/spu/Makefile.in: Regenerated.
947 * libc/machine/spu/fiprintf.c: New file. Add implementation of
948 integer-only version.
949 * libc/machine/spu/fiscanf.c: Ditto.
950 * libc/machine/spu/iprintf.c: Ditto.
951 * libc/machine/spu/iscanf.c: Ditto.
952 * libc/machine/spu/siprintf.c: Ditto.
953 * libc/machine/spu/siscanf.c: Ditto.
954 * libc/machine/spu/sniprintf.c: Ditto.
955 * libc/machine/spu/vfiprintf.c: Ditto.
956 * libc/machine/spu/vfiscanf.c: Ditto.
957 * libc/machine/spu/viprintf.c: Ditto.
958 * libc/machine/spu/viscanf.c: Ditto.
959 * libc/machine/spu/vsiprintf.c: Ditto.
960 * libc/machine/spu/vsiscanf.c: Ditto.
961 * libc/machine/spu/vsniprintf.c: Ditto.
962 * libc/machine/spu/fprintf.c: Add support for integer-only
963 version.
964 * libc/machine/spu/fscanf.c: Ditto.
965 * libc/machine/spu/printf.c: Ditto.
966 * libc/machine/spu/scanf.c: Ditto.
967 * libc/machine/spu/snprintf.c: Ditto.
968 * libc/machine/spu/sprintf.c: Ditto.
969 * libc/machine/spu/sscanf.c: Ditto.
970 * libc/machine/spu/vfprintf.c: Ditto.
971 * libc/machine/spu/vfscanf.c: Ditto.
972 * libc/machine/spu/vprintf.c: Ditto.
973 * libc/machine/spu/vscanf.c: Ditto.
974 * libc/machine/spu/vsnprintf.c: Ditto.
975 * libc/machine/spu/vsprintf.c: Ditto.
976 * libc/machine/spu/vsscanf.c: Ditto.
977
978 2007-02-20 Kazunori Asayama <asayama@sm.sony.co.jp>
979
980 * libc/include/stdio.h: Add declaration for vsiprintf.
981
982 2007-02-14 Patrick Mansfield <patmans@us.ibm.com>
983
984 Add a floating point environment for SPU (cell):
985
986 * configure.host: add libm_machine_dir=spu.
987 * libm/machine/configure: Add spu.
988 * libm/machine/configure.in: regenerated with spu added.
989 * libc/machine/spu/include/fenv.h: New file.
990 * libc/machine/spu/sys/fenv.h: Ditto.
991 * libm/machine/spu/Makefile.am: Ditto.
992 * libm/machine/spu/Makefile.in: Ditto.
993 * libm/machine/spu/aclocal.m4: Ditto.
994 * libm/machine/spu/configure: Ditto.
995 * libm/machine/spu/configure.in: Ditto.
996 * libm/machine/spu/fe_dfl_env.c: Ditto.
997 * libm/machine/spu/feclearexcept.c: Ditto.
998 * libm/machine/spu/fegetenv.c: Ditto.
999 * libm/machine/spu/fegetexceptflag.c: Ditto.
1000 * libm/machine/spu/fegetround.c: Ditto.
1001 * libm/machine/spu/feholdexcept.c: Ditto.
1002 * libm/machine/spu/feraiseexcept.c: Ditto.
1003 * libm/machine/spu/fesetenv.c: Ditto.
1004 * libm/machine/spu/fesetexceptflag.c: Ditto.
1005 * libm/machine/spu/fesetround.c: Ditto.
1006 * libm/machine/spu/fetestexcept.c: Ditto.
1007 * libm/machine/spu/feupdateenv.c: Ditto.
1008 * libm/machine/spu/headers/feclearexcept.h: Ditto.
1009 * libm/machine/spu/headers/fefpscr.h: Ditto.
1010 * libm/machine/spu/headers/fegetenv.h: Ditto.
1011 * libm/machine/spu/headers/fegetexceptflag.h: Ditto.
1012 * libm/machine/spu/headers/fegetround.h: Ditto.
1013 * libm/machine/spu/headers/feholdexcept.h: Ditto.
1014 * libm/machine/spu/headers/feraiseexcept.h: Ditto.
1015 * libm/machine/spu/headers/fesetenv.h: Ditto.
1016 * libm/machine/spu/headers/fesetexceptflag.h: Ditto.
1017 * libm/machine/spu/headers/fesetround.h: Ditto.
1018 * libm/machine/spu/headers/fetestexcept.h: Ditto.
1019 * libm/machine/spu/headers/feupdateenv.h: Ditto.
1020
1021 2007-02-14 Corinna Vinschen <corinna@vinschen.de>
1022
1023 * libc/include/sys/features.h: Add _POSIX_MESSAGE_PASSING for
1024 Cygwin.
1025
1026 2007-02-08 Corinna Vinschen <corinna@vinschen.de>
1027
1028 * libc/include/sys/features.h: Add _POSIX_SHARED_MEMORY_OBJECTS for
1029 Cygwin. Fix value of _POSIX_SEMAPHORES. Fix formatting.
1030
1031 2007-02-07 Corinna Vinschen <corinna@vinschen.de>
1032
1033 * libc/include/sys/features.h: Add definition of all supported
1034 _POSIX_xxx values for Cygwin.
1035 * libc/include/sys/types.h (pthread_rwlock_t): Omit definition
1036 on Cygwin.
1037 (pthread_rwlockattr_t): Ditto.
1038 * libc/include/sys/unistd.h: Define all _SC_xxx values as
1039 required by SUSv3. Unify formatting.
1040
1041 2007-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>
1042
1043 * libc/include/sys/errno.h: Add ECANCELED.
1044
1045 2007-02-01 Joel Schopp <jschopp@austin.ibm.com>
1046 Kazunori Asayama <asayama@sm.sony.co.jp>
1047
1048 * libc/machine/spu/Makefile.am: Add objects.
1049 * libc/machine/spu/Makefile.in: Regenerated.
1050 * libc/machine/spu/vsscanf.c: New file. Add a stdio function
1051 implementation.
1052 * libc/machine/spu/snprintf.c: Ditto.
1053 * libc/machine/spu/sprintf.c: Ditto.
1054 * libc/machine/spu/sscanf.c: Ditto.
1055 * libc/machine/spu/remove.c: Ditto.
1056 * libc/machine/spu/rename.c: Ditto.
1057 * libc/machine/spu/tmpnam.c: Ditto.
1058 * libc/machine/spu/vsnprintf.c: Add initialization routine of
1059 stdio stuffs.
1060 * libc/machine/spu/vsprintf.c: Ditto.
1061
1062 2007-02-01 Joel Schopp <jschopp@austin.ibm.com>
1063 Kazunori Asayama <asayama@sm.sony.co.jp>
1064
1065 * configure.host: Enable SPU specific stdio directory.
1066 * libc/machine/spu/Makefile.am: Add objects.
1067 * libc/machine/spu/Makefile.in: Regenerated.
1068 * libc/machine/spu/c99ppe.h: Add macros and function
1069 declarations to initialize SPU specific stdio stuffs.
1070 * libc/machine/spu/stdio.c: Add functions to manage Cell SPU
1071 specific FILE structures.
1072 * libc/machine/spu/perror.c: Add initialization routine of
1073 stdio stuffs.
1074 * libc/machine/spu/printf.c: Ditto.
1075 * libc/machine/spu/putchar.c: Ditto.
1076 * libc/machine/spu/puts.c: Ditto.
1077 * libc/machine/spu/vprintf.c: Ditto.
1078 * libc/machine/spu/clearerr.c: New file. Add a stdio function
1079 implementation.
1080 * libc/machine/spu/feof.c: Ditto.
1081 * libc/machine/spu/ferror.c: Ditto.
1082 * libc/machine/spu/fileno.c: Ditto.
1083 * libc/machine/spu/fopen.c: Ditto.
1084 * libc/machine/spu/fclose.c: Ditto.
1085 * libc/machine/spu/freopen.c: Ditto.
1086 * libc/machine/spu/fflush.c: Ditto.
1087 * libc/machine/spu/fseek.c: Ditto.
1088 * libc/machine/spu/ftell.c: Ditto.
1089 * libc/machine/spu/rewind.c: Ditto.
1090 * libc/machine/spu/fgetpos.c: Ditto.
1091 * libc/machine/spu/fsetpos.c: Ditto.
1092 * libc/machine/spu/fread.c: Ditto.
1093 * libc/machine/spu/fwrite.c: Ditto.
1094 * libc/machine/spu/getc.c: Ditto.
1095 * libc/machine/spu/getchar.c: Ditto.
1096 * libc/machine/spu/gets.c: Ditto.
1097 * libc/machine/spu/fgetc.c: Ditto.
1098 * libc/machine/spu/fgets.c: Ditto.
1099 * libc/machine/spu/ungetc.c: Ditto.
1100 * libc/machine/spu/putc.c: Ditto.
1101 * libc/machine/spu/fputc.c: Ditto.
1102 * libc/machine/spu/fputs.c: Ditto.
1103 * libc/machine/spu/vfprintf.c: Ditto.
1104 * libc/machine/spu/vfscanf.c: Ditto.
1105 * libc/machine/spu/fprintf.c: Ditto.
1106 * libc/machine/spu/fscanf.c: Ditto.
1107 * libc/machine/spu/scanf.c: Ditto.
1108 * libc/machine/spu/vscanf.c: Ditto.
1109 * libc/machine/spu/setbuf.c: Ditto.
1110 * libc/machine/spu/setvbuf.c: Ditto.
1111 * libc/machine/spu/tmpfile.c: Ditto.
1112
1113 2007-02-01 Jeff Johnston <jjohnstn@redhat.com>
1114
1115 * libc/include/sys/config.h[__SPU__]: Define __CUSTOM_FILE_IO__.
1116 * libc/include/stdio.h[!__CUSTOM_FILE_IO__]: Add flag check
1117 around stdio macros that manipulate fields in the normal file
1118 structure.
1119 * libc/include/sys/reent.h[__CUSTOM_FILE_IO__]: Include
1120 <sys/custom_file.h> to define custom FILE structure.
1121 * libc/include/sys/custom_file.h: New default header file
1122 that generates error if not overridden when __CUSTOM_FILE_IO__ set.
1123 * libc/machine/spu/sys/custom_file.h: New file.
1124
1125 2007-01-31 Kazunori Asayama <asayama@sm.sony.co.jp>
1126
1127 * configure.host: Define stdio directory as a variable.
1128 * libc/Makefile.am: Define stdio related names
1129 as macros.
1130 * libc/configure.in: Add detection routine of stdio directory.
1131 * libc/Makefile.in: Regenerated.
1132 * libc/configure: Ditto.
1133 * libc/argz/Makefile.in: Ditto.
1134 * libc/ctype/Makefile.in: Ditto.
1135 * libc/errno/Makefile.in: Ditto.
1136 * libc/iconv/Makefile.in: Ditto.
1137 * libc/iconv/ccs/Makefile.in: Ditto.
1138 * libc/iconv/ccs/binary/Makefile.in: Ditto.
1139 * libc/iconv/ces/Makefile.in: Ditto.
1140 * libc/iconv/lib/Makefile.in: Ditto.
1141 * libc/locale/Makefile.in: Ditto.
1142 * libc/misc/Makefile.in: Ditto.
1143 * libc/posix/Makefile.in: Ditto.
1144 * libc/reent/Makefile.in: Ditto.
1145 * libc/search/Makefile.in: Ditto.
1146 * libc/signal/Makefile.in: Ditto.
1147 * libc/stdio/Makefile.in: Ditto.
1148 * libc/stdio64/Makefile.in: Ditto.
1149 * libc/stdlib/Makefile.in: Ditto.
1150 * libc/string/Makefile.in: Ditto.
1151 * libc/syscalls/Makefile.in: Ditto.
1152 * libc/time/Makefile.in: Ditto.
1153 * libc/unix/Makefile.in: Ditto.
1154
1155 2007-01-30 Ben Elliston <bje@au.ibm.com>
1156
1157 * libc/machine/spu/vsnprintf.c (c99_vsnprintf_t): Const-qualify
1158 fmt member.
1159 * libc/machine/spu/printf.c (c99_printf_t): Likewise.
1160 (printf): Pass fmt to va_start to suppress a warning.
1161
1162 * libc/search/hash.c (init_hash): Make `info' parameter const.
1163
1164 2007-01-19 Kazunori Asayama <asayama@sm.sony.co.jp>
1165
1166 * libc/machine/spu/c99ppe.h: Replace vector with __vector.
1167 * libc/machine/spu/vec_literal.h: Ditto.
1168 * libc/machine/spu/strncmp.c: Ditto.
1169
1170 2007-01-15 Joseph Myers <joseph@codesourcery.com>
1171 Kazu Hirata <kazu@codesourcery.com>
1172
1173 * libc/machine/powerpc/setjmp.S (setjmp, longjmp): Add support
1174 for E500V1 and E500V2.
1175
1176 2007-01-11 Jeff Johnston <jjohnstn@redhat.com>
1177
1178 * libm/configure.in: Always configure machine directory.
1179 * libm/Makefile.am: Make machine subdirectory part of SUBDIRS
1180 unconditionally.
1181 * libm/configure: Regenerated.
1182 * libm/Makefile.in: Ditto.
1183 * libm/*/Makefile.in: Ditto.
1184
1185 2007-01-05 Brian Ford <Brian.Ford@FlightSafety.com>
1186
1187 * configure.host (*-*-cygwin*): Define HAVE_BLKSIZE.
1188
1189 2007-01-02 Ben Elliston <bje@au.ibm.com>
1190
1191 * doc/makedoc.c: Include <stdlib.h>.
1192 (malloc, realloc): Remove extern declarations.
1193
1194 2005-12-18 Jeff Johnston <jjohnstn@redhat.com>
1195
1196 * NEWS: Update with 1.15.0 info.
1197 * README: Ditto.
1198 * acinclude.m4: Change version number to 1.15.0.
1199 * aclocal.m4: Regenerated.
1200 * configure: Ditto.
1201 * doc/aclocal.m4: Ditto.
1202 * doc/configure: Ditto.
1203 * libc/*/aclocal.m4: Ditto.
1204 * libc/*/configure: Ditto.
1205 * libc/libc.texinfo: Ditto.
1206 * libm/*/aclocal.m4: Ditto.
1207 * libm/*/configure: Ditto.
1208 * libm/libm.texinfo: Ditto.
1209 * libc/sys/linux/shared.ld: Add VERS_1.15.
1210
1211 2006-12-18 Kazu Hirata <kazu@codesourcery.com>
1212
1213 Merge from newlib-csl-20060320-branch:
1214 2006-12-01 Nathan Sidwell <nathan@codesourcery.com>
1215 Kazu Hirata <kazu@codesourcery.com>
1216
1217 * configure.host: Recognize fido.
1218
1219 2006-12-18 Joel Schopp <jschopp@austin.ibm.com>
1220
1221 * libc/machine/spu/c99ppe.h: New file
1222 * libc/machine/spu/perror.c: New file to override libc/stdio version.
1223 * libc/machine/spu/printf.c: New file
1224 * libc/machine/spu/putchar.c: New file
1225 * libc/machine/spu/puts.c: New file
1226 * libc/machine/spu/vprintf.c: New file
1227 * libc/machine/spu/vsnprintf.c: New file
1228 * libc/machine/spu/vsprintf.c: New file
1229 * libc/machine/spu/Makefile.am: Add new targets.
1230 * libc/machine/spu/Makefile.in: Regenerated.
1231
1232 2006-12-18 Jeff Johnston <jjohnstn@redhat.com>
1233
1234 * aclocal.m4 */aclocal.m4: Regenerated using aclocal 1.9.6.
1235 * Makefile.in */Makefile.in: Regenerated using automake 1.9.6.
1236
1237 2006-12-18 Jeff Johnston <jjohnstn@redhat.com>
1238
1239 * libc/stdlib/mallocr.c (malloc_extend_top): Add patch from
1240 2.6.5 version of Doug Lea's malloc which is the basis of
1241 this code.
1242
1243 2006-12-18 Kazunori Asayama <asayama@sm.sony.co.jp>
1244
1245 * libc/include/machine/setjmp.h[__SPU__]: Replace vector with __vector.
1246
1247 2006-12-14 Jeff Johnston <jjohnstn@redhat.com>
1248 Eric Blake <ebb9@byu.net>
1249
1250 * libc/stdio/fflush.c (fflush): On seekable streams, always flush
1251 read but unused data.
1252 * libc/stdio/fclose.c (_fclose_r): Always flush streams, since
1253 even read streams may have side effects that must happen.
1254
1255 2006-12-13 Joel Schopp <jschopp@austin.ibm.com>
1256
1257 * libc/machine/spu/setjmp.S: Fix to handle registers past 115
1258 correctly.
1259
1260 2006-12-13 Joel Schopp <jschopp@austin.ibm.com>
1261
1262 * libc/include/alloca.h: Add undef alloca to work with xlc.
1263
1264 2006-12-12 Joel Schopp <jschopp@austin.ibm.com>
1265
1266 * libc/include/machine/setjmp.h[__SPU__]: Redefine _JBTYPE for
1267 cell spu.
1268
1269 2006-12-04 Kazunori Asayama <asayama@sm.sony.co.jp>
1270
1271 * libc/machine/spu/strncpy.c: Add padding.
1272
1273 2006-12-04 Kazunori Asayama <asayama@sm.sony.co.jp>
1274
1275 * testsuite/newlib.string/tstring.c:
1276
1277 2006-12-01 Kazunori Asayama <asayama@sm.sony.co.jp>
1278
1279 * libc/machine/spu/strchr.c: Fix mask for misaligned string.
1280 * libc/machine/spu/strrchr.c: Ditto.
1281
1282 2006-11-30 Lev Bishop <lev.bishop@gmail.com>
1283
1284 * libc/include/math.h: Allow C99 functions/macros to be
1285 defined for C++ even when __STRICT_ANSI__.
1286
1287 2006-11-29 Jeff Johnston <jjohnstn@redhat.com>
1288
1289 * libc/stdio/makebuf.c (__smakebuf): If dealing with
1290 an asprintf-family buffer, make the default initial size 64.
1291
1292 2006-11-29 Eric Blake <ebb9@byu.net>
1293
1294 * libc/stdio/fvwrite.c (__sfvwrite_r): Avoid off-by-one error in
1295 asprintf, as well as quadratic realloc behavior.
1296
1297 2006-11-29 Kazunori Asayama <asayama@sm.sony.co.jpi
1298
1299 * libc/machine/spu/memset.c: Fix type of explicit cast.
1300 * libc/machine/spu/strncmp.c: Add explicit cast.
1301 * libc/machine/spu/strrchr.c: Ditto.
1302 * libc/machine/spu/strspn.c: Ditto.
1303
1304 2006-11-22 Luca Barbato <lu_zero@gentoo.org>
1305
1306 * libc/machine/spu/memcpy.c: Use spu_splats, explicit cast.
1307 * libc/machine/spu/memmove.c: Use spu_splats, explicit cast.
1308 * libc/machine/spu/memset.c: Use spu_splats, remove apple-cast.
1309 * libc/machine/spu/strchr.c: Use spu_splats, remove apple-cast.
1310 * libc/machine/spu/strncat.c: Explicit cast.
1311 * libc/machine/spu/strncmp.c: Use spu_splats.
1312 * libc/machine/spu/strncpy.c: Explicit cast.
1313 * libc/machine/spu/strrchr.c: Use spu_splats.
1314 * libc/machine/spu/strspn.c: Use spu_splats.
1315
1316 2006-11-15 Till Straumann <strauman@slac.stanford.edu>
1317
1318 * libc/time/tzset_r.c (_tzset_r): Initialize local variable.
1319
1320 2006-11-14 Eric Blake <ebb9@byu.net>
1321
1322 * libc/stdio/vfprintf.c (_vfprintf_r): Support ' flag.
1323 (chclass): ' is a flag. j, t, and z are modifiers.
1324
1325 2006-11-08 Jie Zhang <jie.zhang@analog.com>
1326
1327 * configure.host: Add support for bfin.
1328 * libc/include/machine/ieeefp.h: Define __IEEE_LITTLE_ENDIAN for bfin.
1329 * libc/include/machine/setjmp.h: Define _JBLEN for bfin.
1330 * libc/machine/bfin/aclocal.m4: Generate.
1331 * libc/machine/bfin/configure.in: New.
1332 * libc/machine/bfin/configure: Generate.
1333 * libc/machine/bfin/Makefile.am: New.
1334 * libc/machine/bfin/Makefile.in: Generate.
1335 * libc/machine/bfin/setjmp.S: New.
1336 * libc/machine/bfin/longjmp.S: New.
1337 * libc/machine/configure.in: Add bfin support.
1338 * libc/machine/configure: Generate.
1339
1340 2006-11-07 Corinna Vinschen <corinna@vinschen.de>
1341
1342 * libc/include/sys/unistd.h (_SC_STREAM_MAX): Define on Cygwin.
1343 (_PC_FILESIZEBITS): Add definition.
1344 (_PC_2_SYMLINKS): Ditto.
1345 (_PC_SYMLINK_MAX): Ditto.
1346
1347 2006-10-27 Joel Schopp <jschopp@austin.ibm.com>
1348
1349 * libc/machine/spu/memcpy.c: Override generic function with vectorized
1350 version optimized for the cell spu.
1351 * libc/machine/spu/memmove.c: Ditto.
1352 * libc/machine/spu/memset.c: Ditto.
1353 * libc/machine/spu/strcat.c: Ditto.
1354 * libc/machine/spu/strchr.c: Ditto.
1355 * libc/machine/spu/strcmp.c: Ditto.
1356 * libc/machine/spu/strcpy.c: Ditto.
1357 * libc/machine/spu/strcspn.c: Ditto.
1358 * libc/machine/spu/strlen.c: Ditto.
1359 * libc/machine/spu/strncat.c: Ditto.
1360 * libc/machine/spu/strncmp.c: Ditto.
1361 * libc/machine/spu/strncpy.c: Ditto.
1362 * libc/machine/spu/strpbrk.c: Ditto.
1363 * libc/machine/spu/strrchr.c: Ditto.
1364 * libc/machine/spu/strspn.c: Ditto.
1365 * libc/machine/spu/strxfrm.c: Ditto.
1366 * libc/machine/spu/vec_literal.h: Add abstraction of vector literals,
1367 removing altivec style initializers.
1368 * libc/machine/spu/Makefile.am: Add new files to list so they build
1369 * libc/machine/spu/Makefile.in: Regenerate from new Makefile.am
1370
1371 2006-10-27 Jeff Johnston <jjohnstn@redhat.com>
1372
1373 * README: Add a brief section on how to regenerate
1374 configuration files in newlib.
1375
1376 2006-10-25 Vladimir Prus <vladimir@codesourcery.com>
1377
1378 * libc/include/math.h: (exception): Add a comment
1379 telling fixincludes that we handle C vs. C++ issue.
1380
1381 2006-10-11 Yang Tse <yangsita@gmail.com>
1382
1383 * libc/include/machine/setjmp.h: Use __extension__ keyword for gcc's
1384 braced-groups.
1385
1386 2006-10-11 Corinna Vinschen <corinna@vinschen.de>
1387
1388 * libc/reent/reeent.c (_reclaim_reent): Free _REENT_MP_RESULT.
1389
1390 2006-09-26 Jeff Johnston <jjohnstn@redhat.com>
1391
1392 * libc/include/stdio.h[_REENT_SMALL]: Do not allow macros
1393 for clearerr, feof, or fileno.
1394 * libc/include/sys/reent.h[_REENT_SMALL](struct _reent): Change
1395 the dummy std stream scheme to use pointers to const external
1396 fake files, one for each standard stream.
1397 * libc/stdio/local.h (CHECK_INIT): Change to take a file pointer
1398 argument. For _REENT_SMALL, reset the file pointer if it
1399 matches one of the fake std stream pointers.
1400 * libc/stdio/clearerr.c: Fix CHECK_INIT macro to add file pointer
1401 argument.
1402 * libc/stdio/fclose.c: Ditto.
1403 * libc/stdio/feof.c: Ditto.
1404 * libc/stdio/ferror.c: Ditto.
1405 * libc/stdio/fflush.c: Ditto.
1406 * libc/stdio/fgetc.c: Ditto.
1407 * libc/stdio/fgets.c: Ditto.
1408 * libc/stdio/fileno.c: Ditto.
1409 * libc/stdio/findfp.c: Ditto.
1410 * libc/stdio/fputc.c: Ditto.
1411 * libc/stdio/fputs.c: Ditto.
1412 * libc/stdio/fread.c: Ditto.
1413 * libc/stdio/freopen.c: Ditto.
1414 * libc/stdio/fseek.c: Ditto.
1415 * libc/stdio/ftell.c: Ditto.
1416 * libc/stdio/fwrite.c: Ditto.
1417 * libc/stdio/getc.c: Ditto.
1418 * libc/stdio/getdelim.c: Ditto.
1419 * libc/stdio/putc.c: Ditto.
1420 * libc/stdio/refill.c: Ditto.
1421 * libc/stdio/setvbuf.c: Ditto.
1422 * libc/stdio/ungetc.c: Ditto.
1423 * libc/stdio/vfprintf.c: Ditto.
1424 * libc/stdio/vfscanf.c: Ditto.
1425 * libc/stdio/wbuf.c: Ditto.: Ditto.
1426 * libc/stdio/wsetup.c: Ditto.
1427 * libc/stdio64/freopen64.c: Ditto.
1428 * libc/stdio64/fseeko64.c: Ditto.
1429 * libc/stdio64/ftello64.c: Ditto.
1430 * libc/machine/powerpc/vfprintf.c: Ditto.
1431 * libc/machine/powerpc/vfscanf.c: Ditto.
1432
1433 2006-09-22 Paul Brook <paul@codesourcery.com>
1434
1435 * libc/include/sys/reent.h: Define and use __reent_assert.
1436
1437 2006-09-13 Joel Sherrill <joel@oarcorp.com>
1438
1439 * libc/include/pthread.h: Add pthread barriers,
1440 rwlocks, and spinlocks. Change const to
1441 _CONST and prefix parameter names with
1442 an underscore.
1443 * libc/include/sys/types.h: Add id and attribute
1444 types for barriers, wrlocks, and spinlocks.
1445 * libc/include/sys/features.h: Enable barriers,
1446 wrlocks, and spinlocks for RTEMS.
1447
1448 2006-09-13 Patrick Mansfield <patmans@us.ibm.com>
1449
1450 * libc/include/math.h: Remove _CONST from _LIB_VERSION, as it is
1451 supposed to be writable.
1452 * libm/common/s_lib_ver.c: Ditto.
1453
1454 2006-09-12 Paul Brook <paul@codesourcery.com>
1455
1456 * libc/stdlib/rand.c (srand): Add _REENT_CHECK_RAND48.
1457
1458 2006-09-07 Masaki Muranaka <monaka@monami-software.com>
1459
1460
1461 * libc/machine/xstormy16/Makefile.am:
1462 Add $(lpfx) prefix to LIBADD objects.
1463 lib_a_DEPENDENCIES uses the value of lib_a_LIBADD.
1464 * libc/machine/xstormy16/Makefile.in: Regenerated.
1465
1466 2006-09-06 Eric Blake <ebb9@byu.net>
1467
1468 * libc/stdio/vfprintf.c (_vfprintf_r, get_arg): Add 'hh', 'j',
1469 't', and 'z' modifiers.
1470
1471 2006-09-01 Kazu Hirata <kazu@codesourcery.com>
1472
1473 Merge from newlib-csl-20060320-branch:
1474 2006-05-22 Sandra Loosemore <sandra@codesourcery.com>
1475
1476 * configure.host: Tell it we have _rename and _system when
1477 building m68k-unknown-elf.
1478
1479 2006-08-29 Paul Brook <paul@codesourcery.com>
1480
1481 * libc/include/sys/config.h: Define _REENT_SMALL for Thumb-2.
1482
1483 2006-08-27 Joel Sherrill <joel.sherrill@OARcorp.com>
1484
1485 * libc/sys/rtems/machine/sys/param.h: Conditionalize definition of
1486 BLKDEV_IOSIZE and MAXPHYS so it will fit into small memory targets.
1487 This is needed to build all AVR and H8300 RTEMS multilib variants.
1488
1489 2006-08-23 Kazunori Asayama <asayama@sm.sony.co.jp>
1490
1491 * libc/machine/configure.in: Add configuration for SPU.
1492 * libc/machine/configure: Regenerated.
1493 * libc/machine/spu/memcpy.c: Include string.h.
1494
1495 2006-08-22 Eric Blake <ebb9@byu.net>
1496
1497 * libc/posix/popen.c (popen): Don't close output end of pipe in
1498 child if stdout was closed on entry.
1499 [HAVE_FCNTL]: In parent, mark file as close-on-exec, per POSIX.
1500
1501 2006-08-19 Ramana Radhakrishnan <ramana.r@gmail.com>
1502
1503 * sys/types.h: Correct syntax error caused by missing '\' on #ifdef
1504 line.
1505
1506 2006-08-17 Brian Ford <Brian.Ford@FlightSafety.com>
1507
1508 * libc/time/gmtime.c: Correct man page; clock is not a
1509 local time and no conversion occurs.
1510
1511 2006-08-16 Joel Schopp <jschopp@austin.ibm.com>
1512
1513 * configure.host (newlib_cflags) [spu]: Add special compiler
1514 options to reduce size.
1515
1516 2006-08-16 Joel Schopp <jschopp@austin.ibm.com>
1517
1518 * configure.host: Add spu support.
1519 * libc/include/stdint.h: Ditto.
1520 * libc/include/machine/ieeefp.h: Ditto.
1521 * libc/include/machine/setjmp.h: Ditto.
1522 * libc/include/sys/config.h: Ditto.
1523 * libc/include/sys/types.h: Ditto.
1524 * libc/machine/spu/Makefile.am: New file.
1525 * libc/machine/spu/Makefile.in: Ditto.
1526 * libc/machine/spu/aclocal.m4: Ditto.
1527 * libc/machine/spu/configure: Ditto.
1528 * libc/machine/spu/configure.in: Ditto.
1529 * libc/machine/spu/memcpy.c: Ditto.
1530 * libc/machine/spu/setjmp.S: Ditto.
1531
1532 2006-08-03 J"orn Rennecke <joern.rennecke@st.com>
1533
1534 * dtoa.c (dtoa_r): Handle the denormalized _DOUBLE_IS_32BITS case
1535 properly.
1536
1537 2006-08-01 Jeff Johnston <jjohnstn@redhat.com>
1538
1539 * libc/Makefile.am: Add libc_TEXINFOS dependency on
1540 generated .texi files.
1541 * libm/Makefile.am: Add libm_TEXINFOS dependency on
1542 generated .texi files.
1543 * libc/Makefile.in: Regenerated.
1544 * libm/Makefile.in: Ditto.
1545
1546 2006-08-01 Thiemo Seufer <ths@mips.com>
1547 Nigel Stephens <nigel@mips.com>
1548
1549 * libc/include/sys/config.h (__ATTRIBUTE_IMPURE_PTR__): For MIPS
1550 define this to force _impure_ptr to live in the .sdata section.
1551
1552 2006-07-31 Jeff Johnston <jjohnstn@redhat.com>
1553
1554 * acinclude.m4: Check for readelf tool.
1555 * configure.in: Use ${READELF} instead of hard-coding.
1556 * Regenerate all aclocal.m4, Makefile.in, and configure files.
1557
1558 2006-07-31 Jeff Johnston <jjohnstn@redhat.com>
1559
1560 * libc/sys/linux/mmap.c: Remove include of sys/mman.h
1561 to avoid conflict with newer glibc's revision of mremap.
1562
1563 2006-07-05 Jeff Johnston <jjohnstn@redhat.com>
1564
1565 * libc/stdlib/mprec.h [_DOUBLE_IS_32BITS]: Turn off C99 hex
1566 floating-point format support. Also redefine
1567 dword0 and dword1 macros.
1568 * libc/stdlib/strtod.c: Add checks for _DOUBLE_IS_32BITS
1569 to prevent setting dword1 which is an rvalue only.
1570
1571 2006-06-22 Jeff Johnston <jjohnstn@redhat.com>
1572
1573 * libc/stdlib/Makefile.am: Add new gdtoa routines.
1574 * libc/stdlib/Makefile.in: Regenerated.
1575 * libc/stdlib/gd_qnan.h: New file.
1576 * libc/stdlib/gdtoa-gethex.c: Ditto.
1577 * libc/stdlib/gdtoa-hexnan.c: Ditto.
1578 * libc/stdlib/gdtoa.h: Ditto.
1579 * libc/stdlib/mprec.c: Add new helper routines needed by
1580 the new gdtoa code.
1581 * libc/stdlib/mprec.h: Integrate some defines and prototypes
1582 used by gdtoa routines here.
1583 * libc/stdlib/strtod.c: Rebased on David M. Gay's gdtoa-strtod.c
1584 which adds C99 support such as nan, inf, and hexadecimal input
1585 format.
1586
1587 2006-06-15 Corinna Vinschen <corinna@vinschen.de>
1588
1589 * libc/include/stdio.h (__sgetc_r): Fix typo.
1590 * libc/stdio/fread.c (_fread_r): Convert crlf calls to crlf_r.
1591 * libc/stdio/rget.c (__srbuf): Reinstantiate.
1592 * libc/stdio/wbuf.c (__swbuf): Ditto.
1593
1594 2006-06-14 Jeff Johnston <jjohnstn@redhat.com>
1595
1596 * libc/include/stdio.h: Add new reentrant I/O prototypes for
1597 read/write functions. Change getc/putc macros to have reentrant underlying
1598 macros/functions. This includes __sgetc_raw_r, __sgetc_r, and __sputc_r.
1599 * libc/stdio/fgetc.c: Fix and/or add reentrant version to call
1600 new reentrant I/O functions/macros for reading/writing.
1601 * libc/stdio/fgets.c: Ditto.
1602 * libc/stdio/fputc.c: Ditto.
1603 * libc/stdio/fputs.c: Ditto.
1604 * libc/stdio/fread.c: Ditto.
1605 * libc/stdio/fseek.c: Ditto.
1606 * libc/stdio64/fseeko64.c: Ditto.
1607 * libc/stdio/fwrite.c: Ditto.
1608 * libc/stdio/getc.c: Ditto.
1609 * libc/stdio/getc_u.c: Ditto.
1610 * libc/stdio/getchar.c: Ditto.
1611 * libc/stdio/getchar_u.c: Ditto.
1612 * libc/stdio/putc.c: Ditto.
1613 * libc/stdio/putc_u.c: Ditto.
1614 * libc/stdio/putchar.c: Ditto.
1615 * libc/stdio/puts.c: Ditto.
1616 * libc/stdio/vfprintf.c: Ditto.
1617 * libc/stdio/vfscanf.c: Ditto.
1618 * libc/stdio/fvwrite.c: Change __sfvwrite into reentrant __sfvwrite_r.
1619 Change all previous callers of __sfvwrite. Set errno to EBADF and
1620 set error flag on if attempt is made to write to file that does not
1621 allow writing.
1622 * libc/stdio/fvwrite.h: Fix new reentrant prototypes.
1623 * libc/stdio/local.h: Ditto.
1624 * libc/stdio/refill.c: Turn __srefill into reentrant __srefill_r.
1625 Set errno to EBADF and the error flag on if attempt is made to
1626 read unreadable file. Change all previous callers of __srefill.
1627 * libc/stdio/rget.c
1628 * libc/stdio/wbuf.c: Turn __swbuf into reentrant __swbuf_r. Change
1629 all previous callers of __swbuf.
1630 * libc/sys/linux/machine/i386/huge_val.h: Ifdef out file contents since
1631 huge value macros are already defined correctly for i386 by <math.h>.
1632
1633 2006-06-13 Sandra Loosemore <sandra@codesourcery.com>
1634
1635 * /libc/sys/arm/syscalls.c (_unlink, isatty, _system, _rename):
1636 Make them do something useful in the ARM_RDI_MONITOR case.
1637
1638 2006-06-07 Fred Fish <fnf@specifix.com>
1639
1640 * libc/search/hash_bigkey.c (MIN,MAX): Remove
1641 defines that are already supplied by <sys/param.h>.
1642
1643 2006-06-07 Fred Fish <fnf@specifix.com>
1644
1645 * configure.host: Remove references to HAVE_GETTIMEOFDAY.
1646
1647 2006-06-05 Shaun Jackman <sjackman@gmail.com>
1648
1649 * libc/posix/Makefile.am (GENERAL_SOURCES): Add sleep.c and
1650 usleep.c.
1651 * libc/posix/Makefile.in: Regenerate.
1652 * libc/posix/sleep.c: New file.
1653 * libc/posix/usleep.c: Ditto.
1654
1655 2006-06-05 Shaun Jackman <sjackman@gmail.com>
1656
1657 * configure.host (newlib_cflags) [arm, thumb, xscale]: Remove
1658 -DABORT_PROVIDED flag.
1659 * newlib/libc/sys/arm/syscalls.c (kill, exit): Sync with libgloss.
1660 * newlib/libc/sys/arm/libcfunc.c (abort): Ditto.
1661
1662 2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
1663
1664 * Makefile.am (AM_MAKEFLAGS): Pass CCASFLAGS.
1665 * Makefile.in: Regenerated.
1666 * libc/machine/sh/Makefile.am (AM_CCASFLAGS): Remove
1667 extraneous CFLAGS reference now that CCASFLAGS are being extended
1668 properly via multilib.
1669 * libc/machine/sh/Makefile.in: Regenerated.
1670
1671 2006-06-02 Shaun Jackman <sjackman@gmail.com>
1672
1673 * libc/unix/sigset.c: Undefine sigfillset, sigdelset, and
1674 sigismember.
1675
1676 2006-05-23 Jeff Johnston <jjohnstn@redhat.com>
1677
1678 * libc/misc/dprintf.c: Removed.
1679 * libc/misc/__dprintf.c: Renamed from dprintf.c.
1680 * libc/misc/Makefile.am: Changed appropriately for rename.
1681 * libc/misc/Makefile.in: Regenerated.
1682
1683 2006-05-23 Jeff Johnston <jjohnstn@redhat.com>
1684
1685 * libc/include/stdio.h: Protect dprintf prototype
1686 with #ifndef dprintf so as to not interfere with
1687 historical code defining their own dprintf macro.
1688
1689 2006-05-18 Jeff Johnston <jjohnstn@redhat.com>
1690
1691 * libc/include/stdio.h: Add prototypes for fiscanf,
1692 iscanf, and siscanf.
1693
1694 2006-05-11 J"orn Rennecke <joern.rennecke@st.com>
1695
1696 * acinclude.m4 (_NEWLIB_VERSION): Rename to:
1697 (DEF_NEWLIB_VERSION).
1698 * configure.in (_NEWLIB_VERSION): Use NEWLIB_VERSION.
1699 * configure: Regenerate.
1700
1701 2006-05-09 Jeff Johnston <jjohnstn@redhat.com>
1702
1703 * libc/ctype/Makefile.am: Add $(ELIX_SOURCES) to
1704 lib_a_SOURCES.
1705 * libc/ctype/Makefile.in: Regenerated.
1706
1707 2006-05-09 Kazu Hirata <kazu@codesourcery.com>
1708
1709 * libc/machine/arm/Makefile.am: Fix a typo.
1710 * libc/machine/arm/Makefile.in: Regenerated.
1711
1712 2006-05-08 J"orn Rennecke <joern.rennecke@st.com>
1713
1714 * libc/machine/sh/Makefile.am (AM_CCASFLAGS): Add $(CFLAGS).
1715 * libc/machine/sh/Makefile.in: Regenerate.
1716
1717 2006-05-03 J"orn Rennecke <joern.rennecke@st.com>
1718
1719 * libc/sys/sh/Makefile.am (AM_CCASFLAGS): Add $(CFLAGS).
1720 * libc/sys/sh/Makefile.in (AM_CCASFLAGS): Likewise.
1721
1722 2006-05-02 Jeff Johnston <jjohnstn@redhat.com>
1723
1724 * libc/sys/sysnec810/Makefile.am: Specify .S files instead of
1725 .s.
1726 * libc/sys/sysnec810/Makefile.in: Regenerated.
1727 * libc/sys/sysnec810/crt0.S: Renamed from .s file.
1728 * libc/sys/sysnec810/io.S: Ditto.
1729 * libc/sys/sysnec810/crt0.s: Renamed to .S file.
1730 * libc/sys/sysnec810/io.s: Ditto.
1731
1732 2006-05-01 Jeff Johnston <jjohnstn@redhat.com>
1733
1734 * libc/argz/Makefile.am: Prefix any objects specified with $(lpfx). If source file can
1735 be specified instead of object, do so.
1736 * libc/ctype/Makefile.am: Ditto.
1737 * libc/iconv/ccs/Makefile.am: Ditto.
1738 * libc/iconv/ces/Makefile.am: Ditto.
1739 * libc/iconv/lib/Makefile.am: Ditto.
1740 * libc/locale/Makefile.am: Ditto.
1741 * libc/posix/Makefile.am: Ditto.
1742 * libc/reent/Makefile.am: Ditto.
1743 * libc/search/Makefile.am: Ditto.
1744 * libc/stdio/Makefile.am: Ditto.
1745 * libc/stdio64/Makefile.am: Ditto.
1746 * libc/stdlib/Makefile.am: Ditto.
1747 * libc/string/Makefile.am: Ditto.
1748 * libc/syscalls/Makefile.am: Ditto.
1749 * libc/unix/Makefile.am: Ditto.
1750 * libc/machine/a29k/Makefile.am: Specify lib_a_CCASFLAGS so .S files will get
1751 prefix added automatically. Any specified rules must use $(lpfx) for
1752 object file names.
1753 * libc/machine/arm/Makefile.am: Ditto.
1754 * libc/machine/cris/Makefile.am: Ditto.
1755 * libc/machine/crx/Makefile.am: Ditto.
1756 * libc/machine/d10v/Makefile.am: Ditto.
1757 * libc/machine/d30v/Makefile.am: Ditto.
1758 * libc/machine/fr30/Makefile.am: Ditto.
1759 * libc/machine/frv/Makefile.am: Ditto.
1760 * libc/machine/h8300/Makefile.am: Ditto.
1761 * libc/machine/h8500/Makefile.am: Ditto.
1762 * libc/machine/hppa/Makefile.am: Ditto.
1763 * libc/machine/i386/Makefile.am: Ditto.
1764 * libc/machine/i960/Makefile.am: Ditto.
1765 * libc/machine/iq2000/Makefile.am: Ditto.
1766 * libc/machine/m32c/Makefile.am: Ditto.
1767 * libc/machine/m32r/Makefile.am: Ditto.
1768 * libc/machine/m68hc11/Makefile.am: Ditto.
1769 * libc/machine/m68k/Makefile.am: Ditto.
1770 * libc/machine/m88k/Makefile.am: Ditto.
1771 * libc/machine/mips/Makefile.am: Ditto.
1772 * libc/machine/mn10200/Makefile.am: Ditto.
1773 * libc/machine/mn10300/Makefile.am: Ditto.
1774 * libc/machine/mt/Makefile.am: Ditto.
1775 * libc/machine/necv70/Makefile.am: Ditto.
1776 * libc/machine/powerpc/Makefile.am: Ditto.
1777 * libc/machine/sh/Makefile.am: Ditto.
1778 * libc/machine/sh/Makefile.in: Ditto.
1779 * libc/machine/sparc/Makefile.am: Ditto.
1780 * libc/machine/tic4x/Makefile.am: Ditto.
1781 * libc/machine/tic80/Makefile.am: Ditto.
1782 * libc/machine/v850/Makefile.am: Ditto.
1783 * libc/machine/w65/Makefile.am: Ditto.
1784 * libc/machine/xscale/Makefile.am: Ditto.
1785 * libc/machine/xstormy16/Makefile.am: Ditto.
1786 * libc/machine/z8k/Makefile.am: Ditto.
1787 * libc/sys/a29khif/Makefile.am: Ditto.
1788 * libc/sys/arm/Makefile.am: Ditto.
1789 * libc/sys/d10v/Makefile.am: Ditto.
1790 * libc/sys/h8300hms/Makefile.am: Ditto.
1791 * libc/sys/h8500hms/Makefile.am: Ditto.
1792 * libc/sys/linux/Makefile.am: Ditto.
1793 * libc/sys/linux/linuxthreads/Makefile.am: Ditto.
1794 * libc/sys/linux/net/Makefile.am: Ditto.
1795 * libc/sys/linux/stdlib/Makefile.am: Ditto.
1796 * libc/sys/m88kbug/Makefile.am: Ditto.
1797 * libc/sys/mmixware/Makefile.am: Ditto.
1798 * libc/sys/rdos/Makefile.am: Ditto.
1799 * libc/sys/rtems/Makefile.am: Ditto.
1800 * libc/sys/sh/Makefile.am: Ditto.
1801 * libc/sys/sun4/Makefile.am: Ditto.
1802 * libc/sys/sysmec/Makefile.am: Ditto.
1803 * libc/sys/sysnec810/Makefile.am: Ditto.
1804 * libc/sys/sysnecv850/Makefile.am: Ditto.
1805 * libc/sys/sysvi386/Makefile.am: Ditto.
1806 * libc/sys/sysvnecv70/Makefile.am: Ditto.
1807 * libc/sys/tic80/Makefile.am: Ditto.
1808 * libc/sys/w65/Makefile.am: Ditto.
1809 * libc/sys/z8ksim/Makefile.am: Ditto.
1810 * libc/machine/necv70/fastmath.S: Renamed from .s file.
1811 * libc/machine/necv70/setjmp.S: Ditto.
1812 * libc/machine/necv70/fastmath.s: Removed.
1813 * libc/machine/necv70/setjmp.s: Ditto.
1814 * libc/machine/w65/*.S: New files renamed from .s files.
1815 * libc/machine/w65/*.s: Renamed and removed.
1816 * libc/sys/a29khif/*.S: New files renamed from .s files.
1817 * libc/sys/a29khif/*.s: Renamed and removed.
1818 * libc/sys/sysvi386/*.S: New files renamed from .s files.
1819 * libc/sys/sysvi386/*.s: Renamed and removed.
1820 * libc/sys/sysvnecv70/*.S: New files renamed from .s files.
1821 * libc/sys/sysvnecv70/*.s: Renamed and removed.
1822 * libc/*Makefile.in: Regenerated as appropriate.
1823
1824 2006-04-24 DJ Delorie <dj@redhat.com>
1825
1826 * libc/machine/sh/configure.in: Avoid link tests.
1827 * libc/machine/sh/configure: Regenerate.
1828
1829 2006-04-18 Jeff Johnston <jjohnstn@redhat.com>
1830
1831 * libc/include/sys/signal.h (sigdelset, sigfillset, sigismember): New macros.
1832 (sigaddset, sigemptyset): Add return code.
1833
1834 2006-04-13 Ralf Corsepius <ralf.corsepius@rtems.org>
1835
1836 * acinclude.m4: New _NEWLIB_VERSION.
1837 * acinclude.m4(NEWLIB_CONFIGURE): AC_REQUIRE(_NEWLIB_VERSION).
1838 Use AC_CANONICAL_HOST instead of AC_CANONICAL_SYSTEM.
1839 Use new form of AC_INIT_AUTOMAKE.
1840 * configure.in: AC_PREREQ(2.59).
1841 Use autoconf-2.5.x version of AC_INIT.
1842 Use AC_CONFIG_FILES and autoconf-2.5x AC_OUTPUT instead of
1843 autoconf-2.13's AC_OUTPUT.
1844 * libm/configure.in: Ditto.
1845 * libm/machine/configure.in: Ditto.
1846 * libm/machine/i386/configure.in: Ditto.
1847 * libc/configure.in: Ditto.
1848 * libc/machine/a29k/configure.in: Ditto.
1849 * libc/machine/arm/configure.in: Ditto.
1850 * libc/machine/configure.in: Ditto.
1851 * libc/machine/mn10300/configure.in: Ditto.
1852 * libc/machine/powerpc/configure.in: Ditto.
1853 * libc/machine/z8k/configure.in: Ditto.
1854 * libc/machine/h8300/configure.in: Ditto.
1855 * libc/machine/mips/configure.in: Ditto.
1856 * libc/machine/crx/configure.in: Ditto.
1857 * libc/machine/m68hc11/configure.in: Ditto.
1858 * libc/machine/h8500/configure.in: Ditto.
1859 * libc/machine/xscale/configure.in: Ditto.
1860 * libc/machine/d10v/configure.in: Ditto.
1861 * libc/machine/fr30/configure.in: Ditto.
1862 * libc/machine/sh/configure.in: Ditto.
1863 * libc/machine/tic80/configure.in: Ditto.
1864 * libc/machine/m32r/configure.in: Ditto.
1865 * libc/machine/xstormy16/configure.in: Ditto.
1866 * libc/machine/i386/configure.in: Ditto.
1867 * libc/machine/d30v/configure.in: Ditto.
1868 * libc/machine/mn10200/configure.in: Ditto.
1869 * libc/machine/frv/configure.in: Ditto.
1870 * libc/machine/mt/configure.in: Ditto.
1871 * libc/machine/i960/configure.in: Ditto.
1872 * libc/machine/v850/configure.in: Ditto.
1873 * libc/machine/necv70/configure.in: Ditto.
1874 * libc/machine/tic4x/configure.in: Ditto.
1875 * libc/machine/cris/configure.in: Ditto.
1876 * libc/machine/m68k/configure.in: Ditto.
1877 * libc/machine/m32c/configure.in: Ditto.
1878 * libc/machine/hppa/configure.in: Ditto.
1879 * libc/machine/w65/configure.in: Ditto.
1880 * libc/machine/iq2000/configure.in: Ditto.
1881 * libc/machine/sparc/configure.in: Ditto.
1882 * libc/machine/m88k/configure.in: Ditto.
1883 * libc/sys/linux/configure.in: Ditto.
1884 * libc/sys/linux/machine/configure.in: Ditto.
1885 * libc/sys/linux/machine/i386/configure.in: Ditto.
1886 * libc/sys/linux/linuxthreads/configure.in: Ditto.
1887 * libc/sys/linux/linuxthreads/machine/configure.in: Ditto.
1888 * libc/sys/linux/linuxthreads/machine/i386/configure.in: Ditto.
1889 * libc/sys/arm/configure.in: Ditto.
1890 * libc/sys/configure.in: Ditto.
1891 * libc/sys/decstation/configure.in: Ditto.
1892 * libc/sys/a29khif/configure.in: Ditto.
1893 * libc/sys/sysnecv850/configure.in: Ditto.
1894 * libc/sys/d10v/configure.in: Ditto.
1895 * libc/sys/netware/configure.in: Ditto.
1896 * libc/sys/mmixware/configure.in: Ditto.
1897 * libc/sys/h8500hms/configure.in: Ditto.
1898 * libc/sys/sh/configure.in: Ditto.
1899 * libc/sys/tic80/configure.in: Ditto.
1900 * libc/sys/rdos/configure.in: Ditto.
1901 * libc/sys/sysmec/configure.in: Ditto.
1902 * libc/sys/sysvi386/configure.in: Ditto.
1903 * libc/sys/h8300hms/configure.in: Ditto.
1904 * libc/sys/sparc64/configure.in: Ditto.
1905 * libc/sys/arc/configure.in: Ditto.
1906 * libc/sys/sysnec810/configure.in: Ditto.
1907 * libc/sys/m88kbug/configure.in: Ditto.
1908 * libc/sys/sysvnecv70/configure.in: Ditto.
1909 * libc/sys/z8ksim/configure.in: Ditto.
1910 * libc/sys/rtems/configure.in: Ditto.
1911 * libc/sys/w65/configure.in: Ditto.
1912 * libc/sys/sun4/configure.in: Ditto.
1913 * doc/configure.in: Ditto.
1914 * iconvdata/configure.in: Ditto.
1915 * configure.in: Use AC_CONFIG_HEADER instead of AM_CONFIG_HEADER.
1916
1917 2006-04-11 Jeff Johnston <jjohnstn@redhat.com>
1918
1919 * acinclude.m4: Properly add square brackets for
1920 AC_DEFUN macros. Rewrite LIB_AC_PROG_CC to remove
1921 macros no longer available. Add LIB_AM_PROG_AS to
1922 remove prereq of AC_PROG_CC. Add LIB_AC_PROG_CC_GNU
1923 macro. Substitute lpfx (library object prefix).
1924 * configure.host: Set lpfx depending on whether
1925 libtool is used or not.
1926 * configure.in: Individually specify libc and libm
1927 to AC_CONFIG_SUBDIRS. Add square bracket quoting as
1928 necessary.
1929 * Makefile.am: Use $(lpfx) to get object names for
1930 math-library functions that should also be in libc.
1931 * libc/machine/configure.in: Use case statement to determine
1932 AC_CONFIG_SUBDIRS statement.
1933 * libc/sys/linux/linuxthreads/machine/configure.in: Ditto.
1934 * libc/sys/linux/machine/configure.in: Ditto.
1935 * libc/sys/configure.in: Ditto.
1936 * libm/machine/configure.in: Ditto.
1937 * libc/sys/linux/configure.in: Fix up AC_CONFIG_SUBDIRS.
1938 * libm/configure.in: Add AM_CONDITIONAL statement
1939 for HAVE_LIBM_MACHINE_DIR.
1940 * libc/machine/a29k/Makefile.am: Modified to work with
1941 latest automake. Change includes setting AM_CCASFLAGS
1942 so building .S files will properly pick up flags used
1943 to build C files.
1944 * libc/machine/arm/Makefile.am: Ditto.
1945 * libc/machine/crx/Makefile.am: Ditto.
1946 * libc/machine/d10v/Makefile.am: Ditto.
1947 * libc/machine/d30v/Makefile.am: Ditto.
1948 * libc/machine/fr30/Makefile.am: Ditto.
1949 * libc/machine/frv/Makefile.am: Ditto.
1950 * libc/machine/h8300/Makefile.am: Ditto.
1951 * libc/machine/h8500/Makefile.am: Ditto.
1952 * libc/machine/hppa/Makefile.am: Ditto.
1953 * libc/machine/i386/Makefile.am: Ditto.
1954 * libc/machine/iq2000/Makefile.am: Ditto.
1955 * libc/machine/m32c/Makefile.am: Ditto.
1956 * libc/machine/m32r/Makefile.am: Ditto.
1957 * libc/machine/m68hc11/Makefile.am: Ditto.
1958 * libc/machine/m68k/Makefile.am: Ditto.
1959 * libc/machine/m88k/Makefile.am: Ditto.
1960 * libc/machine/mips/Makefile.am: Ditto.
1961 * libc/machine/mn10200/Makefile.am: Ditto.
1962 * libc/machine/mn10300/Makefile.am: Ditto.
1963 * libc/machine/mt/Makefile.am: Ditto.
1964 * libc/machine/necv70/Makefile.am: Ditto.
1965 * libc/machine/powerpc/Makefile.am: Ditto.
1966 * libc/machine/sh/Makefile.am: Ditto.
1967 * libc/machine/sparc/Makefile.am: Ditto.
1968 * libc/machine/tic4x/Makefile.am: Ditto.
1969 * libc/machine/tic80/Makefile.am: Ditto.
1970 * libc/machine/v850/Makefile.am: Ditto.
1971 * libc/machine/w65/Makefile.am: Ditto.
1972 * libc/machine/xscale/Makefile.am: Ditto.
1973 * libc/machine/xstormy16/Makefile.am: Ditto.
1974 * libc/machine/z8k/Makefile.am: Ditto.
1975 * libc/sys/a29khif/Makefile.am: Ditto.
1976 * libc/sys/arc/Makefile.am: Ditto.
1977 * libc/sys/arm/Makefile.am: Ditto.
1978 * libc/sys/d10v/Makefile.am: Ditto.
1979 * libc/sys/decstation/Makefile.am: Ditto.
1980 * libc/sys/h8300hms/Makefile.am: Ditto.
1981 * libc/sys/h8500hms/Makefile.am: Ditto.
1982 * libc/sys/linux/linuxthreads/machine/i386/Makefile.am: Ditto.
1983 * libc/sys/linux/machine/i386/Makefile.am: Ditto.
1984 * libc/sys/m88kbug/Makefile.am: Ditto.
1985 * libc/sys/mmixware/Makefile.am: Ditto.
1986 * libc/sys/netware/Makefile.am: Ditto.
1987 * libc/sys/rdos/Makefile.am: Ditto.
1988 * libc/sys/rtems/Makefile.am: Ditto.
1989 * libc/sys/sh/Makefile.am: Ditto.
1990 * libc/sys/sparc64/Makefile.am: Ditto.
1991 * libc/sys/sysmec/Makefile.am: Ditto.
1992 * libc/sys/sysnec810/Makefile.am: Ditto.
1993 * libc/sys/sysnecv850/Makefile.am: Ditto.
1994 * libc/sys/sysvi386/Makefile.am: Ditto.
1995 * libc/sys/sysvnecv70/Makefile.am: Ditto.
1996 * libc/sys/tic80/Makefile.am: Ditto.
1997 * libc/sys/w65/Makefile.am: Ditto.
1998 * libc/sys/z8ksim/Makefile.am: Ditto.
1999 * libm/machine/i386/Makefile.am: Ditto.
2000 * libc/sys/arm/Makefile.am: Ditto plus add EXTRA sources including
2001 trap.S so that automake will generate a .S.o suffix rule.
2002 * libc/argz/Makefile.am: Modified to work with
2003 latest automake. Change includes adding lib_a_CFLAGS
2004 so automake doesn't complain about libtool and non-libtool
2005 libraries sharing objects.
2006 * libc/ctype/Makefile.am: Ditto.
2007 * libc/errno/Makefile.am: Ditto.
2008 * libc/iconv/ccs/Makefile.am: Ditto.
2009 * libc/iconv/ces/Makefile.am: Ditto.
2010 * libc/iconv/lib/Makefile.am: Ditto.
2011 * libc/locale/Makefile.am: Ditto.
2012 * libc/misc/Makefile.am: Ditto.
2013 * libc/posix/Makefile.am: Ditto.
2014 * libc/reent/Makefile.am: Ditto.
2015 * libc/search/Makefile.am: Ditto.
2016 * libc/signal/Makefile.am: Ditto.
2017 * libc/stdio/Makefile.am: Ditto.
2018 * libc/stdio64/Makefile.am: Ditto.
2019 * libc/stdlib/Makefile.am: Ditto.
2020 * libc/string/Makefile.am: Ditto.
2021 * libc/sys/linux/Makefile.am: Ditto.
2022 * libc/sys/linux/argp/Makefile.am: Ditto.
2023 * libc/sys/linux/cmath/Makefile.am: Ditto.
2024 * libc/sys/linux/dl/Makefile.am: Ditto.
2025 * libc/sys/linux/iconv/Makefile.am: Ditto.
2026 * libc/sys/linux/intl/Makefile.am: Ditto.
2027 * libc/sys/linux/linuxthreads/Makefile.am: Ditto.
2028 * libc/sys/linux/net/Makefile.am: Ditto.
2029 * libc/sys/linux/stdlib/Makefile.am: Ditto.
2030 * libc/syscalls/Makefile.am: Ditto.
2031 * libc/time/Makefile.am: Ditto.
2032 * libc/unix/Makefile.am: Ditto.
2033 * libm/Makefile.am: Ditto.
2034 * libm/common/Makefile.am: Ditto.
2035 * libm/math/Makefile.am: Ditto.
2036 * libm/mathfp/Makefile.am: Ditto.
2037 * Regenerate all aclocal.m4, Makefile.in, and configure files.
2038
2039 2006-04-07 Jeff Johnston <jjohnstn@redhat.com>
2040
2041 * libc/time/time.c (time): Do not check for HAVE_GETTIMEOFDAY
2042 anymore. Assume there is a gettimeofday syscall.
2043
2044 2006-03-29 Shaun Jackman <sjackman@gmail.com>
2045
2046 * libc/sys/linux/include/netinet/ip.h: Include netinet/in_systm.h
2047 for the declaration of n_long.
2048
2049 2006-03-29 Shaun Jackman <sjackman@gmail.com>
2050
2051 * libc/sys/linux/include/net/if.h: Include sys/socket.h for
2052 struct sockaddr.
2053 (IFF_SMART): Replace this define with IFF_NOTRAILERS.
2054 (IFF_CANTCHANGE): Replace IFF_SMART reference with IFF_NOTRAILERS.
2055 (IFF_NOTRAILERS): New define.
2056 (struct ifreq): Add ifru_netmask.
2057 (ifr_netmask): New define.
2058
2059 2006-03-29 Shaun Jackman <sjackman@gmail.com>
2060
2061 * libc/sys/linux/sys/ioccom.h (ioctl): Change declaration to
2062 match sys/ioctl.h.
2063
2064 2006-03-29 Shaun Jackman <sjackman@gmail.com>
2065
2066 * libtool.m4: Set lt_cv_deplibs_check_method=pass_all for
2067 linux-newlib libc implementations.
2068
2069 2006-03-29 Eric Blake <ebb9@byu.net>
2070
2071 * libc/stdio/freopen.c (_freopen_r) [__SCLE]: Fix typo.
2072 * libc/stdio64/freopen64.c (_freopen64_r) [__SCLE]: Likewise.
2073
2074 2006-03-29 Jeff Johnston <jjohnstn@redhat.com>
2075
2076 * libc/sys/linux/io.c (__mknod): Fix declaration of
2077 syscall to pass a dev_t as third argument rather than
2078 a pointer to dev_t.
2079
2080 2006-03-29 Jeff Johnston <jjohnstn@redhat.com>
2081
2082 * libc/sys/linux/net/name6.c: Fix struct references.
2083
2084 2006-03-22 Mark Mitchell <mark@codesourcery.com>
2085
2086 * configure.host: Allow hosts to set the default
2087 newlib_atexit_dynamic_alloc value.
2088 * configure.in: Likewise.
2089 * configure: Regenerated.
2090
2091 2006-03-20 Mark Mitchell <mark@codesourcery.com>
2092
2093 * acconfig.h (_ATEXIT_DYNAMIC_ALLOC): Undef.
2094 * configure.in (--disable-newlib-atexit-dynamic-alloc): New
2095 option.
2096 * configure: Regenerated.
2097 * newlib.hin: Regenerated.
2098 * libc/stdlib/__atexit.c (__register_exitproc): Don't call malloc
2099 if _ATEXIT_DYNAMIC_ALLOC is undefined.
2100 * libc/stdlib/__call_atexit.c (__call_exitprocs): Don't call free
2101 if _ATEXIT_DYNAMIC_ALLOC is undefined.
2102
2103 2006-03-17 Jeff Johnston <jjohnstn@redhat.com>
2104
2105 * libc/sys/linux/linuxthreads/config.h: Remove definition
2106 of UINT32_C.
2107
2108 2006-03-15 Jeff Johnston <jjohnstn@redhat.com>
2109
2110 * libc/stdio/wsetup.c (__swsetup): Don't make a buffer
2111 for a string I/O file that isn't using the asprintf family.
2112
2113 2006-03-07 Eric Blake <ebb9@byu.net>
2114
2115 * libc/stdio/freopen.c (_freopen_r) [HAVE_FCNTL]: For NULL
2116 filename, allow read-only or write-only FILE atop O_RDWR file
2117 descriptor.
2118 * libc/stdio64/freopen64.c (_freopen64_r) [HAVE_FCNTL]: Likewise.
2119
2120 2006-03-07 Jeff Johnston <jjohnstn@redhat.com>
2121
2122 * libm/common/sf_isinf.c[_DOUBLE_IS_32BITS]: Undef isinf.
2123 * libm/common/sf_isnan.c[_DOUBLE_IS_32BITS]: Undef isnan.
2124
2125 2006-03-02 Jeff Johnston <jjohnstn@redhat.com>
2126
2127 * libm/math/math.tex: Fix reference to sisnan.def which
2128 is now in common subdirectory.
2129 * libm/mathfp/mathfp.tex: Ditto.
2130
2131 2006-02-27 Jeff Johnston <jjohnstn@redhat.com>
2132
2133 * Makefile.am (MATHOBJS_IN_LIBC): Add s_isinfd, sf_isinff,
2134 s_isnand, and sf_isnanf object files.
2135 * Makefile.in: Regenerated.
2136 * libc/include/ieeefp.h: Undef isnan and isinf to avoid
2137 conflict if <math.h> has previously been included.
2138 * libc/include/math.h
2139 * libc/include/math.h: Make isnan and isinf macros to
2140 conform to C99.
2141 (__isinfd, __isinff, __isnand, __isnanf): New functions.
2142 * libm/common/Makefile.am: Add new s_isinfd, s_isnand, sf_isinff,
2143 and sf_isnanf files. Also support s_isnan, sf_isnan, s_isinf, and
2144 sf_isinf files which have been moved from math/mathfp directories.
2145 * libm/common/Makefile.in: Regenerated.
2146 * libm/common/s_isinfd.c: New file.
2147 * libm/common/s_isnand.c: Ditto.
2148 * libm/common/sf_isinff.c: Ditto.
2149 * libm/common/sf_isnanf.c: Ditto.
2150 * libm/common/s_isinf.c: Moved from libm/math directory.
2151 * libm/common/s_isnan.c: Ditto.
2152 * libm/common/sf_isinf.c: Ditto.
2153 * libm/common/sf_isnan.c: Ditto.
2154 * libm/math/Makefile.am: Remove isinf and isnan family functions
2155 which have been moved into common directory.
2156 * libm/mathfp/Makefile.am: Ditto.
2157 * libm/math/Makefile.in: Regenerated.
2158 * libm/mathfp/Makefile.in: Ditto.
2159 * libm/math/s_isinf.c: Removed.
2160 * libm/math/s_isnan.c: Ditto.
2161 * libm/math/sf_isinf.c: Ditto.
2162 * libm/math/sf_isnan.c: Ditto.
2163 * libm/mathfp/s_isinf.c: Ditto.
2164 * libm/mathfp/s_isnan.c: Ditto.
2165 * libm/mathfp/sf_isinf.c: Ditto.
2166 * libm/mathfp/sf_isnan.c: Ditto.
2167
2168 2006-02-20 Jeff Johnston <jjohnstn@redhat.com>
2169
2170 * libc/stdio/fflush.c (fflush): For an fflush on a read-only
2171 stream, turn off fseek/rewind optimization as per POSIX/SUSv3.
2172 * libc/stdio/fseek.c (_fseek_r): After a successful unoptimized
2173 seek, turn off the __SNPT no-optimization flag.
2174
2175 2006-02-16 Jeff Johnston <jjohnstn@redhat.com>
2176
2177 * libc/sys/linux/aio.c: Define _GNU_SOURCE so struct aioinit
2178 will be defined.
2179 * libc/sys/linux/sys/types.h: Move <sys/config.h> ahead of
2180 <features.h> to preset special flags.
2181
2182 2006-02-15 Corinna Vinschen <corinna@vinschen.de>
2183
2184 * libc/include/sys/time.h (struct timeval): Change member types
2185 according to SUSv3.
2186 * libc/include/sys/types.h (useconds_t): Change to unsigned
2187 according to SUSv3.
2188 (suseconds_t): Define type.
2189
2190 2006-02-13 Jeff Johnston <jjohnstn@redhat.com>
2191 David Carne <davidcarne@gmail.com>
2192
2193 * libc/string/strndup_r.c (_strndup_r): Use strnlen logic
2194 instead of strlen to determine number of bytes to copy.
2195 * libc/string/strnlen.c (strnlen): Fix so check for max limit occurs
2196 before looking at storage location.
2197
2198 2006-02-07 Paul Brook <paul@codesourcery.com>
2199
2200 * libc/machine/arm/setjmp.S: Add Thumb-2 support.
2201 * libc/sys/arm/crt0.S: Add Thumb-2 startup code.
2202 * libc/sys/arm/libcfunc.c (do_AngelSWI): Use AngelSWIInsn.
2203 * libc/sys/arm/swi.h (AngelSWIInsn, AngelSWIAsm): Define.
2204 * libc/sys/arm/trap.S: Disable for Thumb-2.
2205
2206 2006-01-31 Leif Ekblad <leif@rdos.net>
2207
2208 * configure.host: RDOS support added
2209 * libc/include/sys/config.h: Ditto.
2210 * libc/sys/rdos/Makefile.am, libc/sys/rdos/Makefile.in: New files.
2211 * libc/sys/rdos/aclocal.m4, libc/sys/rdos/chown.c: Ditto.
2212 * libc/sys/rdos/close.c, libc/sys/rdos/config.h: Ditto.
2213 * libc/sys/rdos/configure, libc/sys/rdos/configure.in: Ditto.
2214 * libc/sys/rdos/crt0.S, libc/sys/rdos/execve.c: Ditto.
2215 * libc/sys/rdos/fork.c, libc/sys/rdos/fstat.c: Ditto.
2216 * libc/sys/rdos/getenv.c, libc/sys/rdos/getpid.c: Ditto.
2217 * libc/sys/rdos/gettod.c, libc/sys/rdos/isatty.c: Ditto.
2218 * libc/sys/rdos/kill.c, libc/sys/rdos/link.c: Ditto.
2219 * libc/sys/rdos/lseek.c, libc/sys/rdos/open.c: Ditto.
2220 * libc/sys/rdos/rdos.S, libc/sys/rdos/rdos.h: Ditto.
2221 * libc/sys/rdos/rdoshelp.c, libc/sys/rdos/read.c: Ditto.
2222 * libc/sys/rdos/readlink.c, libc/sys/rdos/sbrk.c: Ditto.
2223 * libc/sys/rdos/stat.c, libc/sys/rdos/symlink.c: Ditto.
2224 * libc/sys/rdos/times.c, libc/sys/rdos/unlink.c: Ditto.
2225 * libc/sys/rdos/user.def, libc/sys/rdos/wait.c: Ditto.
2226 * libc/sys/rdos/write.c: Ditto.
2227
2228 2006-01-24 Jeff Johnston <jjohnstn@redhat.com>
2229
2230 * acinclude.m4: Add nodefine to AM_INIT_AUTOMAKE macro invocation
2231 so as not to define PACKAGE and VERSION in newlib.h.
2232 * aclocal.m4: Regenerated.
2233 * configure: Ditto.
2234 * newlib.hin: Ditto.
2235
2236 2006-01-20 Jeff Johnston <jjohnstn@redhat.com>
2237
2238 * acconfig.h: New file to generate newlib.hin from.
2239 * newlib.hin: Regenerated.
2240 * stamp-h.in: Regenerated.
2241 * Makefile.am: Add ACLOCAL_AMFLAGS so aclocal can be
2242 called automatically.
2243 * Makefile.in: Regenerated.
2244 * acinclude.m4: Add proper comment for hack in previous change.
2245 * aclocal.m4 */aclocal.m4: Regenerated.
2246 * configure */configure: Regenerated.
2247
2248 2006-01-11 Jeff Johnston <jjohnstn@redhat.com>
2249
2250 * acinclude.m4: Add hack to prevent INSTALL in subdirs
2251 from being set to "../".
2252 * Makefile.am: Pass INSTALL in AM_MAKEFLAGS.
2253 * aclocal.m4: Regenerated.
2254 * configure: Ditto.
2255 * Makefile.in: Ditto.
2256 * doc/aclocal.m4: Ditto.
2257 * doc/configure: Ditto.
2258 * iconvdata/aclocal.m4: Ditto.
2259 * iconvdata/configure: Ditto.
2260 * libc/*/aclocal.m4: Ditto.
2261 * libc/*/configure: Ditto.
2262 * libc/libc.texinfo: Ditto.
2263 * libm/*/aclocal.m4: Ditto.
2264 * libm/*/configure: Ditto.
2265
2266 2006-01-10 Eric Blake <ebb9@byu.net>
2267
2268 * libc/stdio/freopen.c (_freopen_r): Fix use of oflags.
2269 * libc/stdio64/freopen64.c (_freopen64_r): Likewise.
2270
2271 2006-01-10 Jeff Johnston <jjohnstn@redhat.com>
2272
2273 * libm/mathfp/s_frexp.c: Check for special values on
2274 the original input, not the manipulated output value.
2275 * libm/mathfp/sf_frexp.c: Ditto.
2276 * libm/mathfp/s_atangent.c: Don't use local value branch
2277 when checking for quadrant.
2278 * libm/mathfp/sf_atangent.c: Ditto.
2279
2280 2006-01-09 Jeff Johnston <jjohnstn@redhat.com>
2281
2282 * libc/stdio/freopen.c: Switch to use isatty instead of _isatty.
2283 * libc/stdio64/freopen64.c: Ditto.
2284
2285 2006-01-09 Eric Blake <ebb9@byu.net>
2286
2287 * libc/stdio/freopen.c (_freopen_r): Accept NULL filename.
2288 * libc/stdio64/freopen64.c (_freopen64_r): Likewise.
2289
2290 2006-01-06 Jeff Johnston <jjohnstn@redhat.com>
2291
2292 * libc/sys/linux/include/getopt.h: Add macros needed by
2293 new version of getopt.c in libc/stdlib.
2294
2295 2006-01-04 Gregory Pietsch <gpietsch@comcast.net>
2296
2297 * libc/stdlib/getopt.c: Replaced with version
2298 that adds getopt_long and getopt_long_only support.
2299 * libc/include/getopt.h: New file.
2300
2301 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
2302
2303 * NEWS: Update with 1.14.0 info.
2304 * README: Ditto.
2305 * acinclude.m4: Change version number to 1.14.0.
2306 * aclocal.m4: Regenerated.
2307 * configure: Ditto.
2308 * doc/aclocal.m4: Ditto.
2309 * doc/configure: Ditto.
2310 * libc/*/aclocal.m4: Ditto.
2311 * libc/*/configure: Ditto.
2312 * libc/libc.texinfo: Ditto.
2313 * libm/*/aclocal.m4: Ditto.
2314 * libm/*/configure: Ditto.
2315 * libm/libm.texinfo: Ditto.
2316 * libc/sys/linux/shared.ld: Add VERS_1.14.
2317
2318 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
2319
2320 * libc/sys/linux/sys/stat.h: Change *stat64 prototypes to
2321 take a pointer to struct stat64 rather than struct stat.
2322
2323 2005-12-16 Ralf Corsepius <ralf.corsepius@rtems.org>
2324
2325 * libc/include/stdint.h: Prefer long over int for int32_t.
2326 Use __have_long32 to set up int32_t.
2327 * libc/include/inttypes.h: Use "#if xxx" instead of "#ifdef xxx"
2328 (Sync with stdint.h).
2329
2330 2005-12-14 Corinna Vinschen <corinna@vinschen.de>
2331
2332 * libc/include/sys/fcntl.h: Define O_SYNC unconditionally. Fix
2333 typo in O_NDELAY comment.
2334
2335 2005-12-13 Nathan Sidwell <nathan@codesourcery.com>
2336
2337 * libc/include/machine/ieeefp.h (__mt__): Renamed from __ms1__.
2338 * libc/include/machine/setjmp.h (__mt__): Likewise.
2339 * libc/machine/mt/setjmp.S: Rename ms1 reference to mt.
2340 * libc/machine/configure.in: Ditto.
2341
2342 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
2343
2344 * configure.host: Replace ms1 arch with mt arch.
2345 * libc/machine/mt: Renamed from ms1 dir.
2346
2347 2005-12-08 Shaun Jackman <sjackman@gmail.com>
2348
2349 * libc/include/sys/types.h: Remove the ifdef armour around
2350 standard POSIX types.
2351
2352 2005-12-06 Ralf Corsepius <ralf.corsepius@rtems.org>
2353
2354 * libc/sys/rtems/crt0.c: Add rtems_gxx_key_create,
2355 rtems_gxx_key_delete, rtems_gxx_getspecific,
2356 rtems_gxx_setspecific, rtems_gxx_mutex_trylock,
2357 rtems_gxx_recursive_mutex_init, rtems_gxx_recursive_mutex_lock,
2358 rtems_gxx_recursive_mutex_trylock, rtems_gxx_recursive_mutex_unlock.
2359
2360 2005-12-05 Christopher Faylor <cgf@timesys.com>
2361
2362 * libc/include/stdlib.h: Move cygwin declarations to cygwin-specific
2363 file. Declare unsetenv and _unsetenv_r when not cygwin.
2364
2365 2005-11-18 Jeff Johnston <jjohnstn@redhat.com>
2366
2367 * libc/time/strptime.c (strptime): Don't abort for %c and %Z.
2368 Treat %c as "%a %b %e %H:%M:%S %Y" and ignore %Z.
2369
2370 2005-11-18 Christopher Faylor <cgf@timesys.com>
2371
2372 * include/sys/time.h: Move more cygwin stuff to cygwin-specific header.
2373
2374 2005-11-18 Christopher Faylor <cgf@timesys.com>
2375
2376 * include/time.h: Remove more cygwin-specific stuff.
2377
2378 2005-11-18 Christopher Faylor <cgf@timesys.com>
2379
2380 * include/time.h: Move cygwin declarations to cygwin-specific header.
2381 * include/sys/time.h: Rename cygwin include to "sys_time.h".
2382
2383 2005-11-17 Jeff Johnston <jjohnstn@redhat.com>
2384
2385 * libc/sys/linux/dl/dl-local.h: New file based on old dlfcn.h
2386 in libc/sys/linux/include.
2387 * libc/sys/linux/dl/dlfcn.h: Moved to libc/sys/linux/include.
2388 * libc/sys/linux/dl/ldsodefs.h: Include dl-local.h instead of dlfcn.h.
2389 * libc/sys/linux/include/dlfcn.h: Replaced with dlfcn.h formerly
2390 in libc/sys/linux/dl.
2391
2392 2005-11-11 Christopher Faylor <cgf@timesys.com>
2393
2394 * libc/include/sys/time.h: For cygwin, use general header rather than
2395 specific "sys/select.h".
2396
2397 2005-11-08 Tom Walsh <tom@openhardware.net>
2398
2399 * libc/time/tzvars.c: New file.
2400 * libc/time/tzset_r.c: Moved globals into tzvars.c
2401 so other time functions needn't link in __tzset_r and its
2402 dependencies.
2403 * libc/time/Makefile.am: Add the new file.
2404 * libc/time/Makefile.in: Regenerated.
2405
2406 2005-11-08 Christopher Faylor <cgf@timesys.com>
2407
2408 * libc/include/string.h: Add cygwin-specific function declaration.
2409
2410 2005-11-07 Corinna Vinschen <corinna@vinschen.de>
2411
2412 * libc/include/ieeefp.h: Add C++ guards.
2413
2414 2005-11-03 Jeff Johnston <jjohnstn@redhat.com>
2415
2416 * libc/unix/getcwd.c: Don't use non-reentrant syscall names.
2417 * libc/unix/getlogin.c: Ditto.
2418 * libc/unix/getpass.c: Ditto.
2419 * libc/unix/getut.c: Ditto.
2420 * libc/unix/ttyname.c: Ditto.
2421
2422 2005-11-03 Shaun Jackman <sjackman@gmail.com>
2423
2424 * libc/include/sys/unistd.h (readlink, symlink): Provide these
2425 prototypes by default.
2426 * libc/sys/linux/include/unistd.h (readlink): Remove this
2427 prototype.
2428 * libc/sys/linux/sys/unistd.h (readlink, symlink): New
2429 prototypes.
2430
2431 2005-11-01 Ralf Corsepius <ralf.corsepius@rtems.org>
2432
2433 * libc/include/stdint.h: Cleanup #if vs. #ifdef.
2434
2435 2005-10-31 Darin Johnson <darin@usa.net>
2436
2437 * libm/mathfp/s_mathcnst.c: Fix endian-ness check to be
2438 correct for constants.
2439
2440 2005-10-28 Bob Wilson <bob.wilson@acm.org>
2441
2442 * libc/stdio/siprintf.c: Wrap long lines in ANSI_SYNOPSIS.
2443 * libc/stdio/siscanf.c: Likewise.
2444 * libc/stdio/sprintf.c: Likewise.
2445 * libc/stdio/sscanf.c: Likewise.
2446 * libc/stdio/vfprintf.c: Likewise.
2447 * libc/stdio/vfscanf.c: Likewise.
2448 * libc/stdio/viprintf.c: Likewise.
2449 * libc/stdio/viscanf.c: Likewise.
2450
2451 2005-10-28 Bob Wilson <bob.wilson@acm.org>
2452
2453 * libc/sys.tex (Stubs): Format examples consistently. Change sbrk
2454 example to use "_end" symbol instead of "end". Change write example
2455 to use "outbyte" instead of "writechar".
2456
2457 2005-10-28 Bob Wilson <bob.wilson@acm.org>
2458
2459 * libc/ctype/ctype.tex: Use hyphens as appropriate, but not otherwise.
2460 * libc/ctype/islower.c: Likewise.
2461 * libc/ctype/isupper.c: Likewise.
2462 * libc/ctype/iswalnum.c: Likewise.
2463 * libc/ctype/iswalpha.c: Likewise.
2464 * libc/ctype/iswblank.c: Likewise.
2465 * libc/ctype/iswcntrl.c: Likewise.
2466 * libc/ctype/iswdigit.c: Likewise.
2467 * libc/ctype/iswgraph.c: Likewise.
2468 * libc/ctype/iswlower.c: Likewise.
2469 * libc/ctype/iswprint.c: Likewise.
2470 * libc/ctype/iswpunct.c: Likewise.
2471 * libc/ctype/iswspace.c: Likewise.
2472 * libc/ctype/iswupper.c: Likewise.
2473 * libc/ctype/iswxdigit.c: Likewise.
2474 * libc/ctype/tolower.c: Likewise.
2475 * libc/ctype/toupper.c: Likewise.
2476 * libc/ctype/towctrans.c: Likewise.
2477 * libc/ctype/towlower.c: Likewise.
2478 * libc/ctype/towupper.c: Likewise.
2479 * libc/string/strcasecmp.c: Likewise.
2480 * libc/string/strcoll.c: Likewise.
2481 * libc/string/strings.tex: Likewise.
2482 * libc/string/strlwr.c: Likewise.
2483 * libc/string/strncasecmp.c: Likewise.
2484 * libc/string/strupr.c: Likewise.
2485 * libc/string/wcscoll.c: Likewise.
2486 * libc/string/wcslcat.c: Likewise.
2487 * libc/string/wcslcpy.c: Likewise.
2488 * libc/string/wcsnlen.c: Likewise.
2489 * libc/string/wcsstr.c: Likewise.
2490 * libc/string/wcstrings.tex: Likewise.
2491 * libc/string/wmemchr.c: Likewise.
2492 * libc/string/wmemcmp.c: Likewise.
2493 * libc/string/wmemcpy.c: Likewise.
2494 * libc/string/wmemmove.c: Likewise.
2495 * libc/string/wmemset.c: Likewise.
2496
2497 2005-10-28 Bob Wilson <bob.wilson@acm.org>
2498
2499 * libc/misc/unctrl.c: Replace FUNCTION description.
2500 * libc/signal/signal.c: Remove documentation for raise and _raise_r.
2501 * libc/stdio/getdelim.c: Fix spelling errors.
2502 * libc/stdio/getw.c: Put RETURNS on a separate line. Fix punctuation.
2503 * libc/stdio/putw.c: Likewise.
2504 * libc/stdlib/a64l.c: Fix formatting, spelling and punctuation in
2505 documentation.
2506 * libc/stdlib/assert.c: Do not capitalize FUNCTION description.
2507 * libc/stdlib/efgcvt.c: Add spaces to FUNCTION description.
2508 * libc/stdlib/envlock.c: Use em-dash in FUNCTION description.
2509 * libc/stdlib/mlock.c: Likewise.
2510 * libc/stdlib/mstats.c: Likewise.
2511 * libc/time/tzlock.c: Likewise.
2512 * libc/stdlib/rand.c: Use "multi-threaded" and "thread-safe" in NOTES.
2513 * libc/stdlib/rand48.c: Remove extra space in FUNCTION description
2514 and hyphenate "pseudo-random".
2515 * libc/string/bcmp.c: Remove extra blank lines in documentation.
2516 * libc/string/strncat.c: Likewise.
2517 * libc/string/memchr.c: Remove extra ">" character in documentation.
2518 * libc/string/strcspn.c: Use "characters" instead of "chars".
2519 * libc/string/strpbrk.c: Likewise.
2520 * libc/string/strerror_r.c: Capitalize "GNU".
2521 * libc/string/strnlen.c: Likewise.
2522 * libc/string/strtok.c: Fix formatting, spelling and punctuation in
2523 documentation. Use "multi-threaded" and "thread-safe" in NOTES.
2524 * libc/string/wcscat.c: Split PORTABILITY into two paragraphs.
2525 * libc/string/wcschr.c: Likewise.
2526 * libc/string/wcscmp.c: Likewise.
2527 * libc/string/wcscpy.c: Likewise.
2528 * libc/string/wcscspn.c: Likewise.
2529 * libc/string/wcslen.c: Likewise.
2530 * libc/string/wcsncat.c: Likewise.
2531 * libc/string/wcsncmp.c: Likewise.
2532 * libc/string/wcsncpy.c: Likewise.
2533 * libc/string/wcsnlen.c: Likewise.
2534 * libc/string/wcspbrk.c: Likewise.
2535 * libc/string/wcsrchr.c: Likewise.
2536 * libc/string/wcsspn.c: Likewise.
2537 * libc/string/wmemchr.c: Likewise.
2538 * libc/string/wmemcmp.c: Likewise.
2539 * libc/string/wmemcpy.c: Likewise.
2540 * libc/string/wmemset.c: Likewise.
2541 * libc/string/wmemmove.c: Likewise. Also fix FUNCTION description.
2542 * libc/string/wcswidth.c: Formatting and punctuation in documentation.
2543 * libc/string/wcwidth.c: Likewise.
2544 * libm/common/s_modf.c: Remove extra period from documentation.
2545 * libm/math/s_isnan.c: Fix formatting, grammar and punctuation in
2546 documentation.
2547 * libm/mathfp/s_isnan.c: Likewise.
2548 * libm/math/s_ldexp.c: Fix punctuation.
2549 * libm/mathfp/s_ldexp.c: Likewise.
2550 * libm/math/w_log.c: Likewise.
2551 * libm/mathfp/s_logarithm.c: Likewise.
2552 * libm/math/w_j0.c: Add spaces to FUNCTION description.
2553 * libm/mathfp/w_jn.c: Likewise.
2554
2555 2005-10-26 Shaun Jackman <sjackman@gmail.com>
2556
2557 * libc/posix/scandir.c (scandir): Update the function
2558 prototype to match the header.
2559 * libc/sys/linux/linuxthreads/bits/libc-lock.h: Remove an
2560 extraneous #endif.
2561 * libc/sys/linux/sys/lock.h: Do not include
2562 machine/weakalias.h, since it's not used by this file.
2563
2564 2005-10-26 Jeff Johnston <jjohnstn@redhat.com>
2565
2566 * libc/Makefile.am: Reorder SUBLIBS so machine and sys
2567 directories can override properly.
2568
2569 2005-10-20 Jeff Johnston <jjohnstn@redhat.com>
2570
2571 * libc/include/math.h (HUGE_VAL, HUGE_VALF, HUGE_VALL): When
2572 gcc is 3.3 or greater, use special gcc builtins.
2573
2574 2005-10-20 Corinna Vinschen <corinna@vinschen.de>
2575
2576 * libc/include/sys/time.h: Declare futimes and lutimes for Cygwin.
2577
2578 2005-10-18 Corinna Vinschen <corinna@vinschen.de>
2579
2580 * libc/include/sys/features.h: Define _POSIX_MEMLOCK_RANGE for Cygwin.
2581
2582 2005-10-14 Jeff Johnston <jjohnstn@redhat.com>
2583
2584 * libc/include/math.h (HUGE_VALF, HUGE_VALL): New.
2585 * libm/common/Makefile.am: Add s_infconst.c support.
2586 * libm/common/Makefile.in: Regenerated.
2587 * libm/common/s_infconst.c: New file with float and
2588 long double infinity support added.
2589 * libm/math/Makefile.am: Remove s_infconst.c support.
2590 * libm/math/Makefile.in: Regenerated.
2591 * libm/math/s_infconst.c: Moved to common directory.
2592 * libm/mathfp/Makefile.am: Remove s_infconst.c support.
2593 * libm/mathfp/Makefile.in: Regenerated.
2594 * libm/mathfp/s_infconst.c: Moved to common directory.
2595
2596 2005-10-14 Jeff Johnston <jjohnstn@redhat.com>
2597
2598 * libc/sys/linux/net/gethostbydns.c (dprintf): Rename to
2599 dbgprintf to prevent conflict with new dprintf function.
2600
2601 2005-10-14 Jeff Johnston <jjohnstn@redhat.com>
2602
2603 * libc/stdio/vfprintf.c (_VFPRINTF_R): Fix up "inf" and
2604 "nan" processing for systems that have long double support.
2605
2606 2005-10-14 Jeff Johnston <jjohnstn@redhat.com>
2607
2608 * libc/sys/linux/sys/types.h (int8_t): Add type.
2609
2610 2005-10-14 Bob Wilson <bob.wilson@acm.org>
2611
2612 * libm/common/Makefile.am (doc): Do not append to $(TARGETDOC).
2613 * libm/common/Makefile.in: Regenerate.
2614 * libm/common/common.tex: Delete file.
2615 * libm/math/math.tex: Include .def files from common/.
2616 * libm/mathfp/mathfp.tex: Likewise.
2617
2618 2005-10-14 Bob Wilson <bob.wilson@acm.org>
2619
2620 * libc/libc.texinfo (Top): Surround this node with @ifnottex
2621 instead of @ifinfo. Update menu to add Introduction and match
2622 SUBDIRS order.
2623 (Introduction): New section.
2624
2625 2005-10-14 Bob Wilson <bob.wilson@acm.org>
2626
2627 * libc/reent/reent.tex (Reentrancy): Replace "Cygnus C Library"
2628 with "Red Hat newlib C Library".
2629 * libc/sys.tex (Stubs): Likewise.
2630 * libm/math/math.tex (Math): Likewise.
2631 * libm/mathfp/mathfp.tex (Math): Likewise.
2632
2633 2005-10-11 Shaun Jackman <sjackman@gmail.com>
2634
2635 * libc/include/stdio.h (dprintf): New declaration.
2636 (vdprintf): Ditto.
2637 * libc/stdio/Makefile.am (GENERAL_SOURCES): Add dprintf.c
2638 and vdprintf.c.
2639 * libc/stdio/Makefile.in: Regenerate.
2640 * libc/stdio/dprintf.c: New file.
2641 * libc/stdio/vdprintf.c: New file.
2642 * libc/stdio/stdio.tex (dprintf): New entry.
2643
2644 2005-10-11 David Weatherford <weath@tensilica.com>
2645
2646 * libc/stdio/vfprintf.c (_VFPRINTF_R): Recognize 'F' format.
2647 Print "inf" and "nan" in lowercase for e/f/g formats and in
2648 uppercase for E/F/G formats.
2649
2650 2005-10-07 Bob Wilson <bob.wilson@acm.org>
2651
2652 * libc/stdlib/mallocr.c (mALLOc, rEALLOCc, mEMALIGn): Set errno
2653 to ENOMEM on failure.
2654
2655 2005-10-06 Ralf Corsepius <ralf.corsepius@rtems.org>
2656
2657 * libc/include/stdint.h: Add [u]int_fast<N>_t types.
2658
2659 2005-10-04 Ralf Corsepius <ralf.corsepius@rtems.org>
2660
2661 * libc/include/stdint.h: Move magic to set __have_long* to the
2662 beginning. Use #if __have* instead of #if defined(__have*).
2663 Minor typo fixes.
2664
2665 2005-10-04 James E Wilson <wilson@specifix.com>
2666
2667 * libc/include/sys/dirent.h (_DIRENT_H_): Delete #include_next. Add
2668 #error.
2669
2670 2005-10-03 Jeff Johnston <jjohnstn@redhat.com>
2671
2672 * libc/sys/linux/include/stdint.h: Include <sys/types.h> and
2673 incorporate Ralf's change below.
2674
2675 2005-10-03 Ralf Corsepius <ralf.corsepius@rtems.org>
2676
2677 * libc/include/stdint.h:
2678 Use __INTMAX_TYPE__ to derive intmax_t.
2679 Use __UINTMAX_TYPE__ to derive uintmax_t.
2680 Fix minor typo.
2681
2682 2005-09-27 Ralf Corsepius <ralf.corsepius@rtems.org>
2683
2684 * libc/include/stdint.h: Correct __STDINT_EXP macro incorrectly
2685 handling GCC >= 4.
2686
2687 2005-09-20 Jeff Johnston <jjohnstn@redhat.com>
2688
2689 * libc/sys/linux/include/stdint.h: Update to match functionality
2690 of generic newlib stdint.h.
2691
2692 2005-09-20 Jeff Johnston <jjohnstn@redhat.com>
2693
2694 * libc/include/stdint.h (__EXP): Rename to __STDINT_EXP
2695 and do not #undef the macro after it is used. Fix typos.
2696 Also change 64-bit constants to use the __have_long64 and
2697 __have_longlong64 flags to determine if long or long long
2698 constants should be used.
2699 * libc/include/inttypes.h: Include stddef.h to get wchar_t
2700 type defined.
2701
2702 2005-09-20 Shaun Jackman <sjackman@gmail.com>
2703
2704 * libc/include/stdint.h: Fix typo in names of
2705 LEAST macros.
2706
2707 2005-09-20 Jeff Johnston <jjohnstn@redhat.com>
2708
2709 * libc/sys/rtems/include/inttypes.h: Moved to...
2710 * libc/include/inttypes.h: ...here.
2711
2712 2005-09-19 Jeff Johnston <jjohnstn@redhat.com>
2713
2714 * libc/sys/rtems/include/stdint.h: Moved to...
2715 * libc/include/stdint.h: ...here.
2716
2717 2005-09-08 Jeff Johnston <jjohnstn@redhat.com>
2718
2719 * Makefile.am: Add include files under bits sub-directory.
2720 * Makefile.in: Regenerated.
2721 * libc/sys/linux/argp/argp-fs-xinl.c: Set __OPTIMIZE__ to
2722 actual value of 1 to be compatible with newer glibc headers.
2723 * libc/sys/linux/sys/cdefs.h: Fix to be compatible with newer
2724 glibc headers.
2725 * libc/sys/linux/sys/dirent.h: Ditto.
2726 * libc/sys/linux/argp/argp-xinl.c: Ditto.
2727 * libc/sys/linux/dl/dl-runtime.c: Make sure fixup and
2728 profile_fixup routines are marked used so they won't be
2729 optimized away.
2730 * libc/sys/linux/dl/dl-cache.c: Don't use weak_extern macro
2731 to mark functions as weak.
2732 * libc/sys/linux/dl/dl-open.c: Ditto.
2733 * libc/sys/linux/iconv/gconv_open.c: Fix to obey new gcc4
2734 rules about lvalues.
2735 * libc/sys/linux/iconv/gconv_simple.c: Ditto.
2736 * libc/sys/linux/linuxthreads/bits/libc-lock.h: Don't use
2737 weak_extern macro to mark functions as weak. Instead always
2738 use #pragma weak.
2739 * iconvdata/jis0208.h: Fix to work with gcc4.
2740 * libc/sys/linux/dl/dl-load.c: Ditto.
2741 * libc/sys/linux/dl/dl-reloc.c: Ditto.
2742 * libc/sys/linux/dl/do-rel.h: Ditto.
2743 * libc/sys/linux/dl/dynamic-link.h: Ditto.
2744 * libc/sys/linux/include/ltdl.h: Ditto.
2745 * libc/sys/linux/machine/i386/dl-machine.h: Ditto.
2746 * libc/sys/linux/machine/i386/weakalias.h: Ditto.
2747 * libc/sys/linux/net/ns_ntoa.c: Ditto.
2748 * libc/sys/linux/bits/initspin.h: New file.
2749 * libc/sys/linux/bits/libc-lock.h: Ditto.
2750 * libc/sys/linux/bits/pthreadtypes.h: Ditto.
2751 * libc/sys/linux/bits/typesizes.h: Ditto.
2752
2753 2005-09-08 Eric Blake <ebb9@byu.net>
2754
2755 * libc/argz/argz_insert.c (argz_insert): Don't die with EINVAL when
2756 before is NULL.
2757
2758 2005-09-08 Brian Dessent <brian@dessent.net>
2759
2760 * sf_lrint.c (lrintf): Mask 'i0' correctly when extracting
2761 mantissa.
2762 * s_lrint.c: Ditto.
2763
2764 2005-09-02 Jeff Johnston <jjohnstn@redhat.com>
2765
2766 * libc/include/stdio.h: Add prototype for viprintf.
2767
2768 2005-09-01 Jeff Johnston <jjohnstn@redhat.com>
2769
2770 * libm/mathfp/s_pow.c: (pow): Change code so 0 raised to
2771 any positive power results in 0.
2772 * libm/mathfp/sf_pow.c (powf): Ditto.
2773
2774 2005-08-31 Paul Brook <paul@codesourcery.com>
2775
2776 * configure.host: Set have_crt0 to no for Arm targts when not
2777 providing syscalls. Set sys_dir=arm unconditionally.
2778 Default have_crt0 based on sys_dir.
2779 * configure.in: Use have_crt0.
2780 * libc/configure.in: Ditto.
2781 * libc/sys/configure.in: Ditto.
2782 * configure: Regenerate.
2783 * libc/configure: Regenerate.
2784 * libc/sys/configure: Regenerate.
2785 * libc/sys/arm/Makefile.am (lib_a_SOURCES): Add aeabi_atexit.c.
2786 Only build other files when providing syscalls.
2787 * libc/sys/arm/Makefile.in: Regenerate.
2788 * libc/sys/arm/aeabi_atexit.c: New file.
2789
2790 2005-08-26 Christopher Faylor <cgf@timesys.com>
2791
2792 * libc/include/string.h: Revert previous change.
2793
2794 2005-08-25 Christopher Faylor <cgf@timesys.com>
2795
2796 * libc/include/string.h: For Cygwin, Define strerror_r as per ISO C.
2797
2798 2005-08-22 Shaun Jackman <sjackman@gmail.com>
2799
2800 * libc/include/_syslist.h: If HAVE_OPENDIR is not defined,
2801 define _opendir as opendir, _readdir as readdir, and
2802 _closedir as closedir so that the implementations in
2803 libc/posix will be used.
2804
2805 2005-08-10 DJ Delorie <dj@redhat.com>
2806
2807 * MAINTAINERS (CPU Ports): Add CPU port maintainer section.
2808
2809 2005-08-10 Stephen Huw Clarke <stephen.clarke@st.com>
2810
2811 * libm/common/sf_fmax.c: Fix to properly handle NaNs.
2812 * libm/common/s_max.c: Ditto.
2813 * libm/common/sf_fmin.c: Ditto.
2814 * libm/common/s_min.c: Ditto.
2815
2816 2005-08-10 DJ Delorie <dj@redhat.com>
2817
2818 * configure.host: Add m32c support.
2819 * libc/include/machine/ieeefp.h: Likewise.
2820 * libc/include/machine/setjmp.h: Likewise.
2821 * libc/include/sys/config.h: Likewise.
2822 * libc/machine/m32c: New directory, Renesas R8C/M16C/M32C support.
2823 * libc/machine/m32c/aclocal.m4: New file.
2824 * libc/machine/m32c/configure: Ditto.
2825 * libc/machine/m32c/configure.in: Ditto.
2826 * libc/machine/m32c/Makefile.am: Ditto.
2827 * libc/machine/m32c/Makefile.in: Ditto.
2828 * libc/machine/m32c/setjmp.S: Ditto.
2829
2830 2005-08-02 Bob Wilson <bob.wilson@acm.org>
2831
2832 * libm/math/ef_hypot.c (__ieee754_hypotf): Add missing exponent bias
2833 to the value for 2^126.
2834
2835 2005-07-26 Hans-Peter Nilsson <hp@bitrange.com>
2836
2837 * libc/machine/cris/libcdtor.c (defaultors): Mark artificially as
2838 used.
2839
2840 2005-07-20 Bob Wilson <bob.wilson@acm.org>
2841 Darin Petkov <darin@tensilica.com>
2842
2843 * libm/math/ef_atan2.c (pi, pi_lo): Use round-to-nearest value of pi.
2844
2845 2005-07-19 Paul Brook <paul@codesourcery.com>
2846
2847 * libc/sys/arm/crt0.S: Ensure doubleword stack alignment.
2848
2849 2005-07-18 Joseph S. Myers <joseph@codesourcery.com>
2850
2851 * testsuite/lib/checkoutput.exp (newlib_check_output): Use test
2852 names after PASS and FAIL which do not depend on source directory
2853 name or on whether test passed or failed.
2854 * testsuite/lib/passfail.exp (newlib_pass_fail): Likewise.
2855
2856 2005-07-08 Ola Hugosson <Ola.Hugosson@anoto.com>
2857
2858 * libc/string/wcsspn.c (wcsspn): Add missing increment of q.
2859
2860 2005-07-07 Shaun Jackman <sjackman@gmail.com>
2861
2862 * libc/unix/ttyname.c (ttyname): Avoid calling _closedir
2863 twice for the same directory. _closedir calls free, and freeing
2864 the same pointer twice may cause a crash.
2865
2866 2005-07-06 Aldy Hernandez <aldyh@redhat.com>
2867
2868 * configure.host: Added entry for ms1*.
2869 * libc/include/machine/ieeefp.h: Handle ms1.
2870 * libc/include/machine/setjmp.h (_JBLEN): Define for ms1.
2871 * libc/machine/ms1/aclocal.m4: New.
2872 * libc/machine/ms1/configure: New.
2873 * libc/machine/ms1/configure.in: New.
2874 * libc/machine/ms1/Makefile.am: New.
2875 * libc/machine/ms1/Makefile.in: New.
2876 * libc/machine/ms1/setjmp.S: New.
2877
2878 2005-07-04 Mark Mitchell <mark@codesourcery.com>
2879
2880 * Makefile.am (site.exp): Set tmpdir.
2881 * Makefile.in: Regenerated.
2882 * testsuite/lib/checkoutput.exp (newlib_check_output): Put
2883 executables in $tmpdir.
2884 * testsuite/lib/flags.exp (libgloss_link_flags): Use the original
2885 libgloss version if not running in the build directory.
2886 * testsuite/lib/newlib.exp (newlib_init): Put testglue.o in
2887 $tmpdir.
2888 * testsuite/lib/passfail.exp (newlib_pass_fail): Put executables
2889 in $tmpdir.
2890
2891 2005-06-28 Dave Korn <dave.korn@artimi.com>
2892
2893 * libm/common/s_lrint.c (lrint): Fix signed-vs-unsigned comparison
2894 and miscalculation caused by fp representation of zero.
2895 * libm/common/sf_lrint.c (lrintf): Likewise.
2896
2897 2005-06-16 Christopher Faylor <cgf@timesys.com>
2898
2899 * libc/stdio/vfprintf.c (cvt): Don't rely on pointer aliasing to
2900 determine characteristics of long double. Use a union instead.
2901 * ldtoa.c (_ldtoa_r): Ditto.
2902 (_ldcheck): Ditto.
2903 (_strtold): Ditto.
2904 (union uconv): New union.
2905
2906 2005-06-03 Jeff Johnston <jjohnstn@redhat.com>
2907
2908 * libc/stdlib/mallocr.c (MALLOC_COPY): Switch to use memmove
2909 instead of memcpy.
2910
2911 2005-05-12 Jeff Johnston <jjohnstn@redhat.com>
2912
2913 * configure.host (mn10300-*): Add long long I/O support by default.
2914
2915 2005-05-12 Jeff Johnston <jjohnstn@redhat.com>
2916
2917 * libc/sys/linux/getpwuid.c: Removed.
2918 * libc/sys/linux/getpwnam.c: Removed.
2919 * libc/sys/linux/getpwent.c: New file containing logic
2920 from files removed above. This allows overriding of file
2921 in libc/unix.
2922 * libc/sys/linux/Makefile.am: Support changes above.
2923 * libc/sys/linux/Makefile.in: Regenerated.
2924
2925 2005-04-28 Jeff Johnston <jjohnstn@redhat.com>
2926
2927 * libc/stdio/vfscanf.c (__svfscanf_r): Fix code thinko
2928 when checking for multiple flags.
2929
2930 2005-04-18 Hans-Peter Nilsson <hp@axis.com>
2931
2932 * configure.host <cris-*-* | crisv32-*-*>: Set
2933 default_newlib_io_long_long="yes".
2934
2935 2005-04-08 Jeff Johnston <jjohnstn@redhat.com>
2936
2937 * libc/include/libgen.h: New file.
2938
2939 2005-04-08 Shaun Jackman <sjackman@gmail.com>
2940
2941 * libc/unix/Makefile.am: Add support for basename and dirname.
2942 * libc/unix/Makefile.in: Regenerated.
2943 * libc/unix/basename.c: New file.
2944 * libc/unix/dirname.c: New file.
2945
2946 2005-04-07 Shaun Jackman <sjackman@gmail.com>
2947
2948 * libc/sys/linux/inode.c (lchown): New function.
2949
2950 2005-04-07 Shaun Jackman <sjackman@gmail.com>
2951
2952 * libc/unix/Makefile.am (LIB_OBJS): Include all the ELIX objects if no
2953 ELIX level is defined.
2954 * libc/unix/Makefile.in: Regenerated.
2955
2956 2005-04-05 Dave Korn <dave.korn@artimi.com>
2957
2958 * libc/stdio/vfscanf.c (__svfscanf_r): If an error occurs processing
2959 something that looks like a "NaN", put back the characters processed.
2960
2961 2005-04-01 Corinna Vinschen <corinna@vinschen.de>
2962
2963 * libc/stdlib/strtod.c (_strtod_r): Never change s00.
2964
2965 2005-03-23 Christopher Faylor <cgf@timesys.com>
2966
2967 * configure.host: For cygwin, redefine CC with cygwin include directory
2968 first to mimic the behavior of the top-level configury. Move include
2969 directory out of newlib_cflags.
2970
2971 2005-03-22 Jeff Johnston <jjohnstn@redhat.com>
2972
2973 * configure.host: For arc, set -DREENTRANT_SYSCALLS_PROVIDED flag on.
2974 * libc/sys/arc/syscalls.c: Change functions to use __errno_r rather
2975 than errno.
2976
2977 2005-03-22 Christopher Faylor <cgf@timesys.com>
2978
2979 * libc/include/machine/_types.h: Make trivial change to comment to
2980 avoid a spurious warning from gcc.
2981
2982 2005-03-21 Nicholas Wourms <nwourms@netscape.net>
2983
2984 * libc/stdio/vfprintf.c: Move newlib.h before _WANT_IO_POS_ARGS test,
2985 since _WANT_IO_POS_ARGS is now defined in there. Remove duplicate
2986 reent.h include.
2987
2988 2005-03-18 Hans-Peter Nilsson <hp@axis.com>
2989 Corinna Vinschen <corinna@vinschen.de>
2990
2991 * libc/include/ctype.h: Remove invalid +1 offset from
2992 ctype macro references to __ctype_ptr.
2993 (_ctype_): Move declaration outside #ifndef __cplusplus.
2994
2995 2005-03-18 Corinna Vinschen <corinna@vinschen.de>
2996
2997 * libc/include/machine/setjmp.h (sigsetjmp): Use GCC extension to
2998 evaluate first parameter only once.
2999 (siglongjmp): Ditto.
3000
3001 2005-03-17 Jeff Johnston <jjohnstn@redhat.com>
3002
3003 * configure.in: Add new check to see if compiler supports
3004 aliasing of arrays and define _HAVE_ARRAY_ALIASING if true.
3005 * configure: Regenerated.
3006 * Makefile.in: Ditto.
3007 * newlib.hin: Add _HAVE_ARRAY_ALIASING.
3008 * libc/ctype/ctype_.c: Check for _HAVE_ARRAY_ALIASING before
3009 aliasing the _ctype_ array to _ctype_b.
3010 * libc/include/ctype.h: Change macros to use __ctype_ptr. Mark
3011 _ctype_ as deprecated.
3012
3013 2005-03-17 Hans-Peter Nilsson <hp@axis.com>
3014
3015 * configure.host (newlib_cflags) <cris-*-*, crisv32-*-*>: Add
3016 -DCOMPACT_CTYPE.
3017
3018 2005-03-06 Ralf Corsepious <ralf.corsepius@rtems.org>
3019
3020 * libc/sys/rtems/include/inttypes.h: New file.
3021 * libc/sys/rtems/include/stdint.h: Ditto.
3022
3023 2005-03-06 Ralf Corsepious <ralf.corsepius@rtems.org>
3024
3025 * libc/string/memcmp.c: Fix to avoid pointer signedness warning.
3026
3027 2005-03-06 Ralf Corsepious <ralf.corsepius@rtems.org>
3028
3029 * libc/include/machine/_types.h: New file.
3030 * libc/include/sys/types.h: Do not check for __rtems__
3031 when including <machine/_types.h>. Remove some redundant
3032 declarations now that <machine/_types.h> is included.
3033 * libc/sys/rtems/machine/_types.h: Removed. Replaced with
3034 shared header file.
3035
3036 2005-02-25 Ralf Corsepious <ralf.corsepius@rtems.org>
3037
3038 * libm/common/fdlibm.h (FLT_UWORD_MAX, FLT_UWORD_HALF_MAX): Add
3039 L qualifier for these long constants.
3040
3041 2005-02-25 Eric Blake <ebb9@byu.net>
3042
3043 * libc/include/time.h (__tzrule_struct): Make offset long, since
3044 a 16-bit int overflows on a 12-hour offset.
3045 * libc/sys/linux/include/time.h: Ditto.
3046 * libc/time/mktime.c (mktime): Use new type of __tzrule.offset.
3047 * libc/time/mktm_r.c: Ditto.
3048 * libc/time/gettzinfo.c: Ditto.
3049 * libc/time/strftime.c (strftime): Fix '%x' to deal with negative
3050 years. Fix '%z' to use long, not int.
3051
3052 2005-02-24 Ralf Corsepious <ralf.corsepius@rtems.org>
3053
3054 * libm/common/s_fpclassify.c: Use __uint32_t instead of int to
3055 manipulate float values in integer form.
3056 * libm/common/sf_round.c: Ditto.
3057
3058 2005-02-24 Ralf Corsepious <ralf.corsepius@rtems.org>
3059
3060 * libc/include/sys/types.h [__rtems__]: Include new
3061 header file machine/_types.h.
3062 * libc/include/machine/types.h: Ditto.
3063 * libc/sys/rtems/machine/_types.h: New file.
3064
3065 2005-02-23 Corinna Vinschen <corinna@vinschen.de>
3066
3067 * libc/include/time.h (_timezone): Change to long also for Cygwin.
3068 (timezone): Drop cast from definition.
3069
3070 2005-02-23 Jeff Johnston <jjohnstn@redhat.com>
3071
3072 * libc/include/time.h [!CYGWIN](_timezone): Change to long.
3073 (__tzrule_type, __tzinfo_type): New types.
3074 (__gettzinfo): New function.
3075 * libc/sys/linux/include/time.h: Ditto.
3076 * libc/time/Makefile.am: Add gettzinfo.c.
3077 * libc/time/Makefile.in: Regenerated.
3078 * libc/time/local.h: Moved __tzrule_type to time.h.
3079 * libc/time/mktime.c: Call __gettzinfo to reference
3080 __tznorth, __tzyear, and __tzrule array.
3081 * libc/time/mktm_r.c: Ditto.
3082 * libc/time/strftime.c: Ditto.
3083 * libc/time/tzset_r.c: Ditto. Also remove definition
3084 of __tzrule which is now in gettzinfo.c. Change _timezone
3085 references to not cast to time_t.
3086 * libc/time/gettzinfo.c: New file.
3087
3088 2005-02-23 Corinna Vinschen <corinna@vinschen.de>
3089
3090 * libc/include/sys/unistd.h: Define getpeereid for Cygwin.
3091
3092 2005-02-22 Corinna Vinschen <corinna@vinschen.de>
3093
3094 * libc/include/sys/unistd.h: Define fdatasync also for Cygwin.
3095
3096 2005-02-16 Eric Blake <ebb9@byu.net>
3097
3098 * libc/time/time.tex: Improve the documentation.
3099 * libc/time/strftime.c: Improve the documentation.
3100 (iso_year_adjust): New helper function.
3101 (strftime): Simplify '%E' and '%O'. Change '%c' to use
3102 recursion. Fix '%C', '%y', and '%Y' to deal with years with more
3103 than 4 characters. Combine '%d' and '%e'. Implement '%D', '%F',
3104 '%g', '%G', '%n', '%R', '%t', '%T', '%u', '%V', '%X', and '%z'.
3105 Avoid core dumps on valid inputs (maxsize == 0, or
3106 tim_p->tm_isdst > 1).
3107
3108 2005-02-08 Corinna Vinschen <corinna@vinschen.de>
3109
3110 * libc/include/pwd.h (struct passwd): Change pw_uid and pw_gid
3111 members to uid_t and gid_t according to SUSv3.
3112 * libc/include/sys/time.h (utimes): Change second parameter
3113 to const according to SUSv3.
3114
3115 2005-02-07 Antony King <antony.king@st.com>
3116
3117 * libc/stdio/clearerr.c (clearerr): Ensure CHECK_INIT() is
3118 called before _flockfile to prevent lock object use before
3119 initialisation. _REENT_SMALL_CHECK_INIT() and CHECK_INIT()
3120 take a struct _reent * instead of a FILE *.
3121 * libc/stdio/fclose.c (_fclose_r): Ditto.
3122 * libc/stdio/feof.c (feof): Ditto.
3123 * libc/stdio/ferror.c (ferror): Ditto.
3124 * libc/stdio/fflush.c (fflush): Ditto.
3125 * libc/stdio/fgetc.c (fgetc): Ditto.
3126 * libc/stdio/fgets.c (fgets): Ditto.
3127 * libc/stdio/fileno.c (fileno): Ditto.
3128 * libc/stdio/fputc.c (fputc): Ditto.
3129 * libc/stdio/fputs.c (fputs): Ditto.
3130 * libc/stdio/fread.c (fread): Ditto.
3131 * libc/stdio/freopen.c (_freopen_r): Ditto.
3132 * libc/stdio/fseek.c (_fseek_r): Ditto.
3133 * libc/stdio/ftell.c (_ftell_r): Ditto.
3134 * libc/stdio/fwrite.c (fwrite): Ditto.
3135 * libc/stdio/getc.c (getc): Ditto.
3136 * libc/stdio/getdelim.c (__getdelim): Ditto.
3137 * libc/stdio/putc.c (putc): Ditto.
3138 * libc/stdio/setvbuf.c (setvbuf): Ditto.
3139 * libc/stdio/ungetc.c (_ungetc_r): Ditto.
3140 * libc/stdio/vfprintf.c (_VFPRINTF_R): Ditto.
3141 * libc/stdio64/freopen64.c (_freopen64_r): Ditto.
3142 * libc/stdio64/fseeko64.c (_fseeko64_r): Ditto.
3143 * libc/stdio64/ftello64.c (_ftello64_r): Ditto.
3144 * libc/stdio/local.h (CHECK_INIT): Argument is now a struct
3145 _reent * instead of a FILE * and so replace incorrect use of
3146 _REENT with argument.
3147 * libc/sys/arm/syscalls.c (CHECK_INIT): Ditto.
3148 * libc/stdio/getchar.c (getchar): _REENT_SMALL_CHECK_INIT() and
3149 CHECK_INIT() take a struct _reent * instead of a FILE *.
3150 * libc/stdio/iprintf.c (iprintf, _iprintf_r): Ditto.
3151 * libc/stdio/iscanf.c (iscanf, _iscanf_r): Ditto.
3152 * libc/stdio/perror.c (perror): Ditto.
3153 * libc/stdio/printf.c (printf, _printf_r): Ditto.
3154 * libc/stdio/putchar.c (putchar): Ditto.
3155 * libc/stdio/puts.c (puts): Ditto.
3156 * libc/stdio/refill.c (__srefill): Ditto.
3157 * libc/stdio/scanf.c (scanf, _scanf_r): Ditto.
3158 * libc/stdio/vfscanf.c (VFSCANF, _VFSCANF_R): Ditto.
3159 * libc/stdio/viprintf.c (viprintf, _viprintf_r): Ditto.
3160 * libc/stdio/viscanf.c (viscanf, _viscanf_r): Ditto.
3161 * libc/stdio/vprintf.c (vprintf, _vprintf_r): Ditto.
3162 * libc/stdio/vscanf.c (vscanf, _vscanf_r): Ditto.
3163 * libc/stdio/wbuf.c (__swbuf): Ditto.
3164 * libc/stdio/wsetup.c (__swsetup): Ditto.
3165 * libc/stdlib/mallocr.c (malloc_stats): Ditto.
3166 * libc/stdlib/mstats.c (_mstats_r): Ditto.
3167 * libc/include/sys/reent.h (_REENT_SMALL_CHECK_INIT): Ditto.
3168 * libc/machine/powerpc/vfscanf.c (vfscanf): Ditto.
3169 * libc/stdio/fgetpos.c (_fgetpos_r): Removed unnecessary calls
3170 to _flockfile and _funlockfile; rely on locking in _ftell_r.
3171 * libc/stdio64/fgetpos64.c (_fgetpos64_r): Ditto (_ftello64_r).
3172 * libc/machine/powerpc/vfprintf.c (__sbprintf): Removed unnecessary
3173 initialision of _data field in FILE structure.
3174 * libc/machine/powerpc/vfprintf.c (VFPRINTF): Added CHECK_INIT() call.
3175
3176 2005-02-07 Jeff Johnston <jjohnstn@redhat.com>
3177
3178 * libc/stdio/findfp.c (__sinit): Protect with new lock.
3179 (__sinit_lock): New lock.
3180 (__sinit_lock_acquire, __sinit_lock_release): New functions.
3181 * libc/stdio/local.h: Add reference to new __sinit locking
3182 functions.
3183
3184 2005-02-07 Jeff Johnston <jjohnstn@redhat.com>
3185
3186 * libc/include/math.h (isfinite, isnormal, isunordered): Change
3187 input variable names to avoid mixups with nesting macros.
3188
3189 2005-01-27 Hans-Peter Nilsson <hp@axis.com>
3190
3191 * configure.host: Add support for cris-*-* and crisv32-*-*.
3192 * libc/include/machine/ieeefp.h: Ditto.
3193 * libc/include/machine/setjmp.h: Ditto.
3194 * libc/machine/cris/configure.in, libc/machine/cris/Makefile.am,
3195 libc/machine/cris/libcdtor.c, libc/machine/cris/setjmp.c,
3196 libc/machine/cris/memmove.c, libc/machine/cris/memcpy.c,
3197 libc/machine/cris/memset.c, libc/machine/cris/include/pthread.h,
3198 libc/machine/cris/sys/signal.h, libc/machine/cris/sys/fcntl.h,
3199 libc/machine/cris/sys/errno.h, libc/machine/cris/aclocal.m4,
3200 libc/machine/cris/configure, libc/machine/cris/Makefile.in: New
3201 files.
3202
3203 2005-01-27 Hans-Peter Nilsson <hp@axis.com>
3204
3205 * testsuite/newlib.string/memmove1.c: New test.
3206
3207 2005-01-27 Hans-Peter Nilsson <hp@axis.com>
3208
3209 * testsuite/include/check.h: Include stdlib.h.
3210
3211 2005-01-27 Hans-Peter Nilsson <hp@axis.com>
3212
3213 * Makefile.am (stmp-targ-include): Support include header files
3214 from machine directories.
3215 (install-data-local): Ditto.
3216 * Makefile.in: Regenerate.
3217
3218 2005-01-24 Jeff Johnston <jjohnstn@redhat.com>
3219
3220 * libc/include/string.h: Remove Linux-specific declaration of
3221 strsignal and add #include <sys/string.h>.
3222 * libc/include/sys/string.h: New file.
3223 * libc/include/sys/linux/sys/string.h: New file with strsignal
3224 declaration deleted above.
3225
3226 2005-01-20 Jeff Johnston <jjohnstn@redhat.com>
3227
3228 * libc/time/strftime.c (strftime): Change %r and %x to be compliant
3229 to POSIX standard for "C" locale. Allow %E and %O modifiers
3230 to be ignored as long as they precede valid specifiers according
3231 to POSIX.
3232
3233 2005-01-19 Shaun Jackman <sjackman@gmail.com>
3234
3235 * libc/stdlib/setenv_r.c (_setenv_r): Call tzset() if the TZ
3236 environment variable is set.
3237
3238 2005-01-19 Shaun Jackman <sjackman@gmail.com>
3239
3240 * tzset_r.c (_tzname): Add a comma.
3241
3242 2005-01-18 Aldy Hernandez <aldyh@redhat.com>
3243
3244 * libc/machine/powerpc/vfprintf.c: Use _REENT when calling
3245 _VFPRINTF_R.
3246
3247 2005-01-07 Paul Brook <paul@codesourcery.com>
3248
3249 * configure.in: Add test for .init_array.
3250 * configure: Regenerate.
3251 * newlib.hin: Add HAVE_INITFINI_ARRAY.
3252 * libc/misc/Makefile.am: Add init.c
3253 * libc/misc/Makefile.in: Regenerate.
3254 * libc/misc/init.c: New file.
3255 * libc/sys/arm/crt0.S: Call __libc_{init,fini}_array instead of
3256 _init/_fini if they exist.
3257
3258 2005-01-06 Jeff Johnston <jjohnstn@redhat.com>
3259
3260 * libc/stdlib/strtod.c (_strtod_r): Add NaN support.
3261 * (strtof): Ditto.
3262 * libc/stdio/vfscanf.c (__svfscanf_r): Ditto.
3263 * Makefile.am (MATHOBJS_IN_LIBC): Add s_nan and sf_nan
3264 functions for use by strtod and strtof.
3265 * Makefile.in: Regenerated.
3266
3267 2005-01-06 Hans-Peter Nilsson <hp@axis.com>
3268
3269 * libc/stdio/ftell.c (ftell_r): Add parenthesis for __SWR
3270 bit-test in combination with NULL test.
3271
3272 2005-01-06 Hans-Peter Nilsson <hp@axis.com>
3273
3274 * README: Fix typo of LGPL. Change "license" to "copyright".
3275
3276 2004-12-17 Jeff Johnston <jjohnstn@redhat.com>
3277
3278 * NEWS: Update with 1.13.0 info.
3279 * README: Ditto.
3280 * acinclude.m4: Change version number to 1.13.0.
3281 * aclocal.m4: Regenerated.
3282 * configure: Ditto.
3283 * doc/aclocal.m4: Ditto.
3284 * doc/configure: Ditto.
3285 * libc/*/aclocal.m4: Ditto.
3286 * libc/*/configure: Ditto.
3287 * libc/libc.texinfo: Ditto.
3288 * libm/*/aclocal.m4: Ditto.
3289 * libm/*/configure: Ditto.
3290 * libm/libm.texinfo: Ditto.
3291 * libc/sys/linux/shared.ld: Add VERS_1.13.
3292
3293 2004-12-17 Christian Groessler <chris@groessler.org>
3294
3295 * libc/machine/z8k/memcmp.S: New file.
3296 * libc/machine/z8k/memcpy.S: Ditto.
3297 * libc/machine/z8k/memmove.S: Ditto.
3298 * libc/machine/z8k/memset.S: Ditto.
3299 * libc/machine/z8k/Makefile.am: Add new files.
3300 * libc/machine/z8k/Makefile.in: Regenerated.
3301 * libc/machine/z8k/setjmp.S: Fix indirect register usage in Z8002
3302 part. Implement Z8002 stdcall version.
3303
3304 2004-12-13 Jeff Johnston <jjohnstn@redhat.com>
3305
3306 * libc/stdio/fread.c (fread): For unbuffered I/O, attempt
3307 a low-level read if we don't get the full amount of bytes so
3308 EOF or error flags will be set.
3309
3310 2004-12-09 Alex Mogilnikov <alx@intellectronika.ru>
3311
3312 * libc/time/tzset_r (_tzset_r): Properly skip over
3313 '/' when it is detected.
3314
3315 2004-12-08 Alex Mogilnikov <alx@intellectronika.ru>
3316
3317 * libc/time/tzset_r (_tzset_r): Fix loop.
3318
3319 2004-12-08 Alex Mogilnikov <alx@intellectronika.ru>
3320
3321 * libc/time/mktm_r (_mktm_r): Fix overflow calculation for
3322 m_day.
3323 (__tzcalc_limits): Fix reference to month array to be zero-based.
3324
3325 2004-12-07 Jeff Johnston <jjohnstn@redhat.com>
3326
3327 * libc/sys/linux/sys/unistd.h: Add prototypes for ftruncate, truncate,
3328 and usleep.
3329
3330 2004-12-03 Jeff Johnston <jjohnstn@redhat.com>
3331
3332 * Makefile.am (libc_la_LDFLAGS): Add -lgcc to handle any
3333 libgcc dependencies.
3334 (libm_la_LDFLAGS): Ditto.
3335 * Makefile.in: Regenerated.
3336
3337 2004-12-03 Shaun Jackman <sjackman@gmail.com>
3338
3339 * libc/sys/linux/linuxthreads/Makefile.am (install-data-local): Fix
3340 our link to use readlink so as to preserve any relative link created
3341 by install-toollibLIBRARIES.
3342 * libc/sys/linux/linuxthreads/Makefile.in: Regenerated.
3343
3344 2004-12-02 Shaun Jackman <sjackman@gmail.com>
3345
3346 * libc/sys/linux/stdlib/glob.c: Include <sys/types.h> which defines
3347 time_t before including sys/stat.h, which uses it.
3348 * libc/sys/linux/sys/stat.h: Include <sys/types.h> and
3349 <linux/time.h> just prior to definition of __KERNEL__ so as to
3350 allow building on Debian Linux where otherwise, mktime would
3351 be redefined.
3352
3353 2004-11-26 Paul Brook <paul@codesourcery.com>
3354
3355 * libc/sys/arm/crt0.S (_start): Add .cantunwind annotation.
3356
3357 2004-11-24 Jeff Johnston <jjohnstn@redhat.com>
3358
3359 * libc/include/stdlib.h (putenv, _putenv_r): Change to remove
3360 const for value string parameter to match Single Unix and glibc.
3361 * libc/stdlib/putenv.c: Ditto.
3362 * libc/stdlib/putenv_r.c: Ditto.
3363
3364 2004-11-24 Jeff Johnston <jjohnstn@redhat.com>
3365
3366 * libc/stdio/Makefile.am: Fix missing vfscanf.
3367 * libc/stdio/Makefile.in: Regenerated.
3368
3369 2004-11-23 Jeff Johnston <jjohnstn@redhat.com>
3370
3371 * libc/include/stdio.h: Add new iprintf and iscanf variants. Also
3372 do some reordering.
3373 * libc/machine/powerpc/vfscanf.c: Remove __sccl function.
3374 * libc/stdio/Makefile.am: Add support for new iprintf and iscanf
3375 family functions.
3376 * libc/stdio/Makefile.in: Regenerated.
3377 * libc/stdio/fiprintf.c: Remove doc to siprintf.c.
3378 * libc/stdio/iprintf.c: Ditto.
3379 * libc/stdio/local.h (__svfiscanf_r): New prototype.
3380 * libc/stdio/siprintf.c: Add docs for various iprintf family functions.
3381 * libc/stdio/sniprintf.c: Move docs to siprintf.c.
3382 * libc/stdio/stdio.tex: Add new functions.
3383 * libc/stdio/vfscanf.c: Split out __sccl function to separate
3384 file and add special name defines so this file can be used
3385 to build vfiscanf.o.
3386 * libc/stdio/asiprintf.c: New file.
3387 * libc/stdio/fiscanf.c: Ditto.
3388 * libc/stdio/iscanf.c: Ditto.
3389 * libc/stdio/sccl.c: Ditto.
3390 * libc/stdio/siscanf.c: Ditto.
3391 * libc/stdio/vasiprintf.c: Ditto.
3392 * libc/stdio/viprintf.c: Ditto.
3393 * libc/stdio/viscanf.c: Ditto.
3394 * libc/stdio/vsiprintf.c: Ditto.
3395 * libc/stdio/vsiscanf.c: Ditto.
3396 * libc/stdio/vsniprintf.c: Ditto.
3397
3398 2004-11-19 Shaun Jackman <sjackman@gmail.com>
3399
3400 * libc/include/stdio.h: Add sniprintf.
3401 * libc/stdio/Makefile.am: Add sniprintf.c.
3402 * libc/stdio/Makefile.in: Regenerated.
3403 * libc/stdio/sniprintf.c: New file.
3404 * libc/stdio/stdio.tex: Add sniprintf.
3405
3406 2004-11-17 Christopher Faylor <cgf@timesys.com>
3407
3408 * libc/stdio/refill.c (__srefill): Try again after EOF on Cygwin. Clear
3409 EOF flag if successful.
3410
3411 2004-10-28 Christopher Faylor <cgf@timesys.com>
3412
3413 * libc/include/sys/signal.h: Move <signal.h> include to bottom of file
3414 so that all relevant definitions have been performed for use in the
3415 include.
3416
3417 2004-10-26 Jason Tishler <jason@tishler.net>
3418
3419 * libc/stdio/fread.c (fread): Fix return value for unbuffered
3420 fread.
3421
3422 2004-10-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3423
3424 * libc/include/machine/setjmp.h: Add AVR support.
3425 * libc/sys/rtems/crt0.S [__AVR__]: Add __stack.
3426
3427 2004-10-08 Jeff Johnston <jjohnstn@redhat.com>
3428
3429 * libc/include/sys/signal.h: If <signal.h> didn't include
3430 this header file, include <signal.h> to account for
3431 applications that take advantage that the two header
3432 files are the same in glibc.
3433
3434 2004-10-05 Tomer Levi <Tomer.Levi@nsc.com>
3435
3436 * configure.host: Add support for crx.
3437 * libc/include/machine/ieeefp.h: Ditto.
3438 * libc/include/machine/setjmp.h: Ditto.
3439 * libc/machine/crx/Makefile.am: New file.
3440 * libc/machine/crx/configure.in: Ditto.
3441 * libc/machine/crx/setjmp.S: Ditto.
3442 * libc/machine/crx/getenv.c: Ditto.
3443 * libc/machine/crx/aclocal.m4: Generate.
3444 * libc/machine/crx/configure: Ditto.
3445 * libc/machine/crx/Makefile.in: Ditto.
3446 * libc/machine/crx/sys/asm.h: New file.
3447 * libc/machine/crx/sys/libh.h: Ditto.
3448 * libc/machine/crx/sys/syscall.h: Ditto.
3449
3450 2004-10-05 Jeff Johnston <jjohnstn@redhat.com>
3451
3452 * Makefile.am (stmp-targ-include): Support sys header files
3453 from machine directories.
3454 * Makefile.in: Regenerated.
3455
3456 2004-10-04 Jeff Johnston <jjohnstn@redhat.com>
3457
3458 * libc/stdio/vfscanf.c (__svfscanf_r): For int conversions,
3459 count skipped zero characters as part of the nread count for %n.
3460 * libc/machine/powerpc/vfscanf.c: Ditto.
3461
3462 2004-09-24 Jeff Johnston <jjohnstn@redhat.com>
3463
3464 * libc/stdio/local.h: Include <stdlib.h>.
3465
3466 2004-09-24 Corinna Vinschen <corinna@vinschen.de>
3467
3468 * libc/stdio/fread.c (fread): Include <malloc.h>.
3469
3470 2004-09-22 Jeff Johnston <jjohnstn@redhat.com>
3471
3472 * libc/stdio/fread.c (fread): For non-space-optimized case,
3473 add special code for unbuffered files to use user buffer and
3474 only require one low-level system read.
3475
3476 2004-09-21 Ian Lance Taylor <ian@wasabisystems.com>
3477
3478 * libc/machine/xscale/setjmp.S: New file, copied from
3479 libc/machine/arm/setjmp.S.
3480 * libc/machine/xscale/Makefile.am (lib_a_SOURCES): Add setjmp.S.
3481 * libc/machine/xscale/Makefile.in: Regenerate.
3482
3483 2004-09-16 Antony King <antony.king@st.com>
3484
3485 * libc/include/sys/lock.h: Replaced empty {} with (0) to conform
3486 with locking API.
3487 * libc/include/sys/stdio.h: (_flockfile)[!_SINGLE_THREAD]: Add
3488 check for__SSTR in _flags and if set, skip lock request.
3489 (_funlockfile)[!SINGLE_THREAD]: Ditto.
3490 * libc/stdio/local.h (CHECK_INIT): Added check that _REENT is
3491 not NULL.
3492 * libc/stdio/siprintf.c (siprintf, _siprintf_r): Added missing
3493 initialisation of _file to -1 in local FILE.
3494 * libc/stdio/snprintf.c (snprintf, _snprintf_r): Ditto.
3495 * libc/stdio/sscanf.c (sscanf, _sscanf_r): Ditto.
3496 * libc/stdio/vsnprintf.c (vsnprintf, _vsnprintf_r): Ditto.
3497 * libc/stdio/vsscanf.c (_vsscanf_r): Ditto.
3498 * libc/stdio/sscanf.c (sscanf, _sscanf_r): Added __SSTR flag to
3499 _flags in local FILE to prevent locking.
3500 * libc/stdio/vsscanf.c (_vsscanf_r): Ditto.
3501
3502 2004-09-16 Antony King <antony.king@st.com>
3503
3504 * libc/stdio/fwalk.c (_fwalk): Remove check for _GLOBAL_REENT
3505 and only walk the reentrancy parameter.
3506 (_fwalk_reent): Ditto.
3507 * libc/stdlib/exit.c: Remove out of date _REENT_ONLY check.
3508
3509 2004-09-16 Antony King <antony.king@st.com>
3510
3511 * libc/stdio64/freopen64.c: Remove casting of fp lock to
3512 _LOCK_RECURSIVE_T.
3513
3514 2004-09-16 Antony King <antony.king@st.com>
3515
3516 * libc/time/tzlock.c: Add default stubs that use generic
3517 locking code.
3518
3519 2004-09-16 Antony King <antony.king@st.com>
3520
3521 * libc/ctype/ctype.tex: Added missing documentation.
3522 * libc/stdio/stdio.tex Ditto.
3523 * libc/stdlib/stdlib.tex Ditto.
3524 * libc/string/strings.tex Ditto.
3525 * libc/time/time.tex: Ditto.
3526 * libc/stdio/setbuffer.c: Removed setlinebuf documentation.
3527
3528 2004-09-15 Corinna Vinschen <vinschen@redhat.com>
3529
3530 * libc/reent/impure.c (reent_data): Define as alias to impure_data
3531 when building for Cygwin.
3532 * libc/include/sys/reent.h (_GLOBAL_REENT): Revert definition to
3533 _global_impure_ptr.
3534
3535 2004-09-15 Jeff Johnston <jjohnstn@redhat.com>
3536
3537 * configure.host: Reverting 2004-09-14 change as fix has occurred on
3538 Cygwin side.
3539 * configure.in: Ditto.
3540 * libc/configure.in: Ditto.
3541 * libc/sys/configure.in: Ditto.
3542 * configure: Ditto.
3543 * libc/configure: Ditto.
3544 * libc/sys/configure: Ditto.
3545 * libc/include/sys/reent.h: Ditto.
3546 * libc/stdlib/__atexit.c: Ditto.
3547 * libc/stdlib/__call_atexit.c: Ditto.
3548 * libc/stdlib/cxa_atexit.c: Ditto.
3549 * libc/stdlib/cxa_finalize.c: Ditto.
3550 * libc/sys/cygwin/Makefile.am: Removed again.
3551 * libc/sys/cygwin/Makefile.in: Ditto.
3552 * libc/sys/cygwin/aclocal.m4: Ditto.
3553 * libc/sys/cygwin/configure: Ditto.
3554 * libc/sys/cygwin/configure.in: Ditto.
3555 * libc/sys/cygwin/dummy.c: Ditto.
3556 * libc/sys/cygwin/sys/reent.h: Ditto.
3557
3558 2004-09-14 Jeff Johnston <jjohnstn@redhat.com>
3559
3560 * configure.host: Add Cygwin sys directory.
3561 * configure.in: Do not set CRT0 for cygwin.
3562 * libc/configure.in: Ditto.
3563 * libc/sys/configure.in: Ditto.
3564 * configure: Regenerated.
3565 * libc/configure: Ditto.
3566 * libc/sys/configure: Ditto.
3567 * libc/include/sys/reent.h: Add __REENT_HAS_CXA_SUPPORT flag.
3568 * libc/stdlib/__atexit.c: Keep cxa support protected by new
3569 __REENT_HAS_CXA_SUPPORT flag.
3570 * libc/stdlib/__call_atexit.c: Ditto.
3571 * libc/stdlib/cxa_atexit.c: Ditto.
3572 * libc/stdlib/cxa_finalize.c: Ditto.
3573 * libc/sys/cygwin/Makefile.am: New file.
3574 * libc/sys/cygwin/Makefile.in: Ditto.
3575 * libc/sys/cygwin/aclocal.m4: Ditto.
3576 * libc/sys/cygwin/configure: Ditto.
3577 * libc/sys/cygwin/configure.in: Ditto.
3578 * libc/sys/cygwin/dummy.c: Ditto.
3579 * libc/sys/cygwin/sys/reent.h: Ditto. This file is stabilized
3580 version of reent.h.
3581
3582 2004-09-13 Artem B. Bityuckiy <dedekind@oktetlabs.ru>
3583
3584 * libc/iconv/iconv.tex: Updated with new content.
3585 * libc/iconv/lib/iconvnls.c: Reference ICONV_DEFAULT_NLSPATH
3586 instead of NLS_DEFAULT_NLSPATH.
3587 * libc/iconv/lib/iconvnls.h: Fix typo.
3588 * libc/include/sys/iconvnls.h: New file.
3589
3590 2004-09-09 Paul Brook <paul@codesourcery.com>
3591
3592 * libc/include/sys/reent.h (struct _on_exit_args): Add _dso_handle
3593 and _is_cxa.
3594 (struct _atexit): Add _next when _REENT_SMALL.
3595 (struct _reent): Add _atexit0 when _REENT_SMALL.
3596 (_REENT_INIT_PTR): Adjust.
3597 * libc/stdlib/Makefile.am (GENERAL_SOURCES): Add __atexit.c and
3598 __call_exit.c.
3599 (EXTENDED_SOURCES): Add cxa_atexit.c and cxa_finalize.c.
3600 * libc/stdlib/Makefile.in: Regenerate.
3601 * libc/stdlib/__atexit.c: New file.
3602 * libc/stdlib/__call_atexit.c: New file.
3603 * libc/stdlib/atexit.h: Remove old definitions. Add new.
3604 * libc/stdlib/atexit.c (atexit): Use __register_exitproc.
3605 * libc/stdlib/cxa_atexit.c: New file.
3606 * libc/stdlib/cxa_finalize.c: New file.
3607 * libc/stdlib/exit.c (exit): Use __call_exitprocs.
3608 * libc/stdlib/on_exit.c (on_exit): Use __register_exitproc.
3609 2004-09-09 Jeff Johnston <jjohnstn@redhat.com>
3610 * libc/reent/reent.c [_REENT_SMALL]: Fix reference to
3611 _on_exit_args_ptr.
3612
3613 2004-08-23 Jeff Johnston <jjohnstn@redhat.com>
3614
3615 * libc/include/sys/unistd.h (getpass): Change prototype to use
3616 const instead of __const.
3617
3618 2004-08-16 Nathan Sidwell <nathan@codesourcery.com>
3619
3620 * libc/stdio/vfscanf.c (_NO_LONGLONG): Move out of FLOATING_POINT
3621 #if.
3622
3623 2004-08-12 Jeff Johnston <jjohnstn@redhat.com>
3624
3625 * libc/sys/linux/sys/types.h (u64): New typedef to allow building
3626 on linux systems with glibc 2.3.3 installed.
3627 * libc/sys/linux/dl/dl-runtime.c: Fix prototypes for fixup and
3628 profile_fixup so newlib can build on fc3 system.
3629
3630 2004-07-30 Alexandre Oliva <aoliva@redhat.com>
3631
3632 Introduce SH2a support.
3633 2004-03-16 Corinna Vinschen <vinschen@redhat.com>
3634 * libc/include/machine/ieeefp.h: Define _DOUBLE_IS_32BITS for
3635 __SH2A_SINGLE_ONLY__, too.
3636 * libc/machine/sh/asm.h: Define DELAYED_BRANCHES for __SH2A__, too.
3637 2004-02-24 Corinna Vinschen <vinschen@redhat.com>
3638 * libc/sys/sh/crt0.S (start_l): Support sh2a-nofpu. Fix comments.
3639 2004-02-10 DJ Delorie <dj@redhat.com>
3640 * libc/sys/sh/crt0.S (start_l): Support sh2a.
3641
3642 2004-07-29 Jeff Johnston <jjohnstn@redhat.com>
3643
3644 * libc/time/strptime.c: Correct full-name of "March" typo.
3645
3646 2004-07-16 Anil Paranjpe <anilp1@kpitcummins.com>
3647
3648 * configure.host (h8300*-*-*): Default long long printing support.
3649
3650 2004-07-16 Jeff Johnston <jjohnstn@redhat.com>
3651
3652 * libc/stdio/fvwrite.c (_sfvwrite): For asprintf family
3653 calls, if realloc fails, free up buffer as it is no longer
3654 used.
3655
3656 2004-07-07 Artem B. Bityuckiy <dedekind@oktetlabs.ru>
3657
3658 * libc/iconv/iconv.tex: Updated to represent recent changes.
3659 * libc/iconv/lib/iconv.c: Documentation updated.
3660
3661 2004-07-07 Nick Clifton <nickc@redhat.com>
3662
3663 * configure.host (newlib_cflags): Define PREFER_SIZE_OVER_SPEED
3664 for xStormy16.
3665
3666 2004-07-06 Chris Demetriou <cgd@broadcom.com>
3667
3668 * configure.host (mips*-*-elf*): Default long long printing
3669 support.
3670
3671 2004-07-05 Jeff Johnston <jjohnstn@redhat.com>
3672
3673 * libc/Makefile.am (libc.dvi): Add target and specify
3674 same dependencies as libc.info.
3675 * libc/Makefile.in: Regenerated.
3676 * libm/Makefile.am (libm.dvi): Add target and specify
3677 same dependencies as libm.info.
3678 * libm/Makefile.in: Regenerated.
3679
3680 2004-06-29 Artem B. Bityuckiy <dedekind@oktetlabs.ru>
3681
3682 * acinclude.m4: Move --enable-newlib-iconv option back here.
3683 * configure.in: Remove --enable-newlib-iconv option. Don't
3684 tie iconv support to --enable-newlib-mb.
3685 * aclocal.m4: Regenerated.
3686 * configure: Ditto.
3687 * doc/aclocal.m4, doc/configure: Ditto.
3688 * iconvdata/aclocal.m4, iconvdata/configure: Ditto.
3689 * libm/*/aclocal.m4: Ditto.
3690 * libm/*/configure: Ditto.
3691 * libc/*/aclocal.m4: Ditto.
3692 * libc/*/configure: Ditto.
3693
3694 2004-06-25 Artem B. Bityuckiy <dedekind@oktetlabs.ru>
3695
3696 * acinclude.m4: Move iconv options into configure.in.
3697 * aclocal.m4: Regenerated.
3698 * configure: Ditto.
3699 * configure.in: Add iconv options.
3700 * newlib.hin: Add new iconv encodings and remove deleted ones.
3701 * doc/aclocal.m4: Regenerated.
3702 * doc/configure: Ditto.
3703 * iconvdata/aclocal.m4: Ditto.
3704 * iconvdata/configure: Ditto.
3705 * libc/iconv: Design change. New size-optimized ccs format.
3706 * libc/iconv/AUTHORS: Removed.
3707 * libc/iconv/COPYING: Ditto.
3708 * libc/iconv/README.ORIGINAL: Ditto.
3709 * libc/iconv/README.TODO: Ditto.
3710 * libc/iconv/charset.aliases: Ditto.
3711 * libc/iconv/encoding.aliases: New file.
3712 * libc/iconv/Makefile.am: Updated.
3713 * libc/iconv/Makefile.in: Regenerated.
3714 * libc/iconv/iconv.tex: Updated.
3715 * libc/iconv/ccs/Makefile.am: Ditto.
3716 * libc/iconv/ccs/Makefile.in: Regenerated.
3717 * libc/iconv/ccs/big5.c: Updated.
3718 * libc/iconv/ccs/cns11643_plane1.c: Ditto.
3719 * libc/iconv/ccs/cns11643_plane14.c: Ditto.
3720 * libc/iconv/ccs/cns11643_plane2.c: Ditto.
3721 * libc/iconv/ccs/cp775.c: Ditto.
3722 * libc/iconv/ccs/cp850.c: Ditto.
3723 * libc/iconv/ccs/cp852.c: Ditto.
3724 * libc/iconv/ccs/cp855.c: Ditto.
3725 * libc/iconv/ccs/cp866.c: Ditto.
3726 * libc/iconv/ccs/iso_8859_1.c: Ditto.
3727 * libc/iconv/ccs/README.CCS.SOURCES: Removed.
3728 * libc/iconv/ccs/gb_2312_80.c: Ditto.
3729 * libc/iconv/ccs/iconv_mktbl: Ditto.
3730 * libc/iconv/ccs/jis_x0201.c: Ditto.
3731 * libc/iconv/ccs/jis_x0208_1983.c: Ditto.
3732 * libc/iconv/ccs/shift_jis.c: Ditto.
3733 * libc/iconv/ccs/us_ascii.c: Ditto.
3734 * libc/iconv/ccs/ccs.h: New file.
3735 * libc/iconv/ccs/ccsbi.c: Ditto.
3736 * libc/iconv/ccs/ccsbi.h: Ditto.
3737 * libc/iconv/ccs/ccsnames.h: Ditto.
3738 * libc/iconv/ccs/iso_8859_10.c: Ditto.
3739 * libc/iconv/ccs/iso_8859_11.c: Ditto.
3740 * libc/iconv/ccs/iso_8859_13.c: Ditto.
3741 * libc/iconv/ccs/iso_8859_14.c: Ditto.
3742 * libc/iconv/ccs/iso_8859_3.c: Ditto.
3743 * libc/iconv/ccs/iso_8859_6.c: Ditto.
3744 * libc/iconv/ccs/iso_8859_7.c: Ditto.
3745 * libc/iconv/ccs/iso_8859_8.c: Ditto.
3746 * libc/iconv/ccs/iso_8859_9.c: Ditto.
3747 * libc/iconv/ccs/iso_ir_111.c: Ditto.
3748 * libc/iconv/ccs/jis_x0201_1976.c: Ditto.
3749 * libc/iconv/ccs/jis_x0208_1990.c: Ditto.
3750 * libc/iconv/ccs/koi8_ru.c: Ditto.
3751 * libc/iconv/ccs/koi8_uni.c: Ditto.
3752 * libc/iconv/ccs/mktbl.pl: Ditto.
3753 * libc/iconv/ccs/win_1250.c: Ditto.
3754 * libc/iconv/ccs/win_1251.c: Ditto.
3755 * libc/iconv/ccs/win_1252.c: Ditto.
3756 * libc/iconv/ccs/win_1253.c: Ditto.
3757 * libc/iconv/ccs/win_1254.c: Ditto.
3758 * libc/iconv/ccs/win_1255.c: Ditto.
3759 * libc/iconv/ccs/win_1256.c: Ditto.
3760 * libc/iconv/ccs/win_1257.c: Ditto.
3761 * libc/iconv/ccs/win_1258.c: Ditto.
3762 * libc/iconv/ccs/iso_8859_15.c: Updated.
3763 * libc/iconv/ccs/iso_8859_2.c: Ditto.
3764 * libc/iconv/ccs/iso_8859_4.c: Ditto.
3765 * libc/iconv/ccs/iso_8859_5.c: Ditto.
3766 * libc/iconv/ccs/jis_x0212_1990.c: Ditto.
3767 * libc/iconv/ccs/koi8_r.c: Ditto.
3768 * libc/iconv/ccs/koi8_u.c: Ditto.
3769 * libc/iconv/ccs/ksx1001.c: Ditto.
3770 * libc/iconv/ccs/binary/gb_2312_80.cct: Removed.
3771 * libc/iconv/ccs/binary/jis_x0201.cct: Ditto.
3772 * libc/iconv/ccs/binary/shift_jis.cct: Ditto.
3773 * libc/iconv/ccs/binary/us_ascii.cct: Ditto.
3774 * libc/iconv/ccs/binary/jis_x0208_1983.cct: Ditto.
3775 * libc/iconv/ccs/binary/Makefile.am: Updated.
3776 * libc/iconv/ccs/binary/Makefile.in: Regenerated.
3777 * libc/iconv/ccs/binary/big5.cct: Updated.
3778 * libc/iconv/ccs/binary/cns11643_plane1.cct: Ditto.
3779 * libc/iconv/ccs/binary/cns11643_plane14.cct: Ditto.
3780 * libc/iconv/ccs/binary/cns11643_plane2.cct: Ditto.
3781 * libc/iconv/ccs/binary/cp775.cct: Updated.: Ditto.
3782 * libc/iconv/ccs/binary/cp850.cct: Ditto.: Ditto.
3783 * libc/iconv/ccs/binary/cp852.cct: Ditto.: Ditto.
3784 * libc/iconv/ccs/binary/cp855.cct: Ditto.: Ditto.
3785 * libc/iconv/ccs/binary/cp866.cct: Ditto.: Ditto.
3786 * libc/iconv/ccs/binary/iso_8859_1.cct: Ditto.
3787 * libc/iconv/ccs/binary/iso_8859_15.cct: Ditto.
3788 * libc/iconv/ccs/binary/iso_8859_4.cct: Ditto.
3789 * libc/iconv/ccs/binary/iso_8859_5.cct: Ditto.
3790 * libc/iconv/ccs/binary/iso_8859_2.cct: Ditto.
3791 * libc/iconv/ccs/binary/jis_x0212_1990.cct: Ditto.
3792 * libc/iconv/ccs/binary/koi8_r.cct: Ditto.
3793 * libc/iconv/ccs/binary/koi8_u.cct: Ditto.
3794 * libc/iconv/ccs/binary/ksx1001.cct: Ditto.
3795 * libc/iconv/ccs/binary/iso_8859_10.cct: New file.
3796 * libc/iconv/ccs/binary/iso_8859_11.cct: Ditto.
3797 * libc/iconv/ccs/binary/iso_8859_13.cct: Ditto.
3798 * libc/iconv/ccs/binary/iso_8859_14.cct: Ditto.
3799 * libc/iconv/ccs/binary/iso_8859_3.cct: Ditto.
3800 * libc/iconv/ccs/binary/iso_8859_6.cct: Ditto.
3801 * libc/iconv/ccs/binary/iso_8859_7.cct: Ditto.
3802 * libc/iconv/ccs/binary/iso_8859_8.cct: Ditto.
3803 * libc/iconv/ccs/binary/iso_8859_9.cct: Ditto.
3804 * libc/iconv/ccs/binary/iso_ir_111.cct: Ditto.
3805 * libc/iconv/ccs/binary/jis_x0201_1976.cct: Ditto.
3806 * libc/iconv/ccs/binary/jis_x0208_1990.cct: Ditto.
3807 * libc/iconv/ccs/binary/koi8_ru.cct: Ditto.
3808 * libc/iconv/ccs/binary/koi8_uni.cct: Ditto.
3809 * libc/iconv/ccs/binary/win_1250.cct: Ditto.
3810 * libc/iconv/ccs/binary/win_1251.cct: Ditto.
3811 * libc/iconv/ccs/binary/win_1252.cct: Ditto.
3812 * libc/iconv/ccs/binary/win_1253.cct: Ditto.
3813 * libc/iconv/ccs/binary/win_1254.cct: Ditto.
3814 * libc/iconv/ccs/binary/win_1255.cct: Ditto.
3815 * libc/iconv/ccs/binary/win_1256.cct: Ditto.
3816 * libc/iconv/ccs/binary/win_1257.cct: Ditto.
3817 * libc/iconv/ccs/binary/win_1258.cct: Ditto.
3818 * libc/iconv/ces/Makefile.am: Updated.
3819 * libc/iconv/ces/Makefile.in: Regenerated.
3820 * libc/iconv/ces/ucs-2-internal.c: Updated.
3821 * libc/iconv/ces/ucs-4-internal.c: Ditto.
3822 * libc/iconv/ces/utf-16.c: Ditto.
3823 * libc/iconv/ces/utf-8.c: Ditto.
3824 * libc/iconv/ces/cesbi.c: New file.
3825 * libc/iconv/ces/cesbi.h: Ditto.
3826 * libc/iconv/ces/cesdeps.h: Ditto.
3827 * libc/iconv/ces/euc.c: Ditto.
3828 * libc/iconv/ces/mkdeps.pl: Ditto.
3829 * libc/iconv/ces/table-pcs.c: Ditto.
3830 * libc/iconv/ces/table.c: Ditto.
3831 * libc/iconv/ces/ucs-2.c: Ditto.
3832 * libc/iconv/ces/ucs-4.c: Ditto.
3833 * libc/iconv/ces/us-ascii.c: Ditto.
3834 * libc/iconv/ces/euc-jp.c: Removed.
3835 * libc/iconv/ces/euc-kr.c: Ditto.
3836 * libc/iconv/ces/euc-tw.c: Ditto.
3837 * libc/iconv/ces/gb2312.c: Ditto.
3838 * libc/iconv/ces/iso-10646-ucs-2.: Ditto.c
3839 * libc/iconv/ces/iso-10646-ucs-4.c: Ditto.
3840 * libc/iconv/lib/Makefile.am: Updated.
3841 * libc/iconv/lib/Makefile.in: Regenerated.
3842 * libc/iconv/lib/endian.h: Updated.
3843 * libc/iconv/lib/iconv.c: Ditto.
3844 * libc/iconv/lib/local.h: Ditto.
3845 * libc/iconv/lib/aliases.c: Removed.
3846 * libc/iconv/lib/bialiasesi.c: Ditto.
3847 * libc/iconv/lib/biccs.c: Ditto.
3848 * libc/iconv/lib/bices.c: Ditto.
3849 * libc/iconv/lib/ccs.c: Ditto.
3850 * libc/iconv/lib/ces.c: Ditto.
3851 * libc/iconv/lib/ces_euc.c: Ditto.
3852 * libc/iconv/lib/ces_iso2022.c: Ditto.
3853 * libc/iconv/lib/ces_table.c: Ditto.
3854 * libc/iconv/lib/converter.c: Ditto.
3855 * libc/iconv/lib/deps.h: Ditto.
3856 * libc/iconv/lib/loaddata.c: Ditto.
3857 * libc/iconv/lib/aliasesbi.c: New file.
3858 * libc/iconv/lib/aliasesi.c: Ditto.
3859 * libc/iconv/lib/conv.h: Ditto.
3860 * libc/iconv/lib/encnames.h: Ditto.
3861 * libc/iconv/lib/encoding.deps: Ditto.
3862 * libc/iconv/lib/iconvnls.c: Ditto.
3863 * libc/iconv/lib/iconvnls.h: Ditto.
3864 * libc/iconv/lib/nullconv.c: Ditto.
3865 * libc/iconv/lib/ucsconv.c: Ditto.
3866 * libc/iconv/lib/ucsconv.h: Ditto.
3867 * libc/include/iconv.h: Update copyright.
3868 * libc/*/aclocal.m4: Regenerated.
3869 * libc/*/configure: Ditto.
3870 * libm/*/aclocal.m4: Ditto.
3871 * libm/*/configure: Ditto.
3872
3873 2004-06-22 Alexandre Oliva <aoliva@redhat.com>
3874
3875 * libc/include/machine/setjmp.h [__H8300__] (_JBTYPE): Define,
3876 instead of typedefing jmp_buf.
3877
3878 2003-07-02 Richard Sandiford <rsandifo@redhat.com>
3879 * libc/machine/h8300/Makefile.am (lib_a_SOURCES): Add h8sx_strcpy.S.
3880 * libc/machine/h8300/defines.h (LEN): New macro.
3881 * libc/machine/h8300/memcpy.S: Add h8sx version.
3882 * libc/machine/h8300/memset.S: Likewise.
3883 * libc/machine/h8300/strcmp.S: Likewise.
3884 * libc/machine/h8300/setjmp.S: Use h8sx move instructions.
3885 * libc/machine/h8300/h8sx_strcpy.S: New file.
3886 2003-06-30 Richard Sandiford <rsandifo@redhat.com>
3887 * libc/include/machine/ieeefp.h: Extend __H8300S__ handling to
3888 __H8300SX__.
3889 * libc/include/machine/setjmp.h: Likewise.
3890 * libc/include/sys/config.h: Likewise.
3891 * libc/machine/h8300/defines.h: Likewise.
3892 * libc/machine/h8300/setjmp.S: Likewise.
3893 * libc/machine/h8300/strcmp.S: Likewise.
3894 * libc/sys/h8300hms/close.S: Likewise.
3895 * libc/sys/h8300hms/fstat.S: Likewise.
3896 * libc/sys/h8300hms/lseek.S: Likewise.
3897 * libc/sys/h8300hms/read.S: Likewise.
3898 * libc/sys/h8300hms/write.S: Likewise.
3899 * libc/sys/h8300hms/crt0.S: Likewise.
3900 * libc/machine/h8300/setarch.h: Use .h8300sx or .h8300sxn if
3901 __H8300SX__ is defined.
3902 * libc/sys/h8300hms/setarch.h: Likewise.
3903
3904 2004-06-17 Jeff Johnston <jjohnstn@redhat.com>
3905
3906 * libc/include/sys/reent.h (_GLOBAL_REENT): Back
3907 out change which set _GLOBAL_REENT to _global_impure_ptr until
3908 we understand why Cygwin breaks because of it.
3909
3910 2004-06-14 Jeff Johnston <jjohnstn@redhat.com>
3911
3912 * libc/sys/linux/machine/i386/syscall.h: For now, set up
3913 __syscall_return macro for systems with vsyscall.
3914
3915 2004-06-11 Antony King <antony.king@st.com>
3916
3917 * libc/include/sys/_types.h: Include <sys/lock.h> and change
3918 _flock_t to be of type _LOCK_RECURSIVE_T.
3919 * libc/include/sys/reent.h: (_REENT_INIT): Reformat.
3920 (_REENT_INIT_PTR): Ditto. Use memset where appropriate.
3921 (_global_impure_ptr): New declaration.
3922 (_GLOBAL_REENT): Change to be _global_impure_ptr.
3923 * libc/include/sys/stdio.h: Include <sys/lock.h> and
3924 <sys/reent.h>.
3925 (_flockfile)[!_SINGLE_THREAD]: Add code for lock call.
3926 (_funlockfile)[!SINGLE_THREAD]: Ditto.
3927 * libc/reent/impure.c: Set _global_impure_ptr to _impure_ptr.
3928 * libc/stdio/fclose.c: Remove casting of fp lock to
3929 _LOCK_RECURSIVE_T.
3930 * libc/stdio/findfp.c: Ditto.
3931 * libc/stdio/fopen.c: Ditto.
3932 * libc/stdio/freopen.c: Ditto.
3933 * libc/stdio/vfprintf.c: Ditto.
3934 * libc/stdio64/fopen64.c: Ditto.
3935 * libc/stdlib/envlock.c: Add default stubs that use generic
3936 locking code.
3937 * libc/stdlib/mlock.c: Ditto.
3938
3939 Jeff Johnston <jjohnstn@redhat.com>
3940 * libc/sys/linux/sys/_types.h (__flock_mutex_t): New subtype.
3941 (_flock_t): Change to be a struct containing a single member
3942 named mutex which is of type __flock_mutex_t.
3943
3944 2004-06-09 Jeff Johnston <jjohnstn@redhat.com>
3945
3946 * libc/sys/linux/Makefile.am: Change siglist.inc to be generated
3947 from /usr/include/asm/signal.h instead of kernel sources. Also
3948 default max to 32 if not found in header file.
3949 * libc/sys/linux/Makefile.in: Regenerated.
3950 * libc/sys/linux/machine/i386/socketcall.h: Fix for Fedora Core 2
3951 systems where __syscall_return is not defined.
3952 * libc/sys/linux/machine/i386/syscall.h: Change for Fedora Core 2
3953 systems to use syscall() function instead of assembler interrupt.
3954
3955 2004-06-09 Toralf Lund <toralf@procaptura.com>
3956
3957 * libc/sys/arm/setjmp.S, libc/sys/arm/access.c: Move
3958 files from libc/sys/arm to libc/machine/arm.
3959 * libc/machine/arm/Makefile.am, libc/machine/arm/Makefile.in: Add
3960 library build support for files moved from libc/sys/arm.
3961 * libc/sys/arm/Makefile.am, libc/sys/arm/Makefile.in: Remove
3962 references to access and setjmp.
3963 * configure.host: Add checks for newlib_may_supply_syscalls to
3964 determine whether or not to use sys/arm directory and use
3965 special compiler flags: ARM_RDI_MONITOR and ARM_RDP_MONITOR.
3966
3967 2004-06-02 Jeff Johnston <jjohnstn@redhat.com>
3968
3969 * libc/stdio/vfscanf.c (__svfscanf_r): For CT_INT conversions,
3970 reset digit flags appropriately after we have discovered "0x".
3971 * libc/machine/powerpc/vfscanf.c (__svfscanf_r): Ditto.
3972
3973 2004-05-27 Jeff Johnston <jjohnstn@redhat.com>
3974
3975 * libc/stdio/vfprintf.c (_VFPRINTF): Move file locking
3976 from here ...
3977 (_VFPRINTF_R): ... to here so all I/O printf routines
3978 are covered.
3979
3980 2004-05-26 Jeff Johnston <jjohnstn@redhat.com>
3981
3982 * libc/search/hash_buf.c: Protect MAX and MIN macros from
3983 redefinition.
3984 * libc/search/hash.c: Ditto.
3985
3986 2004-05-25 Artem B. Bityuckiy <abitytsky@softminecorp.com>
3987
3988 * newlib.hin: (_WANT_IO_POS_ARGS): New define.
3989 (_WANT_IO_LONG_LONG): Ditto.
3990 (_WANT_IO_LONG_DOUBLE): Ditto.
3991 * configure.in: Add new configuration options
3992 --enable-newlib-io-long-long and --enable-newlib-io-long-double
3993 which tie to new defines in newlib.hin.
3994 * configure: Regenerated.
3995 * configure.host: Add checks for new configuration options. Also
3996 fix up check for --enable-newlib-io-pos-args so configuration
3997 option will override any default for a given platform.
3998 Remove defining compiler flags for the _WANT_IO* options.
3999 * libc/stdio/vfprintf.c: Change to use new newlib.hin defines
4000 instead of looking for old compiler flags.
4001 * libc/stdio/vfscanf.c: Ditto.
4002 * libc/stdio/vfieeefp.h: Ditto.
4003 * libc/machine/powerpc/vfprintf.c: Ditto.
4004 * libc/machine/powerpc/vfscanf.c: Ditto.
4005
4006 2004-05-25 Jeff Johnston <jjohnstn@redhat.com>
4007
4008 * testsuite/include/check.h: Add include of <stdio.h>.
4009
4010 2004-05-17 Corinna Vinschen <corinna@vinschen.de>
4011
4012 * libc/include/grp.h: Declare getgrnam_r and getgrgid_r also on Cygwin.
4013
4014 2004-05-11 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4015
4016 * libc/stdio/vfprintf.c (VFPRINTF_R): Use _free_r instead
4017 of free.
4018
4019 2004-05-07 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4020
4021 * libc/stdio/iprintf.c (_iprintf_r): Fix old-style argument
4022 list for reentrant pointer. Call _vfiprintf_r.
4023 * libc/stdio/siprintf.c (_siprintf_r): New function.
4024 * libc/stdio/vfprintf.c (__sbprintf): Add reetrant struct
4025 pointer argument. Change all callers. Call _VFPRINTF_R.
4026 * libc/include/stdio.h (_siprintf_r, _vfiprintf_r): New
4027 prototypes.
4028
4029 2004-05-07 Jeff Johnston <jjohnstn@redhat.com>
4030
4031 * libc/include/sys/param.h: Remove endian info and include
4032 <machine/endian.h> instead.
4033 * libc/include/machine/endian.h: New file.
4034 * libc/include/machine/param.h: Ditto.
4035 * libc/machine/arm/machine/endian.h: Ditto.
4036 * libc/machine/arm/machine/param.h: Ditto.
4037 * libc/sys/arm/sys/param.h: Removed.
4038 * libc/sys/sysvi386/sys/param.h: Ditto.
4039 * libc/sys/rtems/sys/param.h: Modified to include <machine/endian.h>.
4040
4041 2004-05-03 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4042
4043 * libc/stdio/vfprintf.c (_VFPRINTF_R): Set error flag when
4044 multibyte functions return failure for %C, %S, %lc, and %ls
4045 format specifiers.
4046
4047 2004-05-03 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4048
4049 * testsuite/include/check.h (CHECK): Add flush of stdout.
4050
4051 2004-05-03 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4052
4053 * libc/include/stdio.h (_ungetc_r): New prototype.
4054 * libc/stdio/ungetc.c (_ungetc_r): New reentrant function.
4055 (__submore): Add reentrant struct pointer argument.
4056 (ungetc): Change to call _ungetc_r.
4057
4058 2004-04-28 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4059
4060 * libc/stdio/local.h (_fwalk_reent): Specify prototype of
4061 function pointer argument.
4062 * libc/stdio/fwalk.c (_fwalk, _fwalk_reent): Change prototypes
4063 to specify function pointer arguments.
4064 (__fwalk, __fwalk_reent): Ditto.
4065
4066 2004-04-26 Aldy Hernandez <aldyh@redhat.com>
4067
4068 * libc/machine/powerpc/vfscanf.c (__svfscanf_r): Fix typo in
4069 CT_INT case.
4070
4071 2004-04-23 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4072
4073 * configure.in: Define _MB_CAPABLE if mb supported.
4074 * configure: Regenerated.
4075 * configure.host: Remove manual setting of MB_CAPABLE compiler
4076 flag.
4077 * newlib.hin: Add _MB_CAPABLE flag.
4078 * libc/ctype/iswalpha.c, libc/ctype/iswblank.c: Include <newlib.h>
4079 and check for _MB_CAPABLE flag instead of MB_CAPABLE.
4080 * libc/ctype/iswcntrl.c, libc/ctype/iswprint.c: Ditto.
4081 * libc/ctype/iswpunct.c, libc/ctype/iswspace.c: Ditto.
4082 * libc/ctype/jp2uc.c: Ditto.
4083 * libc/ctype/towlower.c, libc/ctype/towupper.c: Ditto.
4084 * libc/locale/locale.c: Ditto
4085 * libc/machine/powerpc/vfscanf.c: Ditto
4086 * libc/stdio/vfprintf.c, libc/stdio/vfscanf.c: Ditto
4087 * libc/stdlib/mblen.c: Ditto
4088 * libc/stdlib/mblen_r.c, libc/stdlib/mbrlen.c: Ditto
4089 * libc/stdlib/mbrtowc.c, libc/stdlib/mbsrtowcs.c: Ditto
4090 * libc/stdlib/mbstowcs.c, libc/stdlib/mbtowc.c: Ditto
4091 * libc/stdlib/mbtowc_r.c, libc/stdlib/wcrtomb.c: Ditto
4092 * libc/stdlib/wcsrtombs.c, libc/stdlib/wcstombs.c: Ditto
4093 * libc/stdlib/wctomb.c, libc/sys/linux/intl/dcigettext.c: Ditto
4094 * libc/sys/linux/intl/explodename.c: Ditto
4095 * libc/sys/linux/intl/finddomain.c: Ditto
4096 * libc/sys/linux/intl/l10nflist.c: Ditto
4097 * libc/sys/linux/intl/loadmsgcat.c: Ditto
4098 * libc/sys/linux/intl/localealias.c: Ditto
4099
4100 2004-04-23 Jeff Johnston <jjohnstn@redhat.com>
4101
4102 * libc/machine/powerpc/vfscanf.c (NNZDIGITS): New define.
4103 (__svfscanf_r): In integer conversions, leave out leading zeroes
4104 which are not part of a base prefix.
4105 Keep track of width truncation to fit into buf, not counting left-out
4106 zeroes against width till the truncation has been compensated for.
4107 This is based on Joern's patch of 04/21 for libc/stdio/vfscanf.c.
4108
4109 2004-04-23 Jeff Johnston <jjohnstn@redhat.com>
4110
4111 * libc/include/stdio.h: (_ftell_r, _fseek_r): New prototypes.
4112
4113 2004-04-23 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4114
4115 * libc/stdio/asprintf.c libc/stdio/clearerr.c,
4116 libc/stdio/fclose.c libc/stdio/fcloseall.c libc/stdio/fdopen.c,
4117 libc/stdio/feof.c libc/stdio/ferror.c libc/stdio/fflush.c,
4118 libc/stdio/fgetc.c libc/stdio/fgetpos.c libc/stdio/fgets.c,
4119 libc/stdio/fileno.c libc/stdio/findfp.c libc/stdio/fiprintf.c,
4120 libc/stdio/flags.c libc/stdio/fopen.c libc/stdio/fprintf.c,
4121 libc/stdio/fputc.c libc/stdio/fputs.c libc/stdio/fread.c,
4122 libc/stdio/freopen.c libc/stdio/fscanf.c libc/stdio/fseek.c,
4123 libc/stdio/fseeko.c libc/stdio/fsetpos.c libc/stdio/ftell.c,
4124 libc/stdio/ftello.c libc/stdio/fvwrite.c libc/stdio/fwalk.c,
4125 libc/stdio/fwrite.c libc/stdio/getc.c libc/stdio/getc_u.c,
4126 libc/stdio/getchar.c libc/stdio/getchar_u.c,
4127 libc/stdio/getdelim.c libc/stdio/getline.c libc/stdio/gets.c,
4128 libc/stdio/getw.c libc/stdio/iprintf.c libc/stdio/local.h,
4129 libc/stdio/makebuf.c libc/stdio/mktemp.c libc/stdio/perror.c,
4130 libc/stdio/printf.c libc/stdio/putc.c libc/stdio/putc_u.c,
4131 libc/stdio/putchar.c libc/stdio/putchar_u.c libc/stdio/puts.c,
4132 libc/stdio/putw.c libc/stdio/refill.c libc/stdio/remove.c,
4133 libc/stdio/rename.c libc/stdio/rewind.c libc/stdio/rget.c,
4134 libc/stdio/scanf.c libc/stdio/setbuf.c libc/stdio/setbuffer.c,
4135 libc/stdio/setlinebuf.c libc/stdio/setvbuf.c,
4136 libc/stdio/siprintf.c libc/stdio/snprintf.c,
4137 libc/stdio/sprintf.c libc/stdio/sscanf.c libc/stdio/stdio.c,
4138 libc/stdio/tmpfile.c libc/stdio/tmpnam.c libc/stdio/ungetc.c,
4139 libc/stdio/vasprintf.c libc/stdio/vfieeefp.h,
4140 libc/stdio/vfprintf.c libc/stdio/vfscanf.c,
4141 libc/stdio/vprintf.c libc/stdio/vscanf.c,
4142 libc/stdio/vsnprintf.c libc/stdio/vsprintf.c,
4143 libc/stdio/vsscanf.c libc/stdio/wbuf.c,
4144 libc/stdio/wsetup.c: Perform minor formatting changes. Move
4145 copyright notices to top of file, ensure that <_ansi.h> is
4146 included, be consistent with open parentheses, use _DEFUN macro,
4147 include "local.h" where needed, and remove various compiler
4148 warnings.
4149
4150 2004-04-21 J"orn Rennecke <joern.rennecke@superh.com>
4151
4152 * libc/stdio/vfscanf.c (NNZDIGITS): New define.
4153 (__svfscanf_r): In integer conversions, leave out leading zeroes
4154 which are not part of a base prefix.
4155 Keep track of width truncation to fit into buf, not counting left-out
4156 zeroes against width till the truncation has been compensated for.
4157
4158 2004-04-20 Corinna Vinschen <corinna@vinschen.de>
4159
4160 * libc/include/sys/unistd.h (ttyname_r): Add missing comma.
4161
4162 2004-04-20 Corinna Vinschen <corinna@vinschen.de>
4163
4164 * libc/include/sys/unistd.h (ttyname_r): Add declaration for Cygwin.
4165
4166 2004-04-10 Corinna Vinschen <corinna@vinschen.de>
4167
4168 * libc/include/sys/unistd.h (sync): Define void on Cygwin according
4169 to SUSv3.
4170
4171 2004-04-08 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4172
4173 * libc/stdio/fclose.c (_fclose_r): New function.
4174 * libc/stdio/freopen.c (_freopen_r): Call _fclose_r.
4175 * libc/stdio/fcloseall.c (_fcloseall_r): Call _fwalk_reent.
4176 * libc/stdio64/freopen64.c (_freopen64_r): Use _fclose_r.
4177 * libc/include/stdio.h (_fclose_r): New prototype.
4178 * libc/stdio/fopen.c: Fix typo in comment.
4179
4180 2004-04-08 Jeff Johnston <jjohnstn@redhat.com>
4181
4182 * libc/stdio/fwalk.c (_fwalk_reent): New version of _fwalk
4183 to handle _r reentrant functions.
4184
4185 2004-04-08 Eric Christopher <echristo@redhat.com>
4186
4187 * libc/include/machine/setjmp.h: Fix endif locations.
4188
4189 2004-04-01 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4190
4191 * libc/time/strptime.c: Add standard includes to avoid
4192 warning messages at compilation time.
4193
4194 2004-04-01 Jeff Johnston <jjohnstn@redhat.com>
4195
4196 * libc/stdio/vfscanf.c (__svfscanf_r): Add locking/unlocking
4197 of file.
4198
4199 2004-03-30 Jeff Johnston <jjohnstn@redhat.com>
4200
4201 * libc/machine/h8300/Makefile.am: Reformat slightly.
4202 * libc/machine/h8300/Makefile.in: Regenerate.
4203
4204 2004-03-30 Thomas Pfaff <tpfaff@gmx.net>
4205
4206 * libc/stdio/findfp.c (__fp_lock_all): Add call to
4207 __sfp_lock_acquire.
4208 (__fp_unlock_all): Add call to __sfp_lock_release.
4209
4210 2004-03-25 Thomas Pfaff <tpfaff@gmx.net>
4211
4212 * libc/stdio/fclose.c (fclose): Protect file pointer list when
4213 releasing a file.
4214 * libc/stdio/fcloseall.c (_fcloseall_r): Close all files via
4215 fwalk.
4216 * libc/stdio/fdopen.c (_fdopen_r): Add calls to
4217 _flockfile/_funlockfile.
4218 * libc/stdio/findfp.c: Move __sfp_lock. Change __sfp_lock type
4219 to recursive.
4220 Change __lock_acquire/__lock_release calls for __sfp_lock to
4221 __sfp_lock_acquire/__sfp_lock_release throughout.
4222 (std): Make sure that file lock is only initialized once.
4223 (__sfp): Move _file initialization. Initialize file lock.
4224 (__sfp_lock_acquire): New function.
4225 (__sfp_lock_release): Ditto.
4226 (__fp_lock_all): Remove __sfp_lock_acquire call.
4227 (__fp_unlock_all): Remove __sfp_lock_release call.
4228 * libc/stdio/fopen.c (_fopen_r): Protect file pointer list.
4229 Add calls to _flockfile/_funlockfile. Remove
4230 __lock_init_recursive call.
4231 * libc/stdio/freopen.c (_freopen_r): Protect file pointer list.
4232 * libc/stdio/fwalk.c (__fwalk): New static function.
4233 (_fwalk): Protect file pointer list. Use __fwalk to walk through
4234 file pointers.
4235 * libc/stdio/local.h: Add defines for
4236 __sfp_lock_acquire/__sfp_lock_release when
4237 single threaded. Add function prototypes otherwise.
4238 * libc/stdio64/fdopen64.c (_fdopen64_r): Add calls to
4239 _flockfile/_funlockfile.
4240 * libc/stdio/fopen64.c (_fopen64_r): Protect file pointer list.
4241 Add calls to _flockfile/_funlockfile. Remove
4242 __lock_init_recursive call.
4243 * libc/stdio/freopen64.c (_freopen64_r): Protect file pointer
4244 list.
4245
4246 2004-03-25 Jeff Johnston <jjohnstn@redhat.com>
4247
4248 * libc/sys/linux/sys/lock.h: Turn on __USE_GNU flag if not already
4249 defined. Change __LOCK_RECURSIVE_INIT to be __LOCK_INIT_RECURSIVE.
4250 * libc/sys/linux/dl/dl-support.c: Change __LOCK_RECURSIVE_INIT
4251 to be __LOCK_INIT_RECURSIVE.
4252
4253 2004-03-11 Kazu Hirata <kazu@cs.umass.edu>
4254
4255 * libc/sys/h8300hms/Makefile.am (lib_a_SOURCES): Replace
4256 _exit.c with _exit.S.
4257 * libc/sys/h8300hms/Makefile.in: Regenerate.
4258 * libc/sys/h8300hms/_exit.c: Remove.
4259 * libc/sys/h8300hms/_exit.S: New.
4260
4261 2004-03-09 Thomas Pfaff <tpfaff@gmx.net>
4262
4263 * libc/stdio/findfp.c (__sfp): Rename lock to __sfp_lock.
4264 Change __sfp_lock to static global.
4265 (__fp_lock): New static function.
4266 (__fp_unlock): Ditto.
4267 (__fp_lock_all): New function.
4268 (__fp_unlock_all): Ditto.
4269
4270 2004-02-10 Christopher Faylor <cgf@redhat.com>
4271
4272 * libm/mathfp/er_gamma.c (gamma): Add new non-reentrant function.
4273 * libm/mathfp/er_lgamma.c (lgamma): Ditto.
4274 * libm/mathfp/erf_gamma.c (gammaf): Ditto.
4275 * libm/mathfp/erf_lgamma.c (lgammaf): Ditto.
4276
4277 2004-02-09 Christopher Faylor <cgf@redhat.com>
4278
4279 * libc/include/time.h (TIMER_RELTIME): New define.
4280
4281 2004-02-09 Jeff Johnston <jjohnstn@redhat.com>
4282
4283 * libc/stdlib/Makefile.am: Add mallstatsr to LIBADD_OBJS.
4284 * libc/stdlib/Makefile.in: Regenerated.
4285
4286 2004-02-08 Christopher Faylor <cgf@redhat.com>
4287
4288 * libc/include/sys/features.h: Add _POSIX_TIMERS define for __CYGWIN__.
4289 * libc/include/sys/reent.h (__getreent): Protect against possibly being
4290 defined.
4291 * libc/include/sys/unistd.h (fdatasync): Don't define for __CYGWIN__.
4292
4293 2004-02-05 Paul Brook <paul@codesourcery.com>
4294
4295 * libc/include/machine/ieeefp.h[__arm__][__VFP_FP__]: Set
4296 IEEE_{BIG,LITTLE} based on __ARMEL__ flag.
4297
4298 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
4299
4300 * NEWS: Update with 1.12.0 info.
4301 * README: Ditto.
4302 * acinclude.m4: Change version number to 1.12.0.
4303 * aclocal.m4: Regenerated.
4304 * configure: Ditto.
4305 * doc/aclocal.m4: Ditto.
4306 * doc/configure: Ditto.
4307 * libc/*/aclocal.m4: Ditto.
4308 * libc/*/configure: Ditto.
4309 * libc/libc.texinfo: Ditto.
4310 * libm/*/aclocal.m4: Ditto.
4311 * libm/*/configure: Ditto.
4312 * libm/libm.texinfo: Ditto.
4313 * libc/sys/linux/shared.ld: Add VERS_1.12.
4314
4315 2004-02-02 Joel Sherrill <joel@oarcorp.com>
4316
4317 * configure.host: Add support for tic4x.
4318 * libc/include/machine/ieeefp.h: Ditto.
4319 * libc/include/machine/setjmp.h: Ditto.
4320 * libc/machine/tic4x/Makefile.am: New file.
4321 * libc/machine/tic4x/configure.in: Ditto.
4322 * libc/machine/tic4x/setjmp.S: Ditto.
4323 * libc/machine/tic4x/aclocal.m4: Generated.
4324 * libc/machine/tic4x/configure: Ditto.
4325 * libc/machine/tic4x/Makefile.in: Ditto.
4326
4327 2004-01-30 Jeff Johnston <jjohnstn@redhat.com>
4328
4329 * libc/stdio/fwalk.c (_fwalk.c): Don't traverse the
4330 file chain on the passed in reentrancy struct if it
4331 is _GLOBAL_REENT.
4332
4333 2004-01-30 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4334 Jeff Johnston <jjohnstn@redhat.com>
4335
4336 * libc/iconv/iconv.tex: Updated with more information.
4337
4338 2004-01-30 Thomas Pfaff <tpfaff@gmx.net>
4339 Jeff Johnston <jjohnstn@redhat.com>
4340
4341 * libc/stdio/fwalk.c (_fwalk): Traverse the given reentrancy
4342 struct for std streams and traverse the global reeentrancy
4343 struct for all other streams.
4344
4345 2004-01-27 Jeff Johnston <jjohnstn@redhat.com>
4346
4347 * libc/stdlib/atexit.c: Protect global atexit list with a
4348 lock when newlib is multithreaded.
4349
4350 2004-01-27 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4351
4352 * configure.in: Add support to generate iconv converter flags
4353 for newlib.h
4354 * newlib.hin: Add iconv converter flags.
4355 * configure: Regenerated.
4356 * libc/Makefile.in: Ditto.
4357 * libc/configure.in: Moved iconv converter parsing logic to
4358 top level newlib configure.in.
4359 * libc/configure: Regenerated.
4360 * libc/iconv/Makefile.in: Ditto.
4361 * libc/iconv/README.TODO
4362 * libc/iconv/charset.aliases: Remove wrong BE aliases for
4363 UCS2/UCS4/UTF8.
4364 * libc/iconv/ccs/Makefile.am: Remove C flag setting now that
4365 newlib.h can be used.
4366 * libc/iconv/ces/Makefile.am: Ditto.
4367 * libc/iconv/lib/Makefile.am: Ditto.
4368 * libc/iconv/ccs/Makefile.in: Regenerated.
4369 * libc/iconv/ces/Makefile.in: Ditto.
4370 * libc/iconv/lib/Makefile.in: Ditto.
4371 * libc/iconv/ccs/README.CCS.SOURCES: Updated.
4372 * libc/iconv/ccs/iconv_mktbl: Don't write junk strings to binaries.
4373 * libc/iconv/ccs/big5.c: Switch to use new underscored flags
4374 defined in newlib.h.
4375 * libc/iconv/ccs/cns11643_plane1.c: Ditto.
4376 * libc/iconv/ccs/cns11643_plane14.c: Ditto.
4377 * libc/iconv/ccs/cns11643_plane2.c: Ditto.
4378 * libc/iconv/ccs/cp775.c: Ditto.
4379 * libc/iconv/ccs/cp850.c: Ditto.
4380 * libc/iconv/ccs/cp852.c: Ditto.
4381 * libc/iconv/ccs/cp855.c: Ditto.
4382 * libc/iconv/ccs/cp866.c: Ditto.
4383 * libc/iconv/ccs/gb_2312_80.c: Ditto.
4384 * libc/iconv/ccs/iso_8859_1.c: Ditto.
4385 * libc/iconv/ccs/iso_8859_15.c: Ditto.
4386 * libc/iconv/ccs/iso_8859_2.c: Ditto.
4387 * libc/iconv/ccs/iso_8859_4.c: Ditto.
4388 * libc/iconv/ccs/iso_8859_5.c: Ditto.
4389 * libc/iconv/ccs/jis_x0201.c: Ditto.
4390 * libc/iconv/ccs/jis_x0208_1983.c: Ditto.
4391 * libc/iconv/ccs/jis_x0212_1990.c: Ditto.
4392 * libc/iconv/ccs/koi8_r.c: Ditto.
4393 * libc/iconv/ccs/koi8_u.c: Ditto.
4394 * libc/iconv/ccs/ksx1001.c: Ditto.
4395 * libc/iconv/ccs/shift_jis.c: Ditto.
4396 * libc/iconv/ccs/us_ascii.c: Ditto.
4397 * libc/iconv/ccs/binary/big5.cct: Newly generated.
4398 * libc/iconv/ccs/binary/cns11643_plane1.cct: Ditto.
4399 * libc/iconv/ccs/binary/cns11643_plane14.cct: Ditto.
4400 * libc/iconv/ccs/binary/cns11643_plane2.cct: Ditto.
4401 * libc/iconv/ccs/binary/cp775.cct: Ditto.
4402 * libc/iconv/ccs/binary/cp850.cct: Ditto.
4403 * libc/iconv/ccs/binary/cp852.cct: Ditto.
4404 * libc/iconv/ccs/binary/cp855.cct: Ditto.
4405 * libc/iconv/ccs/binary/cp866.cct: Ditto.
4406 * libc/iconv/ccs/binary/gb_2312_80.cct: Ditto.
4407 * libc/iconv/ccs/binary/iso_8859_1.cct: Ditto.
4408 * libc/iconv/ccs/binary/iso_8859_15.cct: Ditto.
4409 * libc/iconv/ccs/binary/iso_8859_2.cct: Ditto.
4410 * libc/iconv/ccs/binary/iso_8859_4.cct: Ditto.
4411 * libc/iconv/ccs/binary/iso_8859_5.cct: Ditto.
4412 * libc/iconv/ccs/binary/jis_x0201.cct: Ditto.
4413 * libc/iconv/ccs/binary/jis_x0208_1983.cct: Ditto.
4414 * libc/iconv/ccs/binary/jis_x0212_1990.cct: Ditto.
4415 * libc/iconv/ccs/binary/koi8_r.cct: Ditto.
4416 * libc/iconv/ccs/binary/koi8_u.cct: Ditto.
4417 * libc/iconv/ccs/binary/ksx1001.cct: Ditto.
4418 * libc/iconv/ccs/binary/shift_jis.cct: Ditto.
4419 * libc/iconv/ccs/binary/us_ascii.cct: Ditto.
4420 * libc/iconv/lib/bialiasesi.c: Sync with charset.aliases.
4421 * libc/iconv/ces/euc-jp.c: Use newlib.h macros.
4422 * libc/iconv/ces/euc-kr.c: Ditto.
4423 * libc/iconv/ces/euc-tw.c: Ditto.
4424 * libc/iconv/ces/gb2312.c: Ditto.
4425 * libc/iconv/ces/iso-10646-ucs-2.c: Ditto.
4426 * libc/iconv/ces/iso-10646-ucs-4.c: Ditto.
4427 * libc/iconv/ces/ucs-2-internal.c: Ditto.
4428 * libc/iconv/ces/ucs-4-internal.c: Ditto.
4429 * libc/iconv/ces/utf-16.c: Ditto.
4430 * libc/iconv/ces/utf-8.c: Ditto.
4431 * libc/iconv/lib/aliases.c: Ditto.
4432 * libc/iconv/lib/biccs.c: Ditto.
4433 * libc/iconv/lib/bices.c: Ditto.
4434 * libc/iconv/lib/ccs.c: Ditto.
4435 * libc/iconv/lib/ces.c: Ditto.
4436 * libc/iconv/lib/ces_euc.c: Ditto.
4437 * libc/iconv/lib/ces_iso2022.c: Ditto.
4438 * libc/iconv/lib/ces_table.c: Ditto.
4439 * libc/iconv/lib/converter.c: Ditto.
4440 * libc/iconv/lib/deps.h: Ditto.
4441 * libc/iconv/lib/endian.h: Ditto.
4442 * libc/iconv/lib/iconv.c: Ditto.
4443 * libc/iconv/lib/loaddata.c: Ditto.
4444 * libc/iconv/lib/local.h: Include newlib.h.
4445 * libc/argz/Makefile.in: Regenerated.
4446 * libc/ctype/Makefile.in: Ditto.
4447 * libc/errno/Makefile.in: Ditto.
4448 * libc/iconv/ccs/binary/Makefile.in: Ditto.
4449 * libc/locale/Makefile.in: Ditto.
4450 * libc/misc/Makefile.in: Ditto.
4451 * libc/posix/Makefile.in: Ditto.
4452 * libc/reent/Makefile.in: Ditto.
4453 * libc/search/Makefile.in: Ditto.
4454 * libc/signal/Makefile.in: Ditto.
4455 * libc/stdio/Makefile.in: Ditto.
4456 * libc/stdio64/Makefile.in: Ditto.
4457 * libc/stdlib/Makefile.in: Ditto.
4458 * libc/string/Makefile.in: Ditto.
4459 * libc/syscalls/Makefile.in: Ditto.
4460 * libc/time/Makefile.in: Ditto.
4461 * libc/unix/Makefile.in: Ditto.
4462 * testsuite/newlib.iconv/iconv.exp: New file.
4463 * testsuite/newlib.iconv/iconvjp.c: Ditto.
4464 * testsuite/newlib.iconv/iconvnm.c: Ditto.
4465 * testsuite/newlib.iconv/iconvru.c: Ditto.
4466
4467 2004-01-23 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4468
4469 * acinclude.m4 (--enable-newlib-iconv): New configuration option.
4470 (--enable-newlib-builtin-converters): Ditto.
4471 * configure.in: Add code to set _ICONV_ENABLED flag.
4472 Set _MB_LEN_MAX to 1 if not mb enabled.
4473 * configure: Regenerated.
4474 * aclocal.m4: Ditto.
4475 * Makefile.in: Ditto.
4476 * newlib.hin: Add _ICONV_ENABLED flag.
4477 * libc/Makefile.am: Add support for iconv.
4478 * libc/configure.in: Ditto.
4479 * libc/Makefile.in: Regenerated.
4480 * libc/aclocal.m4: Ditto.
4481 * libc/configure: Ditto.
4482 * libc/libc.texinfo: Add iconv documentation.
4483 * libc/iconv/AUTHORS, libc/iconv/COPYING, libc/iconv/Makefile.am,
4484 libc/iconv/Makefile.in, libc/iconv/README.ORIGINAL,
4485 libc/iconv/README.TODO, libc/iconv/charset.aliases,
4486 libc/iconv/iconv.tex, libc/iconv/ccs/Makefile.am,
4487 libc/iconv/ccs/Makefile.in, libc/iconv/ccs/README.CCS.SOURCES,
4488 libc/iconv/ccs/big5.c, libc/iconv/ccs/cns11643_plane1.c,
4489 libc/iconv/ccs/cns11643_plane14.c, libc/iconv/ccs/cns11643_plane2.c,
4490 libc/iconv/ccs/cp775.c, libc/iconv/ccs/cp850.c,
4491 libc/iconv/ccs/cp852.c, libc/iconv/ccs/cp855.c,
4492 libc/iconv/ccs/cp866.c, libc/iconv/ccs/gb_2312_80.c,
4493 libc/iconv/ccs/iconv_mktbl, libc/iconv/ccs/iso_8859_1.c,
4494 libc/iconv/ccs/iso_8859_15.c, libc/iconv/ccs/iso_8859_2.c,
4495 libc/iconv/ccs/iso_8859_4.c, libc/iconv/ccs/iso_8859_5.c,
4496 libc/iconv/ccs/jis_x0201.c, libc/iconv/ccs/jis_x0208_1983.c,
4497 libc/iconv/ccs/jis_x0212_1990.c, libc/iconv/ccs/koi8_r.c,
4498 libc/iconv/ccs/koi8_u.c, libc/iconv/ccs/ksx1001.c,
4499 libc/iconv/ccs/shift_jis.c, libc/iconv/ccs/us_ascii.c,
4500 libc/iconv/ccs/binary/Makefile.am, libc/iconv/ccs/binary/Makefile.in,
4501 libc/iconv/ccs/binary/big5.cct,
4502 libc/iconv/ccs/binary/cns11643_plane1.cct,
4503 libc/iconv/ccs/binary/cns11643_plane14.cct,
4504 libc/iconv/ccs/binary/cns11643_plane2.cct,
4505 libc/iconv/ccs/binary/cp775.cct, libc/iconv/ccs/binary/cp850.cct,
4506 libc/iconv/ccs/binary/cp852.cct, libc/iconv/ccs/binary/cp855.cct,
4507 libc/iconv/ccs/binary/cp866.cct, libc/iconv/ccs/binary/gb_2312_80.cct,
4508 libc/iconv/ccs/binary/iso_8859_1.cct,
4509 libc/iconv/ccs/binary/iso_8859_15.cct,
4510 libc/iconv/ccs/binary/iso_8859_2.cct,
4511 libc/iconv/ccs/binary/iso_8859_4.cct,
4512 libc/iconv/ccs/binary/iso_8859_5.cct,
4513 libc/iconv/ccs/binary/jis_x0201.cct,
4514 libc/iconv/ccs/binary/jis_x0208_1983.cct,
4515 libc/iconv/ccs/binary/jis_x0212_1990.cct,
4516 libc/iconv/ccs/binary/koi8_r.cct, libc/iconv/ccs/binary/koi8_u.cct,
4517 libc/iconv/ccs/binary/ksx1001.cct,
4518 libc/iconv/ccs/binary/shift_jis.cct,
4519 libc/iconv/ccs/binary/us_ascii.cct,
4520 libc/iconv/ces/Makefile.am, libc/iconv/ces/Makefile.in,
4521 libc/iconv/ces/euc-jp.c, libc/iconv/ces/euc-kr.c,
4522 libc/iconv/ces/euc-tw.c, libc/iconv/ces/gb2312.c,
4523 libc/iconv/ces/iso-10646-ucs-2.c, libc/iconv/ces/iso-10646-ucs-4.c,
4524 libc/iconv/ces/ucs-2-internal.c, libc/iconv/ces/ucs-4-internal.c,
4525 libc/iconv/ces/utf-16.c, libc/iconv/ces/utf-8.c,
4526 libc/iconv/lib/Makefile.am, libc/iconv/lib/Makefile.in,
4527 libc/iconv/lib/aliases.c, libc/iconv/lib/bialiasesi.c,
4528 libc/iconv/lib/biccs.c, libc/iconv/lib/bices.c,
4529 libc/iconv/lib/ccs.c, libc/iconv/lib/ces.c,
4530 libc/iconv/lib/ces_euc.c, libc/iconv/lib/ces_iso2022.c,
4531 libc/iconv/lib/ces_table.c, libc/iconv/lib/converter.c,
4532 libc/iconv/lib/deps.h, libc/iconv/lib/endian.h,
4533 libc/iconv/lib/iconv.c, libc/iconv/lib/loaddata.c,
4534 libc/iconv/lib/local.h, libc/include/iconv.h: New files.
4535 * libc/sys/linux/include/iconv.h: Ditto.
4536 * libc/include/sys/_types.h (_iconv_t): Added.
4537 * doc/aclocal.m4: Regenerated.
4538 * doc/configure: Ditto.
4539 * doc/Makefile.in: Ditto.
4540 * iconvdata/Makefile.in: Ditto.
4541 * iconvdata/aclocal.m4: Ditto.
4542 * iconvdata/configure: Ditto.
4543 * libc/*aclocal.m4: Ditto.
4544 * libc/*Makefile.in: Ditto.
4545 * libc/*configure: Ditto.
4546 * libm/*aclocal.m4: Ditto.
4547 * libm/*Makefile.in: Ditto.
4548 * libm/*configure: Ditto.
4549
4550 2004-01-22 Thomas Pfaff <tpfaff@gmx.net>
4551
4552 * libc/stdio/findfp.c (__sfp): Protect global FILE pointer list
4553 by a lock when newlib is multithreaded.
4554
4555 2004-01-21 Jeff Johnston <jjohnstn@redhat.com>
4556
4557 * libc/stdlib/mbrtowc.c (_mbrtowc_r): Fix case where s is null
4558 pointer to match C99 spec.
4559 * libc/stdlib/mbsrtowcs.c (_mbsrtowc_r): Fix to ignore len when
4560 dst is NULL. Also fix to not alter src pointer when dst is NULL
4561 and call _mbrtowc_r instead of _mbtowc_r.
4562 * libc/stdlib/wcsrtombs.c (_wcsrtombs_r): Call _wcrtomb_r instead
4563 of _wctomb_r.
4564
4565 2004-01-19 Thomas Pfaff <tpfaff@gmx.net>
4566
4567 * libc/stdio/fclose.c (fclose): Release FILE as the last step.
4568 * libc/stdio/freopen.c (freopen): Ditto.
4569
4570 2004-01-16 Christopher Faylor <cgf@redhat.com>
4571
4572 * libc/stdio/vfprintf.c: Add sys/lock.h include.
4573
4574 2004-01-16 Thomas Pfaff <tpfaff@gmx.net>
4575
4576 * libc/stdio/findfp.c (__sfp): Remove unnecessary memset.
4577 * libc/stdio/vfprintf.c (__sbprintf): Ditto.
4578 Add calls to __lock_init_recursive and __lock_close_recursive
4579 instead.
4580
4581 2004-01-15 Thomas Pfaff <tpfaff@gmx.net>
4582
4583 * libc/stdio/fclose.c: Include sys/lock.h.
4584 (fclose): Destroy lock when file is closed.
4585 * libc/stdio/findfp.c (__sfp): Initialize file pointers _lock
4586 member.
4587 * libc/stdio/freopen.c: Include sys/lock.h.
4588 (_freopen_r): Destroy lock when file is closed.
4589 * libc/stdio/vfprintf.c (__sbprintf): Initialize file pointers
4590 _lock member.
4591
4592 2004-01-08 Joel Sherrill <joel@oarcorp.com>
4593
4594 * libc/ctype/iswctype.c, include/sys/reent.h, libc/stdlib/a64l.c:
4595 Remove warnings.
4596
4597 2004-01-08 Joel Sherrill <joel@oarcorp.com>
4598
4599 * libc/sys/rtems/sys/queue.h: New file.
4600 * libc/include/sys/signal.h: Reflect renumbering of signals to
4601 fit into 32-bit mask.
4602 * libc/include/sys/unistd.h: Add fdatasync() prototype.
4603 * libc/sys/rtems/crt0.c: Add more symbols which may be implicitly
4604 required. In particular, add the reentrant variants of libc calls.
4605 * libc/sys/rtems/sys/dirent.h: Add scandir() prototype.
4606
4607 2004-01-06 Mark Mitchell <mark@codesourcery.com>
4608
4609 * libc/sys/arm/syscalls.c (unistd.h): Include it.
4610 (remap_handle): Use STDIN_FILENO instead of __sfileno(stdin).
4611 Similarly for stdout and stderr.
4612
4613 2004-01-06 Jeff Johnston <jjohnstn@redhat.com>
4614
4615 * libc/libc.texinfo: Correct escape character for @ sign
4616 so file will be processed by make info. Update copyright years.
4617 * libm/libm.texinfo: Ditto.
4618
4619 2003-12-05 Jeff Johnston <jjohnstn@redhat.com>
4620
4621 * libc/include/sys/stat.h: No longer include stat-dj.h.
4622 * libc/include/sys/stat-dj.h: Removed.
4623
4624 2003-12-05 Jeff Johnston <jjohnstn@redhat.com>
4625
4626 * libc/include/wchar.h: Include <sys/reent.h>.
4627
4628 2003-12-05 Christopher Faylor <cgf@redhat.com>
4629
4630 * libc/stdlib/mbrlen.c: Change include order to prevent compiler errors
4631 when defining _mbrtowc.
4632 * libc/stdlib/mbsinit.c: Ditto.
4633 * libc/stdlib/mbsrtowcs.c: Ditto.
4634 * libc/stdlib/wcrtomb.c: Ditto.
4635 * libc/stdlib/wcsrtombs.c: Ditto.
4636 * libc/stdlib/wctob.c: Ditto.
4637
4638 2003-12-05 Christopher Faylor <cgf@redhat.com>
4639
4640 * libc/stdlib/mbrlen.c: Change include order to prevent compiler
4641 errors when defining _mbrtowc.
4642 * libc/stdlib/mbsinit.c: Ditto.
4643 * libc/stdlib/mbsrtowcs.c: Ditto.
4644
4645 2003-12-05 Christopher Faylor <cgf@redhat.com>
4646
4647 * libc/stdlib/mbrtowc.c: Change include order to prevent compiler
4648 errors when defining _mbrtowc.
4649
4650 2003-12-04 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4651
4652 * libc/stdio/vfprintf.c (_VFPRINTF_R): Use _r versions
4653 of mb routines for %lc and %ls support.
4654 * libc/stdio/vfscanf.c (_svfscanf_r): Add %lc, %C,
4655 %ls, and %S support. Remove CYGNUS_NEC markers and
4656 code within.
4657
4658 2003-12-04 Jeff Johnston <jjohnstn@redhat.com>
4659
4660 * libc/include/wchar.h: Add prototypes for _mbrtowc_r,
4661 _wcrtomb_r, and _wcsrtombs_r.
4662
4663 2003-12-01 Corinna Vinschen <corinna@vinschen.de>
4664
4665 * libc/include/sys/fcntl.h: Don't define struct flock when on
4666 Cygwin. This is done in winsup/cygwin/include/cygwin/types.h now.
4667
4668 2003-11-28 Christopher Faylor <cgf@redhat.com>
4669
4670 * libc/include/sys/signal.h: Use system specific signal file when
4671 building on cygwin.
4672
4673 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
4674
4675 * libc/include/stdlib.h (_atoi_r): New prototype.
4676 * libc/stdlib/atoi.c (_atoi_r): New reentrant function.
4677
4678 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
4679
4680 * libc/include/stdlib.h (_atoll_r, _atol_r): New prototypes.
4681 * libc/stdlib/atol.c (_atol_r): New reentrant function.
4682 * libc/stdlib/atoll.c (_atoll_r): Ditto.
4683
4684 2003-11-27 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4685 Jeff Johnston <jjohnstn@redhat.com>
4686
4687 * libc/include/stdlib.h (lldiv_t): New type.
4688 (atoll, llabs, lldiv): New prototypes.
4689 * libc/stdlib/Makefile.am: Add support for atoll, llabs, and lldiv.
4690 * libc/stdlib/stdlib.tex: Ditto.
4691 * libc/stdlib/Makefile.in: Regenerated.
4692 * libc/stdlib/atoll.c: New file.
4693 * libc/stdlib/llabs.c: Ditto.
4694 * libc/stdlib/lldiv.c: Ditto.
4695
4696 2003-11-26 Corinna Vinschen <corinna@vinschen.de>
4697
4698 * libc/include/fcntl.h: Declare syscalls only when building newlib.
4699 * libc/include/unistd.h: Ditto.
4700 * libc/include/stat.h: Ditto. Also declare struct stat64.
4701
4702 2003-11-24 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4703
4704 * libc/stdio/vfprintf.c (_VFPRINTF_R): Fix check for 'C' format
4705 specifier to use ch instead of *fmt.
4706
4707 2003-11-21 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4708
4709 * libc/stdio/vfprintf.c (_VFPRINTF_R, get_arg): Move mb-specific
4710 code within checks for MB_CAPABLE. For non-mb-capable platforms,
4711 use simple byte logic.
4712
4713 2003-11-21 Jeff Johnston <jjohnstn@redhat.com>
4714
4715 * libc/stdio/vfscanf.c (__svfscanf_r)[!_NO_LONGDBL]: Don't use
4716 _strtold routine for processing floats and doubles since it
4717 is not as fast as _strtod_r.
4718
4719 2003-11-20 Dhananjay Deshpande <dhananjayd@kpitcummins.com>
4720
4721 * libc/machine/h8300/defines.h : Correct pointer register defines
4722 for normal mode.
4723 * libc/machine/h8300/memcpy.S : Use add/sub instead of adds/subs
4724 for normal mode.
4725 * libc/machine/h8300/reg_memcpy.S : Likewise.
4726 * libc/machine/h8300/reg_memset.S : Likewise.
4727 * libc/machine/h8300/strcmp.S : Likewise.
4728
4729 2003-11-19 Nicholas Wourms <nwourms@netscape.net>
4730
4731 * configure.host: Enable positional arguments for printf
4732 family for Cygwin.
4733 * libc/stdio/vfprintf.c (_VFPRINTF_R): Remove extraneous
4734 pointer reference for quad_ptr_t.
4735
4736 2003-11-19 Jeff Johnston <jjohnstn@redhat.com>
4737
4738 * libc/stdio/scanf.c: Don't include local.h more than once.
4739
4740 2003-11-18 Corinna Vinschen <corinna@vinschen.de>
4741
4742 * libc/include/sys/fcntl.h: Declare _open64.
4743 * libc/include/sys/stat.h: Declare _fstat64.
4744 * libc/include/sys/unistd.h: Declare _lseek64.
4745
4746 2003-11-17 Corinna Vinschen <corinna@vinschen.de>
4747
4748 * libc/include/stdlib.h (getprogname): Declare for Cygwin.
4749 (setprogname): Ditto.
4750
4751 2003-11-10 Jeff Johnston <jjohnstn@redhat.com>
4752
4753 * libc/machine/powerpc/ufix64toa.c (_ufix64to_r): Fix shifts
4754 to use (Ebits + 1) which accounts for the sign-bit.
4755
4756 2003-11-07 Jeff Johnston <jjohnstn@redhat.com>
4757
4758 * configure.host: Remove -DLOOSE_KERNEL_NAMES flag for linux
4759 x86 build.
4760 * iconvdata/Makefile.am: Make dependent on newlib's configure.host
4761 and set up default flags to pass to aclocal.
4762 * iconvdata/Makefile.in: Regenerated.
4763 * libc/sys/linux/Makefile.am: Add _ELIX_LEVEL_4 getlogin, getpwnam,
4764 and getpwuid routines.
4765 * libc/sys/linux/Makefile.in: Regenerated.
4766 * libc/sys/linux/getlogin.c: New stub file to allow x86-linux
4767 applications to link with newlib's shared libc library.
4768 * libc/sys/linux/getpwnam.c: Ditto.
4769 * libc/sys/linux/getpwuid.c: Ditto.
4770 * libc/sys/linux/sys/types.h: Include <features.h> and supply types
4771 that were formerly supplied by /usr/include/linux/types.h with
4772 kernel types.
4773 * testsuite/newlib.wctype/twctype.c: Fix testcase to properly
4774 test _ELIX_LEVEL macro.
4775
4776 2003-11-07 Jeff Johnston <jjohnstn@redhat.com>
4777
4778 * libc/stdio/vfprintf.c (_VFPRINTF_R): Fix typos that should be
4779 referring to _NO_LONGLONG macro.
4780
4781 2003-11-06 Jeff Johnston <jjohnstn@redhat.com>
4782
4783 * libc/sys/linux/linuxthreads/td_init.c: Replace function name
4784 in LOG() macro so this will compile on gcc 3.4 and up.
4785 * libc/sys/linux/linuxthreads/td_log.c: Ditto.
4786 * libc/sys/linux/linuxthreads/td_ta_clear_event.c: Ditto.
4787 * libc/sys/linux/linuxthreads/td_ta_delete.c: Ditto.
4788 * libc/sys/linux/linuxthreads/td_ta_enable_stats.c: Ditto.
4789 * libc/sys/linux/linuxthreads/td_ta_event_addr.c: Ditto.
4790 * libc/sys/linux/linuxthreads/td_ta_event_getmsg.c: Ditto.
4791 * libc/sys/linux/linuxthreads/td_ta_get_nthreads.c: Ditto.
4792 * libc/sys/linux/linuxthreads/td_ta_get_ph.c: Ditto.
4793 * libc/sys/linux/linuxthreads/td_ta_get_stats.c: Ditto.
4794 * libc/sys/linux/linuxthreads/td_ta_map_id2thr.c: Ditto.
4795 * libc/sys/linux/linuxthreads/td_ta_map_lwp2thr.c: Ditto.
4796 * libc/sys/linux/linuxthreads/td_ta_new.c: Ditto.
4797 * libc/sys/linux/linuxthreads/td_ta_reset_stats.c: Ditto.
4798 * libc/sys/linux/linuxthreads/td_ta_set_event.c: Ditto.
4799 * libc/sys/linux/linuxthreads/td_ta_setconcurrency.c: Ditto.
4800 * libc/sys/linux/linuxthreads/td_ta_thr_iter.c: Ditto.
4801 * libc/sys/linux/linuxthreads/td_ta_tsd_iter.c: Ditto.
4802 * libc/sys/linux/linuxthreads/td_thr_clear_event.c: Ditto.
4803 * libc/sys/linux/linuxthreads/td_thr_dbresume.c: Ditto.
4804 * libc/sys/linux/linuxthreads/td_thr_dbsuspend.c: Ditto.
4805 * libc/sys/linux/linuxthreads/td_thr_event_enable.c: Ditto.
4806 * libc/sys/linux/linuxthreads/td_thr_event_getmsg.c: Ditto.
4807 * libc/sys/linux/linuxthreads/td_thr_get_info.c: Ditto.
4808 * libc/sys/linux/linuxthreads/td_thr_getfpregs.c: Ditto.
4809 * libc/sys/linux/linuxthreads/td_thr_getgregs.c: Ditto.
4810 * libc/sys/linux/linuxthreads/td_thr_getxregs.c: Ditto.
4811 * libc/sys/linux/linuxthreads/td_thr_getxregsize.c: Ditto.
4812 * libc/sys/linux/linuxthreads/td_thr_set_event.c: Ditto.
4813 * libc/sys/linux/linuxthreads/td_thr_setfpregs.c: Ditto.
4814 * libc/sys/linux/linuxthreads/td_thr_setgregs.c: Ditto.
4815 * libc/sys/linux/linuxthreads/td_thr_setprio.c: Ditto.
4816 * libc/sys/linux/linuxthreads/td_thr_setsigpending.c: Ditto.
4817 * libc/sys/linux/linuxthreads/td_thr_setxregs.c: Ditto.
4818 * libc/sys/linux/linuxthreads/td_thr_sigsetmask.c: Ditto.
4819 * libc/sys/linux/linuxthreads/td_thr_tsd.c: Ditto.
4820 * libc/sys/linux/linuxthreads/td_thr_validate.c: Ditto.
4821
4822 2003-11-05 Jeff Johnston <jjohnstn@redhat.com>
4823 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4824
4825 * libc/stdio/vfprintf.c (_VFPRINTF_R): Add support for
4826 %ls, %S, %lc, and %C format specifiers.
4827 (get_arg): Ditto.
4828 * libc/stdio/sprintf.c: Add documentation regarding new
4829 format specifiers added in vfprintf.c.
4830
4831 2003-11-05 Jeff Johnston <jjohnstn@redhat.com>
4832
4833 * libc/stdlib/wcsrtombs.c (_wcsrtombs_r): Numerous fixes
4834 to make code work as specified in standard.
4835
4836 2003-10-23 Jeff Johnston <jjohnstn@redhat.com>
4837
4838 * configure.in: Use absolute newlib basedir when forming
4839 CC_FOR_NEWLIB include options.
4840 * configure: Regenerated.
4841
4842 2003-10-23 Artem B. Bityuckiy <abitytsky@softminecorp.com>
4843
4844 * libc/string/wcsnlen.c: New file.
4845 * libc/include/wchar.h: Add wcsnlen prototype.
4846 * libc/string/Makefile.am: Add wcsnlen support.
4847 * libc/string/Makefile.in: Regenerated.
4848 * libc/string/wcstrings.tex: Add wcsnlen documentation.
4849
4850 2003-10-22 Richard Sandiford <rsandifo@redhat.com>
4851
4852 * libc/stdlib/exit.c (exit): Handle null _GLOBAL_REENT->_atexits.
4853
4854 2003-10-20 Bob Wilson <bob.wilson@acm.org>
4855
4856 * libc/locale/locale.c: Use double quotes in code.
4857 * libc/locale/locale.tex: Likewise.
4858 * libc/libc.texinfo: Hyphenate "floating-point".
4859 * libc/machine/necv70/necv70.tex: Likewise.
4860 * libc/stdio/sprintf.c: Likewise.
4861 * libc/stdio/sscanf.c: Likewise.
4862 * libc/stdlib/atof.c: Likewise.
4863 * libc/stdlib/ldtoa.c: Fix comment typo.
4864 * libc/stdlib/div.c: Use @ifnottex instead of @ifinfo.
4865 * libc/stdlib/ldiv.c: Likewise.
4866 * libm/common/s_expm1.c: Likewise.
4867 * libm/common/s_ilogb.c: Hyphenate "floating-point". Use "nonzero".
4868 * libm/common/s_infinity: Hyphenate "double- and single-precision".
4869 * libm/common/s_nan.c: Likewise. Also correct the FUNCTION summary.
4870 * libm/common/s_nextafter.c: Fix typo. Hyphenate "double-precision"
4871 and "floating-point".
4872 * libm/common/s_scalbn.c: Correct the FUNCTION summary.
4873 * libm/math/e_pow.c: Fix comment typo.
4874 * libm/math/math.tex: Hyphenate "single-precision" and "floating-point".
4875 * libm/math/s_asinh.c: Use @ifnottex instead of @ifinfo.
4876 * libm/math/s_atan.c: Likewise.
4877 * libm/math/s_frexp.c: Likewise. Also use "nonzero".
4878 * libm/math/s_isnan.c: Hyphenate "single-precision" and
4879 "floating-point". Use "nonzero".
4880 * libm/math/s_ldexp.c: Use @ifnottex instead of @ifinfo.
4881 * libm/math/w_acos.c: Likewise.
4882 * libm/math/w_acosh.c: Likewise.
4883 * libm/math/w_asin.c: Likewise.
4884 * libm/math/w_atan2.c: Likewise.
4885 * libm/math/w_atanh.c: Likewise.
4886 * libm/math/w_cosh.c: Likewise.
4887 * libm/math/w_exp.c: Likewise.
4888 * libm/math/w_exp2.c: Likewise. Add missing @end and missing @tex
4889 version of 2^x in the description.
4890 * libm/math/w_fmod.c: Use @ifnottex instead of @ifinfo.
4891 * libm/math/w_gamma.c: Likewise.
4892 * libm/math/w_hypot.c: Likewise.
4893 * libm/math/w_j0.c: Likewise.
4894 * libm/math/w_sinh.c: Likewise.
4895 * libm/math/w_pow.c: Replace "exp1.0nt" with "exponent".
4896 * libm/mathfp/mathfp.tex: Hyphenate "single-precision" and
4897 "floating-point".
4898 * libm/mathfp/e_acosh.c: Use @ifnottex instead of @ifinfo.
4899 * libm/mathfp/e_atanh.c: Likewise.
4900 * libm/mathfp/e_hypot.c: Likewise.
4901 * libm/mathfp/er_lgamma.c: Likewise.
4902 * libm/mathfp/s_acos.c: Likewise.
4903 * libm/mathfp/s_asine.c: Likewise.
4904 * libm/mathfp/s_asinh.c: Likewise.
4905 * libm/mathfp/s_atan.c: Likewise.
4906 * libm/mathfp/s_atan2.c: Likewise.
4907 * libm/mathfp/s_atangent.c: Likewise.
4908 * libm/mathfp/s_cosh.c: Likewise.
4909 * libm/mathfp/s_exp.c: Likewise.
4910 * libm/mathfp/s_fmod.c: Likewise.
4911 * libm/mathfp/s_frexp.c: Likewise. Also use "nonzero".
4912 * libm/mathfp/s_isnan.c: Hyphenate "single-precision" and
4913 "floating-point". Use "nonzero".
4914 * libm/math/s_pow.c: Replace "exp1.0nt" with "exponent".
4915 * libm/mathfp/s_ldexp.c: Use @ifnottex instead of @ifinfo.
4916 * libm/mathfp/s_sineh.c: Likewise.
4917 * libm/mathfp/w_jn.c: Likewise.
4918
4919 2003-10-15 Alexandre Oliva <aoliva@redhat.com>
4920
4921 * Makefile.am: Add $(MAKE) comments to multido and multiclean
4922 lines, to enable parallel make.
4923 * Makefile.in: Rebuilt.
4924
4925 2003-10-14 Christopher Faylor <cgf@redhat.com>
4926
4927 * libc/time/clock.c: Clarify documentation of return value when no
4928 measurement is available.
4929
4930 2003-09-29 Ian Lance Taylor <ian@wasabisystems.com>
4931
4932 * libm/configure.in: Check libm_machine_dir, not machine_dir.
4933 * libm/configure: Regenerate.
4934 * libm/Makefile.in: Ditto.
4935
4936 2003-09-29 J"orn Rennecke <joern.rennecke@superh.com>
4937
4938 * libc/machine/sh/strncpy.S: New file.
4939 * libc/machine/sh/Makefile.am: Add entry & rule for new file.
4940 * libc/machine/sh/Makefile.in: Regenerate.
4941
4942 2003-09-11 James E Wilson <wilson@specifixinc.com>
4943
4944 * MAINTAINERS: Update my e-mail address.
4945
4946 2003-09-10 Corinna Vinschen <corinna@vinschen.de>
4947
4948 * libc/include/sys/unistd.h: Declare function daemon for Cygwin.
4949
4950 2003-09-09 Jeff Johnston <jjohnstn@redhat.com>
4951
4952 * libc/machine/powerpc/fix64.h: Fix typo for _simdldcheck
4953 prototype.
4954 * libc/machine/powerpc/simdldtoa.c: Remove prototype for
4955 _simdldcheck(). Also add unsigned cast for index variable in
4956 for loop using sizeof operators.
4957 * libc/machine/powerpc/strtoufix32.c: Remove unused variable.
4958 * libc/machine/powerpc/strtosfix64.c: Fix call to _simdldcheck.
4959 * libc/machine/powerpc/strtoufix64.c (_strtoufix64_r): Ditto
4960 plus fix shift calculation for determining if there is a
4961 carry from word2.
4962
4963 2003-09-09 Corinna Vinschen <corinna@vinschen.de>
4964
4965 * libc/include/grp.h: Don't define setgrfile, group_from_gid and
4966 setgroupent for Cygwin.
4967
4968 2003-09-05 Jeff Johnston <jjohnstn@redhat.com>
4969
4970 * libc/stdlib/exit.c (exit): Setting of struct _atexit ptr p
4971 is different for _REENT_SMALL than when using regular reent
4972 struct.
4973
4974 2003-09-05 Ben Elliston <bje@wasabisystems.com>
4975
4976 * libc/ctype/wctype.c (_DEFUN): Remove empty default case, as
4977 modern versions of GCC issue a warning.
4978
4979 * libc/machine/xscale/memcmp.c (memcmp): Strip trailing whitespace
4980 after continuation characters that induces a warning from modern
4981 versions of GCC.
4982
4983 2003-09-04 Ben Elliston <bje@wasabisystems.com>
4984
4985 * libc/stdlib/mstats.c[_ELIX_LEVEL]: Fix guards. #ifndef FOO ||
4986 FOO >= 2 is invalid; use #if !defined (FOO) || FOO >= 2 instead.
4987
4988 2003-09-02 Thomas Pfaff <tpfaff@gmx.net>
4989
4990 * libc/stdlib/atexit.c: Rename _REENT to _GLOBAL_REENT throughout.
4991 * libc/stdlib/exit.c : Ditto.
4992 * libc/stdlib/on_exit.c: Ditto.
4993
4994 2003-08-27 Corinna Vinschen <corinna@vinschen.de>
4995
4996 * libc/include/reent.h: Define stat64 as __stat64 when
4997 compiling newlib for Cygwin.
4998
4999 2003-08-26 Jeff Johnston <jjohnstn@redhat.com>
5000
5001 * libc/include/sys/stat.h[__CYGWIN__]: Only define stat64 as
5002 __stat64 when compiling newlib.
5003
5004 2003-08-26 Jeff Johnston <jjohnstn@redhat.com>
5005
5006 * libc/include/stdio.h: Allow the io64 function prototypes for
5007 Cygwin when compiling newlib.
5008 * libc/include/sys/stat.h[__CYGWIN__]: Define stat64 as __stat64
5009 to expose the Cygwin struct __stat64 type.
5010 * libc/stdio64/fseeko64.c: Use _fstat64_r and pass a struct stat64
5011 pointer.
5012 * libc/stdio64/tmpfile64.c(_tmpfile64_r): Call _fopen64_r.
5013
5014 2003-08-23 Christopher Faylor <cgf@redhat.com>
5015
5016 * libc/stdio64/fseeko64.c (fseeko64_r): Rename second fseeko64_r
5017 definition to fseeko64.
5018
5019 2003-08-22 Jeff Johnston <jjohnstn@redhat.com>
5020
5021 * libc/include/sys/reent.h: Add _GLOBAL_REENT macro.
5022 * libc/stdio: Globally remove/replace all references to fp->_data.
5023 Replace with _REENT or _GLOBAL_REENT where appropriate.
5024 * libc/stdio/asprintf.c: Ditto.
5025 * libc/stdio/fclose.c: Ditto.
5026 * libc/stdio/fvwrite.c: Ditto.
5027 * libc/stdio/makebuf.c: Ditto.
5028 * libc/stdio/refill.c: Ditto.
5029 * libc/stdio/local.h: Ditto.
5030 * libc/stdio/setvbuf.c: Ditto.
5031 * libc/stdio/sscanf.c: Ditto.
5032 * libc/stdio/stdio.c: Ditto.
5033 * libc/stdio/ungetc.c: Ditto.
5034 * libc/stdio/vfscanf.c: Ditto.
5035 * libc/stdio/vsscanf.c: Ditto.
5036 * libc/stdio/fopen.c: Ditto. Also use _fseek_r in _fopen_r.
5037 * libc/stdio/vasprintf.c: Ditto. Also call _vfprintf_r directly.
5038 * libc/stdio/vsnprintf.c: Ditto.
5039 * libc/stdio/vsprintf.c: Ditto.
5040 * libc/stdio/fcloseall.c(fcloseall): Use _GLOBAL_REENT macro
5041 instead of _REENT to walk file list.
5042 * libc/stdio/fflush.c: Ditto.
5043 * libc/stdio/fgetpos.c: Add reentrant version and have regular
5044 version call reentrant version with _REENT argument.
5045 * libc/stdio/fsetpos.c: Ditto.
5046 * libc/stdio/fseek.c: Ditto.
5047 * libc/stdio/fseeko.c: Ditto.
5048 * libc/stdio/ftell.c: Ditto.
5049 * libc/stdio/ftello.c: Ditto.
5050 * libc/stdio/freopen.c: Ditto.
5051 * libc/stdio/findfp.c: Use _GLOBAL_REENT pointer when adding
5052 new files to chain. Also use _GLOBAL_REENT pointer for
5053 cleaning up.
5054 * libc/stdio/fiprintf.c: Reformatted to minimize duplicate code.
5055 * libc/stdio/siprintf.c: Ditto.
5056 * libc/stdio/iprintf.c: Ditto.
5057 * libc/stdio/fprintf.c: Ditto.
5058 * libc/stdio/printf.c: Ditto.
5059 * libc/stdio/snprintf.c: Call _vfprintf_r directly.
5060 * libc/stdio/sprintf.c: Ditto.
5061 * libc/stdio/vprintf.c: Ditto. Also add _REENT_ONLY check.
5062 * libc/stdio/rewind.c: Call _fseek_r directly.
5063 * libc/stdio/tmpfile.c: Call _fopen_r and _remove_r directly.
5064 * libc/stdio/vfprintf.c (_VFPRINTF_R): Change _r routines to use
5065 data pointer.
5066 (get_arg): Add extra struct _reent pointer argument.
5067 * libc/stdio64/fgetpos64.c: Add _r versions, remove any reference
5068 to fp->_data.
5069 * libc/stdio64/fopen64.c: Ditto.
5070 * libc/stdio64/freopen64.c: Ditto.
5071 * libc/stdio64/fsetpos64.c: Ditto.
5072 * libc/stdio64/ftello64.c: Ditto.
5073 * libc/stdio64/local64.h: Ditto.
5074 * libc/stdio64/stdio64.c: Ditto.
5075 * libc/stdio64/fseeko64.c: Ditto plus use _fstat_r instead of
5076 _fstat64_r for the meantime.
5077
5078 2003-08-19 Jeff Johnston <jjohnstn@redhat.com>
5079
5080 * libc/stdlib/mallocr.c (mALLOc, rEALLOc, mEMEALIGn): Enhance
5081 overflow detection.
5082
5083 2003-08-13 Aldy Hernandez <aldyh@redhat.com>
5084
5085 * libc/machine/powerpc/machine/stdlib.h: Wrap SPE functions in
5086 extern "C".
5087
5088 2003-08-13 Jeff Johnston <jjohnstn@redhat.com>
5089
5090 * libc/include/math.h: Add prototypes for __signbitf and
5091 __signbitd.
5092
5093 2003-07-31 Jeff Johnston <jjohnstn@redhat.com>
5094
5095 * libc/ctype/iswalpha.c: Fix calls to __jp2uc to pass the
5096 correct type of conversion when dealing with EUCJP or SJIS.
5097 * libc/ctype/iswblank.c: Ditto.
5098 * libc/ctype/iswcntrl.c: Ditto.
5099 * libc/ctype/iswprint.c: Ditto.
5100 * libc/ctype/iswpunct.c: Ditto.
5101 * libc/ctype/iswspace.c: Ditto.
5102 * libc/ctype/towlower.c: Ditto.
5103 * libc/ctype/towupper.c: Ditto.
5104
5105 2003-07-31 Nick Clifton <nickc@redhat.com>
5106
5107 * libc/sys/sysnecv850/crt0.S (_start): Allocate 4 slots on stack
5108 before calling main, in case it saves its argument registers.
5109 Remove reference to deleted v850ea port.
5110 * configure.host: Remove reference to deleted v850ea port.
5111 Do not use -mv850 when building for v850e target. This
5112 prevents the ctbp system register from being initialised.
5113
5114 2003-07-29 Honda Hiroki <hhonda@ipflex.com>
5115
5116 * libc/stdio/vfprintf.c: Set output size to 1 when
5117 we have %f format with precision 0 and # flag not specified.
5118
5119 2003-07-29 Alexandre Oliva <aoliva@redhat.com>
5120
5121 * libc/machine/mn10300/setjmp.S: Never emit both .am33 and
5122 .am33_2.
5123
5124 2003-07-25 Christopher Faylor <cgf@redhat.com>
5125
5126 * libc/stdio64/fdopen64.c: Include sys/lock.h.
5127
5128 2003-07-25 Christopher Faylor <cgf@redhat.com>
5129
5130 * configure.host: Find cygwin include directory, when appropriate.
5131
5132 2003-07-24 Christopher Faylor <cgf@redhat.com>
5133
5134 * libc/stdio64/fdopen64.c: New file.
5135 * libc/stdio64/Makefile.am (LIB_OBJS): Add fdopen64.o
5136 * libc/stdio64/Makefile.in: Regenerate.
5137 * libc/include/stdio.h (fdopen64): Define.
5138 * libc/include/stdio.h (_fdopen64_r): Ditto.
5139
5140 2003-07-10 Alexandre Oliva <aoliva@redhat.com>
5141
5142 2000-04-27 Alexandre Oliva <aoliva@cygnus.com>
5143 * libc/include/machine/setjmp.h (_JBLEN, AM33/2.0): Set to 26.
5144 * libc/machine/mn10300/setjmp.S (setjmp, longjmp): Save and
5145 restore callee-saved FP registers.
5146
5147 2003-07-10 J"orn Rennecke <joern.rennecke@superh.com>
5148
5149 * libc/include/sys/unistd.h (ftruncate, truncate): Also declare
5150 for __sh__.
5151 * libc/sys/sh/Makefile.am (lib_a_SOURCES): Add ftruncate.c and
5152 truncate.c.
5153 * libc/sys/sh/Makefile.in: Regenerate.
5154 * libc/sys/sh/sys/syscall.h: (SYS_truncate, SYS_ftruncate): Define.
5155 * libc/sys/sh/ftruncate.c: New file.
5156 * libc/sys/sh/truncate.c: Likewise.
5157
5158 2003-07-09 Alexandre Oliva <aoliva@redhat.com>
5159
5160 * libc/include/math.h (nan, nanf): Update prototype to C99.
5161 * libm/common/s_nan.c (nan): Likewise.
5162 * libm/common/s_nanf.c (nanf, nan): Likewise.
5163 * libc/sys/linux/cmath/math_private.h (nan, nanf): Likewise.
5164
5165 2003-07-07 Jeff Johnston <jjohnstn@redhat.com>
5166
5167 * libc/include/stdbool.h: Removed as this is defined by gcc.
5168
5169 2003-07-03 Shaun Jackman <sjackman@pathwayconnect.com>
5170
5171 * libc/include/stdbool.h: New header file defined by C99.
5172
5173 2003-07-02 Jeff Johnston <jjohnstn@redhat.com>
5174
5175 * libc/include/sys/types.h (int8_t): Make signed.
5176
5177 2003-07-02 Jeff Johnston <jjohnstn@redhat.com>
5178
5179 * libc/sys/linux/include/mqueue.h: Add include of <sys/fcntl.h>.
5180
5181 2003-06-27 Jose Goncalves <jose.goncalves@inov.pt>
5182
5183 * libc/sys/linux/mq_open.c (mq_open): Only set created flag
5184 on if we actually created the shared memory file exclusively.
5185
5186 2003-06-27 Joe Vornehm <joev@mitre.org>
5187
5188 * libm/common/s_fpclassify.c (__fpclassifyf): Fix
5189 comparisons to account for unsigned internal value w.
5190
5191 2003-06-26 Jeff Johnston <jjohnstn@redhat.com>
5192
5193 * libc/sys/linux/mq_open.c (mq_open): Must allocate rdbuf and
5194 wrbuf for a non-creating open.
5195
5196 2003-06-24 Kazu Hirata <kazu@cs.umass.edu>
5197
5198 * libc/machine/h8300/setarch.h: New.
5199 * libc/machine/h8300/memcpy.S: Use it.
5200 * libc/machine/h8300/memset.S: Likewise.
5201 * libc/machine/h8300/reg_memcpy.S: Likewise.
5202 * libc/machine/h8300/reg_memset.S: Likewise.
5203 * libc/machine/h8300/setjmp.S: Likewise.
5204 * libc/machine/h8300/strcmp.S: Likewise.
5205
5206 2003-06-24 Richard Sandiford <rsandifo@redhat.com>
5207
5208 * libc/sys/h8300hms/crt0.S (_start): Fix register sizes in call
5209 to atexit().
5210
5211 2003-06-20 Jeff Johnston <jjohnstn@redhat.com>
5212
5213 * configure.host (iq2000): Add tabs.
5214
5215 2003-06-20 Jeff Johnston <jjohnstn@redhat.com>
5216
5217 * libc/include/sys/reent.h (_REENT_INIT_PTR): Fix macros
5218 to handle latest on_exit change.
5219 * libc/sys/linux/Makefile.am: Remove special compilation
5220 for malloc.c and mcheck.c.
5221 * libc/sys/linux/Makefile.in: Regenerated.
5222 * libc/sys/linux/mntent.c: Add definition of _LIBC flag
5223 after including <features.h>.
5224 * libc/sys/linux/mcheck.c: Ditto.
5225 * libc/sys/linux/malloc.c: Ditto plus define _GNU_SOURCE
5226 for <features.h>.
5227 * libc/sys/linux/intl/Makefile.am: Remove -D_LIBC and
5228 add -DNOT_IN_libc to C flags.
5229 * libc/sys/linux/intl/Makefile.in: Regenerated.
5230 * libc/sys/linux/intl/config.h: Add definition of _LIBC.
5231 * libc/sys/linux/linuxthreads/semaphore.h: Include
5232 <bits/pthreadtypes.h>.
5233 * libc/sys/linux/sys/dirent.h: Define _LIBC and NOT_IN_libc after
5234 including <features.h>.
5235 * libc/sys/linux/sys/lock.h: Ditto.
5236
5237 2003-06-11 Nick Clifton <nickc@redhat.com>
5238
5239 * libc/reent/reent.c (reclaim_reent): Fix typo in code to free
5240 _on_exit_args_ptr.
5241
5242 2003-06-10 Stan Cox <scox@redhat.com>
5243 Anthony Green <green@redhat.com>
5244
5245 * configure.host: Add iq2000 support.
5246 * newlib/libc/include/machine/ieeefp.h: Ditto.
5247 * newlib/libc/include/machine/setjmp.h: Ditto.
5248 * libc/machine/iq2000, libc/machine/iq2000/setjmp.S,
5249 libc/machine/iq2000/aclocal.m4, libc/machine/iq2000/configure,
5250 libc/machine/iq2000/configure.in, libc/machine/iq2000/Makefile.am,
5251 libc/machine/iq2000/Makefile.in: New files.
5252
5253 2003-06-10 Richard Sandiford <rsandifo@redhat.com>
5254
5255 * libc/sys/h8300hms/setarch.h: New file.
5256 * libc/sys/h8300hms/close.S, libc/sys/h8300hms/fstat.S,
5257 libc/sys/h8300hms/lseek.S, libc/sys/h8300hms/open.S,
5258 libc/sys/h8300hms/read.S, libc/sys/h8300hms/stat.S,
5259 libc/sys/h8300hms/write.S, libc/sys/h8300hms/crt0.S: Use it.
5260
5261 2003-06-06 Jeff Johnston <jjohnstn@redhat.com>
5262
5263 * libc/argz/argz_add.c: Change to use _DEFUN macro for function
5264 definition.
5265 * libc/argz/argz_add_sep.c: Ditto.
5266 * libc/argz/argz_append.c libc/argz/argz_count.c: Ditto.
5267 * libc/argz/argz_create.c libc/argz/argz_create_sep.c: Ditto.
5268 * libc/argz/argz_delete.c libc/argz/argz_extract.c: Ditto.
5269 * libc/argz/argz_insert.c libc/argz/argz_next.c: Ditto.
5270 * libc/argz/argz_replace.c libc/argz/argz_stringify.c: Ditto.
5271 * libc/argz/envz_add.c libc/argz/envz_entry.c: Ditto.
5272 * libc/argz/envz_get.c libc/argz/envz_merge.c: Ditto.
5273 * libc/argz/envz_remove.c libc/argz/envz_strip.c: Ditto.
5274 * libc/locale/nl_langinfo.c libc/misc/ffs.c: Ditto.
5275 * libc/posix/closedir.c libc/posix/creat.c: Ditto.
5276 * libc/posix/execl.c libc/posix/execle.c: Ditto.
5277 * libc/posix/execlp.c libc/posix/execve.c: Ditto.
5278 * libc/posix/isatty.c libc/posix/opendir.c: Ditto.
5279 * libc/posix/popen.c libc/posix/readdir.c: Ditto.
5280 * libc/posix/readdir_r.c libc/posix/rewinddir.c: Ditto.
5281 * libc/posix/scandir.c libc/posix/seekdir.c: Ditto.
5282 * libc/posix/telldir.c libc/search/hcreate.c: Ditto.
5283 * libc/search/tdelete.c libc/search/tdestroy.c: Ditto.
5284 * libc/search/tfind.c libc/search/tsearch.c: Ditto.
5285 * libc/search/twalk.c libc/signal/signal.c: Ditto.
5286
5287 2003-06-05 Nick Clifton <nickc@redhat.com>
5288
5289 * libc/include/sys/reent.h (struct _on_exit_args): New
5290 structure containing fields used by the on_exit() function.
5291 (struct _atexit): Include struct _on_exit_args. For
5292 _REENT_SMALL do his via a pointer that is initialised when
5293 needed.
5294 * libc/reent/reent.c (_reclaim_reent): Free the _on_exit_args
5295 structure, if one has been allocated.
5296 * libc/stdlib/atexit.c (atexit): Update indirection to
5297 _fntypes field.
5298 * libc/stdlib/on_exit.c (on_exit): Indirect via the
5299 _on_exit_args structure. For _REENT_SMALL, allocate a
5300 structure if one does not exist.
5301 * libc/stdlib/exit.c (exit): Indirect via the _on_exit_args
5302 structure.
5303
5304 2003-06-04 Jeff Johnston <jjohnstn@redhat.com>
5305
5306 * libc/sys/linux/net/Makefile.am: Remove extraneous markers.
5307 * libc/sys/linux/net/Makefile.in: Regenerated.
5308
5309 2003-06-03 Jeff Johnston <jjohnstn@redhat.com>
5310
5311 * libc/reent/execr.c: Use _DEFUN macro for function declaration.
5312 * libc/reent/fcntlr.c: Ditto.
5313 * libc/reent/fstat64r.c: Ditto.
5314 * libc/reent/linkr.c: Ditto.
5315 * libc/reent/lseek64r.c: Ditto.
5316 * libc/reent/lseekr.c: Ditto.
5317 * libc/reent/openr.c: Ditto.
5318 * libc/reent/readr.c: Ditto.
5319 * libc/reent/reent.c: Ditto.
5320 * libc/reent/sbrkr.c: Ditto.
5321 * libc/reent/signalr.c: Ditto.
5322 * libc/reent/signgam.c: Ditto.
5323 * libc/reent/statr.c: Ditto.
5324 * libc/reent/timer.c: Ditto.
5325 * libc/reent/unlinkr.c: Ditto.
5326 * libc/reent/writer.c: Ditto.
5327 * libc/syscalls/sysclose.c: Ditto.
5328 * libc/syscalls/sysexecve.c: Ditto.
5329 * libc/syscalls/sysfcntl.c: Ditto.
5330 * libc/syscalls/sysfork.c: Ditto.
5331 * libc/syscalls/sysfstat.c: Ditto.
5332 * libc/syscalls/sysgetpid.c: Ditto.
5333 * libc/syscalls/sysgettod.c: Ditto.
5334 * libc/syscalls/syskill.c: Ditto.
5335 * libc/syscalls/syslink.c: Ditto.
5336 * libc/syscalls/syslseek.c: Ditto.
5337 * libc/syscalls/sysopen.c: Ditto.
5338 * libc/syscalls/sysread.c: Ditto.
5339 * libc/syscalls/syssbrk.c: Ditto.
5340 * libc/syscalls/sysstat.c: Ditto.
5341 * libc/syscalls/systimes.c: Ditto.
5342 * libc/syscalls/sysunlink.c: Ditto.
5343 * libc/syscalls/syswait.c: Ditto.
5344 * libc/syscalls/syswrite.c: Ditto.
5345
5346 2003-06-03 Till Straumann <strauman@SLAC.Stanford.EDU>
5347
5348 * libc/time/tzset_r.c: Change local variables that are
5349 set via sscanf using the %h format specifier to be unsigned short
5350 instead of int.
5351
5352 2003-05-30 Kelley Cook <kelleycook@wideopenwest.com>
5353
5354 * configure.host: Allow i[34567]86 variant.
5355 * configure.in: Likewise.
5356 * README: Likewise to the docs.
5357 * configure: Regenerated.
5358 * Makefile.in: Ditto.
5359
5360 2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
5361 Tom Fitzsimmons <fitzsim@redhat.com>
5362
5363 * configure.in: Add iconvdata support for x86 linux.
5364 * configure: Regenerated.
5365 * libc/sys/linux/Makefile.am: Add EL/IX level 3 network, dynamic
5366 library, iconv, and linuxthreads support.
5367 * libc/sys/linux/configure.in: Ditto.
5368 * libc/sys/linux/Makefile.in: Regenerated.
5369 * libc/sys/linux/configure: Ditto.
5370 * iconvdata/EUC-JP.irreversible: New file.
5371 * iconvdata/Makefile.am: Ditto.
5372 * iconvdata/Makefile.in: Ditto.
5373 * iconvdata/SJIS.irreversible: Ditto.
5374 * iconvdata/aclocal.m4: Ditto.
5375 * iconvdata/configure: Ditto.
5376 * iconvdata/configure.in: Ditto.
5377 * iconvdata/dummy.c: Ditto.
5378 * iconvdata/euc-jp.c: Ditto.
5379 * iconvdata/gconv-modules: Ditto.
5380 * iconvdata/jis0201.c: Ditto.
5381 * iconvdata/jis0201.h: Ditto.
5382 * iconvdata/jis0208.c: Ditto.
5383 * iconvdata/jis0208.h: Ditto.
5384 * iconvdata/jis0212.c: Ditto.
5385 * iconvdata/jis0212.h: Ditto.
5386 * iconvdata/sjis.c: Ditto.
5387 * libc/include/errno.h: Protect definition of error_t.
5388 * libc/sys/linux/gethostid.c: New file.
5389 * libc/sys/linux/sethostid.c: Ditto.
5390 * libc/sys/linux/dl/Makefile.am: Ditto.
5391 * libc/sys/linux/dl/Makefile.in: Ditto.
5392 * libc/sys/linux/dl/abi-tag.h: Ditto.
5393 * libc/sys/linux/dl/atomicity.h: Ditto.
5394 * libc/sys/linux/dl/dl-addr.c: Ditto.
5395 * libc/sys/linux/dl/dl-cache.c: Ditto.
5396 * libc/sys/linux/dl/dl-cache.h: Ditto.
5397 * libc/sys/linux/dl/dl-close.c: Ditto.
5398 * libc/sys/linux/dl/dl-debug.c: Ditto.
5399 * libc/sys/linux/dl/dl-deps.c: Ditto.
5400 * libc/sys/linux/dl/dl-dst.h: Ditto.
5401 * libc/sys/linux/dl/dl-error.c: Ditto.
5402 * libc/sys/linux/dl/dl-fini.c: Ditto.
5403 * libc/sys/linux/dl/dl-init.c: Ditto.
5404 * libc/sys/linux/dl/dl-iteratephdr.c: Ditto.
5405 * libc/sys/linux/dl/dl-libc.c: Ditto.
5406 * libc/sys/linux/dl/dl-librecon.h: Ditto.
5407 * libc/sys/linux/dl/dl-load.c: Ditto.
5408 * libc/sys/linux/dl/dl-lookup.c: Ditto.
5409 * libc/sys/linux/dl/dl-lookupcfg.h: Ditto.
5410 * libc/sys/linux/dl/dl-minimal.c: Ditto.
5411 * libc/sys/linux/dl/dl-misc.c: Ditto.
5412 * libc/sys/linux/dl/dl-object.c: Ditto.
5413 * libc/sys/linux/dl/dl-open.c: Ditto.
5414 * libc/sys/linux/dl/dl-osinfo.h: Ditto.
5415 * libc/sys/linux/dl/dl-profile.c: Ditto.
5416 * libc/sys/linux/dl/dl-profstub.c: Ditto.
5417 * libc/sys/linux/dl/dl-reloc.c: Ditto.
5418 * libc/sys/linux/dl/dl-runtime.c: Ditto.
5419 * libc/sys/linux/dl/dl-support.c: Ditto.
5420 * libc/sys/linux/dl/dl-sym.c: Ditto.
5421 * libc/sys/linux/dl/dl-version.c: Ditto.
5422 * libc/sys/linux/dl/dlfcn.h: Ditto.
5423 * libc/sys/linux/dl/do-lookup.h: Ditto.
5424 * libc/sys/linux/dl/do-rel.h: Ditto.
5425 * libc/sys/linux/dl/dynamic-link.h: Ditto.
5426 * libc/sys/linux/dl/kernel-features.h: Ditto.
5427 * libc/sys/linux/dl/ldsodefs.h: Ditto.
5428 * libc/sys/linux/dl/libintl.h: Ditto.
5429 * libc/sys/linux/dl/trusted-dirs.h: Ditto.
5430 * libc/sys/linux/dl/unsecvars.h: Ditto.
5431 * libc/sys/linux/iconv/Makefile.am: Ditto.
5432 * libc/sys/linux/iconv/Makefile.in: Ditto.
5433 * libc/sys/linux/iconv/categories.def: Ditto.
5434 * libc/sys/linux/iconv/dummy-repertoire.c: Ditto.
5435 * libc/sys/linux/iconv/gconv.c: Ditto.
5436 * libc/sys/linux/iconv/gconv_builtin.c: Ditto.
5437 * libc/sys/linux/iconv/gconv_builtin.h: Ditto.
5438 * libc/sys/linux/iconv/gconv_cache.c: Ditto.
5439 * libc/sys/linux/iconv/gconv_charset.h: Ditto.
5440 * libc/sys/linux/iconv/gconv_close.c: Ditto.
5441 * libc/sys/linux/iconv/gconv_conf.c: Ditto.
5442 * libc/sys/linux/iconv/gconv_db.c: Ditto.
5443 * libc/sys/linux/iconv/gconv_dl.c: Ditto.
5444 * libc/sys/linux/iconv/gconv_int.h: Ditto.
5445 * libc/sys/linux/iconv/gconv_open.c: Ditto.
5446 * libc/sys/linux/iconv/gconv_simple.c: Ditto.
5447 * libc/sys/linux/iconv/gconv_trans.c: Ditto.
5448 * libc/sys/linux/iconv/hash-string.h: Ditto.
5449 * libc/sys/linux/iconv/iconv.c: Ditto.
5450 * libc/sys/linux/iconv/iconv.h: Ditto.
5451 * libc/sys/linux/iconv/iconv_charmap.c: Ditto.
5452 * libc/sys/linux/iconv/iconv_close.c: Ditto.
5453 * libc/sys/linux/iconv/iconv_open.c: Ditto.
5454 * libc/sys/linux/iconv/iconvconfig.c: Ditto.
5455 * libc/sys/linux/iconv/iconvconfig.h: Ditto.
5456 * libc/sys/linux/iconv/loadinfo.h: Ditto.
5457 * libc/sys/linux/iconv/localeinfo.h: Ditto.
5458 * libc/sys/linux/iconv/loop.c: Ditto.
5459 * libc/sys/linux/iconv/skeleton.c: Ditto.
5460 * libc/sys/linux/iconv/strtab.c: Ditto.
5461 * libc/sys/linux/include/dl-hash.h: Ditto.
5462 * libc/sys/linux/include/dlfcn.h: Ditto.
5463 * libc/sys/linux/include/fnmatch.h: Ditto.
5464 * libc/sys/linux/include/gconv.h: Ditto.
5465 * libc/sys/linux/include/glob.h: Ditto.
5466 * libc/sys/linux/include/hesiod.h: Ditto.
5467 * libc/sys/linux/include/ifaddrs.h: Ditto.
5468 * libc/sys/linux/include/libc_private.h: Ditto.
5469 * libc/sys/linux/include/link.h: Ditto.
5470 * libc/sys/linux/include/namespace.h: Ditto.
5471 * libc/sys/linux/include/netconfig.h: Ditto.
5472 * libc/sys/linux/include/netdb.h: Ditto.
5473 * libc/sys/linux/include/nsswitch.h: Ditto.
5474 * libc/sys/linux/include/regex.h: Ditto.
5475 * libc/sys/linux/include/resolv.h: Ditto.
5476 * libc/sys/linux/include/rune.h: Ditto.
5477 * libc/sys/linux/include/runetype.h: Ditto.
5478 * libc/sys/linux/include/semaphore.h: Ditto.
5479 * libc/sys/linux/include/setlocale.h: Ditto.
5480 * libc/sys/linux/include/un-namespace.h: Ditto.
5481 * libc/sys/linux/include/wordexp.h: Ditto.
5482 * libc/sys/linux/include/arpa/ftp.h: Ditto.
5483 * libc/sys/linux/include/arpa/inet.h: Ditto.
5484 * libc/sys/linux/include/arpa/nameser.h: Ditto.
5485 * libc/sys/linux/include/arpa/nameser_compat.h: Ditto.
5486 * libc/sys/linux/include/arpa/telnet.h: Ditto.
5487 * libc/sys/linux/include/arpa/tftp.h: Ditto.
5488 * libc/sys/linux/include/net/bpf.h: Ditto.
5489 * libc/sys/linux/include/net/bpf_compat.h: Ditto.
5490 * libc/sys/linux/include/net/bpfdesc.h: Ditto.
5491 * libc/sys/linux/include/net/bridge.h: Ditto.
5492 * libc/sys/linux/include/net/ethernet.h: Ditto.
5493 * libc/sys/linux/include/net/fddi.h: Ditto.
5494 * libc/sys/linux/include/net/if.h: Ditto.
5495 * libc/sys/linux/include/net/if_arc.h: Ditto.
5496 * libc/sys/linux/include/net/if_arp.h: Ditto.
5497 * libc/sys/linux/include/net/if_atm.h: Ditto.
5498 * libc/sys/linux/include/net/if_dl.h: Ditto.
5499 * libc/sys/linux/include/net/if_gif.h: Ditto.
5500 * libc/sys/linux/include/net/if_ieee80211.h: Ditto.
5501 * libc/sys/linux/include/net/if_llc.h: Ditto.
5502 * libc/sys/linux/include/net/if_media.h: Ditto.
5503 * libc/sys/linux/include/net/if_mib.h: Ditto.
5504 * libc/sys/linux/include/net/if_ppp.h: Ditto.
5505 * libc/sys/linux/include/net/if_pppvar.h: Ditto.
5506 * libc/sys/linux/include/net/if_slvar.h: Ditto.
5507 * libc/sys/linux/include/net/if_sppp.h: Ditto.
5508 * libc/sys/linux/include/net/if_stf.h: Ditto.
5509 * libc/sys/linux/include/net/if_tap.h: Ditto.
5510 * libc/sys/linux/include/net/if_tapvar.h: Ditto.
5511 * libc/sys/linux/include/net/if_tun.h: Ditto.
5512 * libc/sys/linux/include/net/if_tunvar.h: Ditto.
5513 * libc/sys/linux/include/net/if_types.h: Ditto.
5514 * libc/sys/linux/include/net/if_var.h: Ditto.
5515 * libc/sys/linux/include/net/if_vlan_var.h: Ditto.
5516 * libc/sys/linux/include/net/intrq.h: Ditto.
5517 * libc/sys/linux/include/net/iso88025.h: Ditto.
5518 * libc/sys/linux/include/net/net_osdep.h: Ditto.
5519 * libc/sys/linux/include/net/netisr.h: Ditto.
5520 * libc/sys/linux/include/net/pfil.h: Ditto.
5521 * libc/sys/linux/include/net/pfkeyv2.h: Ditto.
5522 * libc/sys/linux/include/net/ppp_comp.h: Ditto.
5523 * libc/sys/linux/include/net/ppp_defs.h: Ditto.
5524 * libc/sys/linux/include/net/radix.h: Ditto.
5525 * libc/sys/linux/include/net/raw_cb.h: Ditto.
5526 * libc/sys/linux/include/net/route.h: Ditto.
5527 * libc/sys/linux/include/net/slcompress.h: Ditto.
5528 * libc/sys/linux/include/net/slip.h: Ditto.
5529 * libc/sys/linux/include/net/zlib.h: Ditto.
5530 * libc/sys/linux/include/netinet/icmp6.h: Ditto.
5531 * libc/sys/linux/include/netinet/icmp_var.h: Ditto.
5532 * libc/sys/linux/include/netinet/if_atm.h: Ditto.
5533 * libc/sys/linux/include/netinet/if_ether.h: Ditto.
5534 * libc/sys/linux/include/netinet/igmp.h: Ditto.
5535 * libc/sys/linux/include/netinet/igmp_var.h: Ditto.
5536 * libc/sys/linux/include/netinet/in.h: Ditto.
5537 * libc/sys/linux/include/netinet/in_gif.h: Ditto.
5538 * libc/sys/linux/include/netinet/in_pcb.h: Ditto.
5539 * libc/sys/linux/include/netinet/in_systm.h: Ditto.
5540 * libc/sys/linux/include/netinet/in_var.h: Ditto.
5541 * libc/sys/linux/include/netinet/ip.h: Ditto.
5542 * libc/sys/linux/include/netinet/ip6.h: Ditto.
5543 * libc/sys/linux/include/netinet/ip_dummynet.h: Ditto.
5544 * libc/sys/linux/include/netinet/ip_ecn.h: Ditto.
5545 * libc/sys/linux/include/netinet/ip_encap.h: Ditto.
5546 * libc/sys/linux/include/netinet/ip_flow.h: Ditto.
5547 * libc/sys/linux/include/netinet/ip_fw.h: Ditto.
5548 * libc/sys/linux/include/netinet/ip_icmp.h: Ditto.
5549 * libc/sys/linux/include/netinet/ip_mroute.h: Ditto.
5550 * libc/sys/linux/include/netinet/ip_var.h: Ditto.
5551 * libc/sys/linux/include/netinet/ipprotosw.h: Ditto.
5552 * libc/sys/linux/include/netinet/tcp.h: Ditto.
5553 * libc/sys/linux/include/netinet/tcp_debug.h: Ditto.
5554 * libc/sys/linux/include/netinet/tcp_fsm.h: Ditto.
5555 * libc/sys/linux/include/netinet/tcp_seq.h: Ditto.
5556 * libc/sys/linux/include/netinet/tcp_timer.h: Ditto.
5557 * libc/sys/linux/include/netinet/tcp_var.h: Ditto.
5558 * libc/sys/linux/include/netinet/tcpip.h: Ditto.
5559 * libc/sys/linux/include/netinet/udp.h: Ditto.
5560 * libc/sys/linux/include/netinet/udp_var.h: Ditto.
5561 * libc/sys/linux/include/netinet6/ah.h: Ditto.
5562 * libc/sys/linux/include/netinet6/ah6.h: Ditto.
5563 * libc/sys/linux/include/netinet6/esp.h: Ditto.
5564 * libc/sys/linux/include/netinet6/esp6.h: Ditto.
5565 * libc/sys/linux/include/netinet6/esp_rijndael.h: Ditto.
5566 * libc/sys/linux/include/netinet6/icmp6.h: Ditto.
5567 * libc/sys/linux/include/netinet6/in6.h: Ditto.
5568 * libc/sys/linux/include/netinet6/in6_gif.h: Ditto.
5569 * libc/sys/linux/include/netinet6/in6_ifattach.h: Ditto.
5570 * libc/sys/linux/include/netinet6/in6_pcb.h: Ditto.
5571 * libc/sys/linux/include/netinet6/in6_prefix.h: Ditto.
5572 * libc/sys/linux/include/netinet6/in6_var.h: Ditto.
5573 * libc/sys/linux/include/netinet6/ip6.h: Ditto.
5574 * libc/sys/linux/include/netinet6/ip6_ecn.h: Ditto.
5575 * libc/sys/linux/include/netinet6/ip6_fw.h: Ditto.
5576 * libc/sys/linux/include/netinet6/ip6_mroute.h: Ditto.
5577 * libc/sys/linux/include/netinet6/ip6_var.h: Ditto.
5578 * libc/sys/linux/include/netinet6/ip6protosw.h: Ditto.
5579 * libc/sys/linux/include/netinet6/ipcomp.h: Ditto.
5580 * libc/sys/linux/include/netinet6/ipcomp6.h: Ditto.
5581 * libc/sys/linux/include/netinet6/ipsec.h: Ditto.
5582 * libc/sys/linux/include/netinet6/ipsec6.h: Ditto.
5583 * libc/sys/linux/include/netinet6/mld6_var.h: Ditto.
5584 * libc/sys/linux/include/netinet6/nd6.h: Ditto.
5585 * libc/sys/linux/include/netinet6/pim6.h: Ditto.
5586 * libc/sys/linux/include/netinet6/pim6_var.h: Ditto.
5587 * libc/sys/linux/include/netinet6/raw_ip6.h: Ditto.
5588 * libc/sys/linux/include/netinet6/scope6_var.h: Ditto.
5589 * libc/sys/linux/include/netinet6/tcp6_var.h: Ditto.
5590 * libc/sys/linux/include/netinet6/udp6_var.h: Ditto.
5591 * libc/sys/linux/include/netns/idp.h: Ditto.
5592 * libc/sys/linux/include/netns/idp_var.h: Ditto.
5593 * libc/sys/linux/include/netns/ns.h: Ditto.
5594 * libc/sys/linux/include/netns/ns_error.h: Ditto.
5595 * libc/sys/linux/include/netns/ns_if.h: Ditto.
5596 * libc/sys/linux/include/netns/ns_pcb.h: Ditto.
5597 * libc/sys/linux/include/netns/sp.h: Ditto.
5598 * libc/sys/linux/include/netns/spidp.h: Ditto.
5599 * libc/sys/linux/include/netns/spp_debug.h: Ditto.
5600 * libc/sys/linux/include/netns/spp_timer.h: Ditto.
5601 * libc/sys/linux/include/netns/spp_var.h: Ditto.
5602 * libc/sys/linux/include/rpc/Makefile: Ditto.
5603 * libc/sys/linux/include/rpc/auth.h: Ditto.
5604 * libc/sys/linux/include/rpc/auth_des.h: Ditto.
5605 * libc/sys/linux/include/rpc/auth_kerb.h: Ditto.
5606 * libc/sys/linux/include/rpc/auth_unix.h: Ditto.
5607 * libc/sys/linux/include/rpc/clnt.h: Ditto.
5608 * libc/sys/linux/include/rpc/clnt_soc.h: Ditto.
5609 * libc/sys/linux/include/rpc/clnt_stat.h: Ditto.
5610 * libc/sys/linux/include/rpc/des.h: Ditto.
5611 * libc/sys/linux/include/rpc/des_crypt.h: Ditto.
5612 * libc/sys/linux/include/rpc/nettype.h: Ditto.
5613 * libc/sys/linux/include/rpc/pmap_clnt.h: Ditto.
5614 * libc/sys/linux/include/rpc/pmap_prot.h: Ditto.
5615 * libc/sys/linux/include/rpc/pmap_rmt.h: Ditto.
5616 * libc/sys/linux/include/rpc/raw.h: Ditto.
5617 * libc/sys/linux/include/rpc/rpc.h: Ditto.
5618 * libc/sys/linux/include/rpc/rpc_com.h: Ditto.
5619 * libc/sys/linux/include/rpc/rpc_msg.h: Ditto.
5620 * libc/sys/linux/include/rpc/rpcb_clnt.h: Ditto.
5621 * libc/sys/linux/include/rpc/rpcb_prot.h: Ditto.
5622 * libc/sys/linux/include/rpc/rpcb_prot.x: Ditto.
5623 * libc/sys/linux/include/rpc/rpcent.h: Ditto.
5624 * libc/sys/linux/include/rpc/svc.h: Ditto.
5625 * libc/sys/linux/include/rpc/svc_auth.h: Ditto.
5626 * libc/sys/linux/include/rpc/svc_dg.h: Ditto.
5627 * libc/sys/linux/include/rpc/svc_soc.h: Ditto.
5628 * libc/sys/linux/include/rpc/types.h: Ditto.
5629 * libc/sys/linux/include/rpc/xdr.h: Ditto.
5630 * libc/sys/linux/intl/Makefile.am: Ditto.
5631 * libc/sys/linux/intl/Makefile.in: Ditto.
5632 * libc/sys/linux/intl/bindtextdom.c: Ditto.
5633 * libc/sys/linux/intl/catgets.c: Ditto.
5634 * libc/sys/linux/intl/catgetsinfo.h: Ditto.
5635 * libc/sys/linux/intl/config.h: Ditto.
5636 * libc/sys/linux/intl/dcgettext.c: Ditto.
5637 * libc/sys/linux/intl/dcigettext.c: Ditto.
5638 * libc/sys/linux/intl/dcngettext.c: Ditto.
5639 * libc/sys/linux/intl/dgettext.c: Ditto.
5640 * libc/sys/linux/intl/dngettext.c: Ditto.
5641 * libc/sys/linux/intl/explodename.c: Ditto.
5642 * libc/sys/linux/intl/finddomain.c: Ditto.
5643 * libc/sys/linux/intl/gettext.c: Ditto.
5644 * libc/sys/linux/intl/gettext.h: Ditto.
5645 * libc/sys/linux/intl/gettextP.h: Ditto.
5646 * libc/sys/linux/intl/hash-string.h: Ditto.
5647 * libc/sys/linux/intl/l10nflist.c: Ditto.
5648 * libc/sys/linux/intl/loadinfo.h: Ditto.
5649 * libc/sys/linux/intl/loadmsgcat.c: Ditto.
5650 * libc/sys/linux/intl/locale.alias: Ditto.
5651 * libc/sys/linux/intl/localealias.c: Ditto.
5652 * libc/sys/linux/intl/ngettext.c: Ditto.
5653 * libc/sys/linux/intl/open_catalog.c: Ditto.
5654 * libc/sys/linux/intl/plural.c: Ditto.
5655 * libc/sys/linux/intl/plural.y: Ditto.
5656 * libc/sys/linux/intl/stpcpy.c: Ditto.
5657 * libc/sys/linux/intl/textdomain.c: Ditto.
5658 * libc/sys/linux/linuxthreads/LICENSE: Ditto.
5659 * libc/sys/linux/linuxthreads/Makefile.am: Ditto.
5660 * libc/sys/linux/linuxthreads/Makefile.in: Ditto.
5661 * libc/sys/linux/linuxthreads/aclocal.m4: Ditto.
5662 * libc/sys/linux/linuxthreads/attr.c: Ditto.
5663 * libc/sys/linux/linuxthreads/barrier.c: Ditto.
5664 * libc/sys/linux/linuxthreads/bp-sym.h: Ditto.
5665 * libc/sys/linux/linuxthreads/cancel.c: Ditto.
5666 * libc/sys/linux/linuxthreads/condvar.c: Ditto.
5667 * libc/sys/linux/linuxthreads/config.h: Ditto.
5668 * libc/sys/linux/linuxthreads/configure: Ditto.
5669 * libc/sys/linux/linuxthreads/configure.in: Ditto.
5670 * libc/sys/linux/linuxthreads/defs.awk: Ditto.
5671 * libc/sys/linux/linuxthreads/ecmutex.c: Ditto.
5672 * libc/sys/linux/linuxthreads/events.c: Ditto.
5673 * libc/sys/linux/linuxthreads/getcpuclockid.c: Ditto.
5674 * libc/sys/linux/linuxthreads/getreent.c: Ditto.
5675 * libc/sys/linux/linuxthreads/internals.h: Ditto.
5676 * libc/sys/linux/linuxthreads/join.c: Ditto.
5677 * libc/sys/linux/linuxthreads/joinrace.c: Ditto.
5678 * libc/sys/linux/linuxthreads/kernel-features.h: Ditto.
5679 * libc/sys/linux/linuxthreads/libc-internal.h: Ditto.
5680 * libc/sys/linux/linuxthreads/libc-symbols.h: Ditto.
5681 * libc/sys/linux/linuxthreads/linuxthreads.texi: Ditto.
5682 * libc/sys/linux/linuxthreads/lockfile.c: Ditto.
5683 * libc/sys/linux/linuxthreads/manager.c: Ditto.
5684 * libc/sys/linux/linuxthreads/mq_notify.c: Ditto.
5685 * libc/sys/linux/linuxthreads/mutex.c: Ditto.
5686 * libc/sys/linux/linuxthreads/no-tsd.c: Ditto.
5687 * libc/sys/linux/linuxthreads/oldsemaphore.c: Ditto.
5688 * libc/sys/linux/linuxthreads/posix-timer.h: Ditto.
5689 * libc/sys/linux/linuxthreads/prio.c: Ditto.
5690 * libc/sys/linux/linuxthreads/proc_service.h: Ditto.
5691 * libc/sys/linux/linuxthreads/pt-machine.c: Ditto.
5692 * libc/sys/linux/linuxthreads/ptclock_gettime.c: Ditto.
5693 * libc/sys/linux/linuxthreads/ptclock_settime.c: Ditto.
5694 * libc/sys/linux/linuxthreads/ptfork.c: Ditto.
5695 * libc/sys/linux/linuxthreads/pthread.c: Ditto.
5696 * libc/sys/linux/linuxthreads/ptlongjmp.c: Ditto.
5697 * libc/sys/linux/linuxthreads/queue.h: Ditto.
5698 * libc/sys/linux/linuxthreads/reent.c: Ditto.
5699 * libc/sys/linux/linuxthreads/reqsyscalls.c: Ditto.
5700 * libc/sys/linux/linuxthreads/restart.h: Ditto.
5701 * libc/sys/linux/linuxthreads/rwlock.c: Ditto.
5702 * libc/sys/linux/linuxthreads/semaphore.c: Ditto.
5703 * libc/sys/linux/linuxthreads/semaphore.h: Ditto.
5704 * libc/sys/linux/linuxthreads/shlib-compat.h: Ditto.
5705 * libc/sys/linux/linuxthreads/signals.c: Ditto.
5706 * libc/sys/linux/linuxthreads/specific.c: Ditto.
5707 * libc/sys/linux/linuxthreads/spinlock.c: Ditto.
5708 * libc/sys/linux/linuxthreads/spinlock.h: Ditto.
5709 * libc/sys/linux/linuxthreads/sysctl.c: Ditto.
5710 * libc/sys/linux/linuxthreads/td_init.c: Ditto.
5711 * libc/sys/linux/linuxthreads/td_log.c: Ditto.
5712 * libc/sys/linux/linuxthreads/td_symbol_list.c: Ditto.
5713 * libc/sys/linux/linuxthreads/td_ta_clear_event.c: Ditto.
5714 * libc/sys/linux/linuxthreads/td_ta_delete.c: Ditto.
5715 * libc/sys/linux/linuxthreads/td_ta_enable_stats.c: Ditto.
5716 * libc/sys/linux/linuxthreads/td_ta_event_addr.c: Ditto.
5717 * libc/sys/linux/linuxthreads/td_ta_event_getmsg.c: Ditto.
5718 * libc/sys/linux/linuxthreads/td_ta_get_nthreads.c: Ditto.
5719 * libc/sys/linux/linuxthreads/td_ta_get_ph.c: Ditto.
5720 * libc/sys/linux/linuxthreads/td_ta_get_stats.c: Ditto.
5721 * libc/sys/linux/linuxthreads/td_ta_map_id2thr.c: Ditto.
5722 * libc/sys/linux/linuxthreads/td_ta_map_lwp2thr.c: Ditto.
5723 * libc/sys/linux/linuxthreads/td_ta_new.c: Ditto.
5724 * libc/sys/linux/linuxthreads/td_ta_reset_stats.c: Ditto.
5725 * libc/sys/linux/linuxthreads/td_ta_set_event.c: Ditto.
5726 * libc/sys/linux/linuxthreads/td_ta_setconcurrency.c: Ditto.
5727 * libc/sys/linux/linuxthreads/td_ta_thr_iter.c: Ditto.
5728 * libc/sys/linux/linuxthreads/td_ta_tsd_iter.c: Ditto.
5729 * libc/sys/linux/linuxthreads/td_thr_clear_event.c: Ditto.
5730 * libc/sys/linux/linuxthreads/td_thr_dbresume.c: Ditto.
5731 * libc/sys/linux/linuxthreads/td_thr_dbsuspend.c: Ditto.
5732 * libc/sys/linux/linuxthreads/td_thr_event_enable.c: Ditto.
5733 * libc/sys/linux/linuxthreads/td_thr_event_getmsg.c: Ditto.
5734 * libc/sys/linux/linuxthreads/td_thr_get_info.c: Ditto.
5735 * libc/sys/linux/linuxthreads/td_thr_getfpregs.c: Ditto.
5736 * libc/sys/linux/linuxthreads/td_thr_getgregs.c: Ditto.
5737 * libc/sys/linux/linuxthreads/td_thr_getxregs.c: Ditto.
5738 * libc/sys/linux/linuxthreads/td_thr_getxregsize.c: Ditto.
5739 * libc/sys/linux/linuxthreads/td_thr_set_event.c: Ditto.
5740 * libc/sys/linux/linuxthreads/td_thr_setfpregs.c: Ditto.
5741 * libc/sys/linux/linuxthreads/td_thr_setgregs.c: Ditto.
5742 * libc/sys/linux/linuxthreads/td_thr_setprio.c: Ditto.
5743 * libc/sys/linux/linuxthreads/td_thr_setsigpending.c: Ditto.
5744 * libc/sys/linux/linuxthreads/td_thr_setxregs.c: Ditto.
5745 * libc/sys/linux/linuxthreads/td_thr_sigsetmask.c: Ditto.
5746 * libc/sys/linux/linuxthreads/td_thr_tsd.c: Ditto.
5747 * libc/sys/linux/linuxthreads/td_thr_validate.c: Ditto.
5748 * libc/sys/linux/linuxthreads/testrtsig.h: Ditto.
5749 * libc/sys/linux/linuxthreads/thread_db.h: Ditto.
5750 * libc/sys/linux/linuxthreads/thread_dbP.h: Ditto.
5751 * libc/sys/linux/linuxthreads/timer_create.c: Ditto.
5752 * libc/sys/linux/linuxthreads/timer_delete.c: Ditto.
5753 * libc/sys/linux/linuxthreads/timer_getoverr.c: Ditto.
5754 * libc/sys/linux/linuxthreads/timer_gettime.c: Ditto.
5755 * libc/sys/linux/linuxthreads/timer_routines.c: Ditto.
5756 * libc/sys/linux/linuxthreads/timer_settime.c: Ditto.
5757 * libc/sys/linux/linuxthreads/tst-cancel.c: Ditto.
5758 * libc/sys/linux/linuxthreads/tst-context.c: Ditto.
5759 * libc/sys/linux/linuxthreads/tststack.c: Ditto.
5760 * libc/sys/linux/linuxthreads/unload.c: Ditto.
5761 * libc/sys/linux/linuxthreads/weaks.c: Ditto.
5762 * libc/sys/linux/linuxthreads/wrapsyscall.c: Ditto.
5763 * libc/sys/linux/linuxthreads/bits/initspin.h: Ditto.
5764 * libc/sys/linux/linuxthreads/bits/libc-lock.h: Ditto.
5765 * libc/sys/linux/linuxthreads/bits/libc-tsd.h: Ditto.
5766 * libc/sys/linux/linuxthreads/bits/local_lim.h: Ditto.
5767 * libc/sys/linux/linuxthreads/bits/posix_opt.h: Ditto.
5768 * libc/sys/linux/linuxthreads/bits/pthreadtypes.h: Ditto.
5769 * libc/sys/linux/linuxthreads/bits/sigthread.h: Ditto.
5770 * libc/sys/linux/linuxthreads/machine/Makefile.am: Ditto.
5771 * libc/sys/linux/linuxthreads/machine/Makefile.in: Ditto.
5772 * libc/sys/linux/linuxthreads/machine/aclocal.m4: Ditto.
5773 * libc/sys/linux/linuxthreads/machine/configure: Ditto.
5774 * libc/sys/linux/linuxthreads/machine/configure.in: Ditto.
5775 * libc/sys/linux/linuxthreads/machine/generic/generic-sysd: Ditto.ep.h
5776 * libc/sys/linux/linuxthreads/machine/i386/Makefile.am: Ditto.
5777 * libc/sys/linux/linuxthreads/machine/i386/Makefile.in: Ditto.
5778 * libc/sys/linux/linuxthreads/machine/i386/aclocal.m4: Ditto.
5779 * libc/sys/linux/linuxthreads/machine/i386/bp-asm.h: Ditto.
5780 * libc/sys/linux/linuxthreads/machine/i386/clone.S: Ditto.
5781 * libc/sys/linux/linuxthreads/machine/i386/configure: Ditto.
5782 * libc/sys/linux/linuxthreads/machine/i386/configure.in: Ditto.
5783 * libc/sys/linux/linuxthreads/machine/i386/i386-sysdep.S: Ditto.
5784 * libc/sys/linux/linuxthreads/machine/i386/i386-sysdep.h: Ditto.
5785 * libc/sys/linux/linuxthreads/machine/i386/pspinlock.c: Ditto.
5786 * libc/sys/linux/linuxthreads/machine/i386/pt-machine.h: Ditto.
5787 * libc/sys/linux/linuxthreads/machine/i386/sigcontextinfo.h: Ditto.
5788 * libc/sys/linux/linuxthreads/machine/i386/stackinfo.h: Ditto.
5789 * libc/sys/linux/linuxthreads/machine/i386/sysdep.S: Ditto.
5790 * libc/sys/linux/linuxthreads/machine/i386/sysdep.h: Ditto.
5791 * libc/sys/linux/linuxthreads/machine/i386/useldt.h: Ditto.
5792 * libc/sys/linux/machine/i386/dl-machine.h: Ditto.
5793 * libc/sys/linux/net/Makefile.am: Ditto.
5794 * libc/sys/linux/net/Makefile.in: Ditto.
5795 * libc/sys/linux/net/addr2ascii.3: Ditto.
5796 * libc/sys/linux/net/addr2ascii.c: Ditto.
5797 * libc/sys/linux/net/ascii2addr.c: Ditto.
5798 * libc/sys/linux/net/base64.c: Ditto.
5799 * libc/sys/linux/net/bindresvport.c: Ditto.
5800 * libc/sys/linux/net/byteorder.3: Ditto.
5801 * libc/sys/linux/net/ether_addr.c: Ditto.
5802 * libc/sys/linux/net/ethers.3: Ditto.
5803 * libc/sys/linux/net/getaddrinfo.3: Ditto.
5804 * libc/sys/linux/net/getaddrinfo.c: Ditto.
5805 * libc/sys/linux/net/gethostbydns.c: Ditto.
5806 * libc/sys/linux/net/gethostbyht.c: Ditto.
5807 * libc/sys/linux/net/gethostbyname.3: Ditto.
5808 * libc/sys/linux/net/gethostbynis.c: Ditto.
5809 * libc/sys/linux/net/gethostnamadr.c: Ditto.
5810 * libc/sys/linux/net/getifaddrs.3: Ditto.
5811 * libc/sys/linux/net/getifaddrs.c: Ditto.
5812 * libc/sys/linux/net/getipnodebyname.3: Ditto.
5813 * libc/sys/linux/net/getnameinfo.3: Ditto.
5814 * libc/sys/linux/net/getnameinfo.c: Ditto.
5815 * libc/sys/linux/net/getnetbydns.c: Ditto.
5816 * libc/sys/linux/net/getnetbyht.c: Ditto.
5817 * libc/sys/linux/net/getnetbynis.c: Ditto.
5818 * libc/sys/linux/net/getnetent.3: Ditto.
5819 * libc/sys/linux/net/getnetnamadr.c: Ditto.
5820 * libc/sys/linux/net/getproto.c: Ditto.
5821 * libc/sys/linux/net/getprotoent.3: Ditto.
5822 * libc/sys/linux/net/getprotoent.c: Ditto.
5823 * libc/sys/linux/net/getprotoname.c: Ditto.
5824 * libc/sys/linux/net/getservbyname.c: Ditto.
5825 * libc/sys/linux/net/getservbyport.c: Ditto.
5826 * libc/sys/linux/net/getservent.3: Ditto.
5827 * libc/sys/linux/net/getservent.c: Ditto.
5828 * libc/sys/linux/net/herror.c: Ditto.
5829 * libc/sys/linux/net/hesiod.3: Ditto.
5830 * libc/sys/linux/net/hesiod.c: Ditto.
5831 * libc/sys/linux/net/if_indextoname.3: Ditto.
5832 * libc/sys/linux/net/ifname.c: Ditto.
5833 * libc/sys/linux/net/inet.3: Ditto.
5834 * libc/sys/linux/net/inet6_option_s: Ditto.pace.3
5835 * libc/sys/linux/net/inet6_rthdr_space.3: Ditto.
5836 * libc/sys/linux/net/inet_addr.c: Ditto.
5837 * libc/sys/linux/net/inet_lnaof.c: Ditto.
5838 * libc/sys/linux/net/inet_makeaddr.c: Ditto.
5839 * libc/sys/linux/net/inet_net.3: Ditto.
5840 * libc/sys/linux/net/inet_net_ntop.c: Ditto.
5841 * libc/sys/linux/net/inet_net_pton.c: Ditto.
5842 * libc/sys/linux/net/inet_neta.c: Ditto.
5843 * libc/sys/linux/net/inet_netof.c: Ditto.
5844 * libc/sys/linux/net/inet_network.c: Ditto.
5845 * libc/sys/linux/net/inet_ntoa.c: Ditto.
5846 * libc/sys/linux/net/inet_ntop.c: Ditto.
5847 * libc/sys/linux/net/inet_pton.c: Ditto.
5848 * libc/sys/linux/net/innetgr-stub.c: Ditto.
5849 * libc/sys/linux/net/ip6opt.c: Ditto.
5850 * libc/sys/linux/net/iso_addr.3: Ditto.
5851 * libc/sys/linux/net/iso_addr.c: Ditto.
5852 * libc/sys/linux/net/issetugid-stub.c: Ditto.
5853 * libc/sys/linux/net/linkaddr.3: Ditto.
5854 * libc/sys/linux/net/linkaddr.c: Ditto.
5855 * libc/sys/linux/net/map_v4v6.c: Ditto.
5856 * libc/sys/linux/net/name6.c: Ditto.
5857 * libc/sys/linux/net/namespace.h: Ditto.
5858 * libc/sys/linux/net/ns.3: Ditto.
5859 * libc/sys/linux/net/ns_addr.c: Ditto.
5860 * libc/sys/linux/net/ns_name.c: Ditto.
5861 * libc/sys/linux/net/ns_netint.c: Ditto.
5862 * libc/sys/linux/net/ns_ntoa.c: Ditto.
5863 * libc/sys/linux/net/ns_parse.c: Ditto.
5864 * libc/sys/linux/net/ns_print.c: Ditto.
5865 * libc/sys/linux/net/ns_ttl.c: Ditto.
5866 * libc/sys/linux/net/nsap_addr.c: Ditto.
5867 * libc/sys/linux/net/nsdispatch.3: Ditto.
5868 * libc/sys/linux/net/nsdispatch.c: Ditto.
5869 * libc/sys/linux/net/nslexer.c: Ditto.
5870 * libc/sys/linux/net/nslexer.l: Ditto.
5871 * libc/sys/linux/net/nsparser.c: Ditto.
5872 * libc/sys/linux/net/nsparser.h: Ditto.
5873 * libc/sys/linux/net/nsparser.y: Ditto.
5874 * libc/sys/linux/net/rcmd.3: Ditto.
5875 * libc/sys/linux/net/rcmd.c: Ditto.
5876 * libc/sys/linux/net/rcmdsh.3: Ditto.
5877 * libc/sys/linux/net/rcmdsh.c: Ditto.
5878 * libc/sys/linux/net/recv.c: Ditto.
5879 * libc/sys/linux/net/res_comp.c: Ditto.
5880 * libc/sys/linux/net/res_config.h: Ditto.
5881 * libc/sys/linux/net/res_data.c: Ditto.
5882 * libc/sys/linux/net/res_debug.c: Ditto.
5883 * libc/sys/linux/net/res_init.c: Ditto.
5884 * libc/sys/linux/net/res_mkquery.c: Ditto.
5885 * libc/sys/linux/net/res_mkupdate.c: Ditto.
5886 * libc/sys/linux/net/res_query.c: Ditto.
5887 * libc/sys/linux/net/res_send.c: Ditto.
5888 * libc/sys/linux/net/res_update.c: Ditto.
5889 * libc/sys/linux/net/resolver.3: Ditto.
5890 * libc/sys/linux/net/rthdr.c: Ditto.
5891 * libc/sys/linux/net/send.c: Ditto.
5892 * libc/sys/linux/net/un-namespace.h: Ditto.
5893 * libc/sys/linux/net/vars.c: Ditto.
5894 * libc/sys/linux/stdlib/COPYRIGHT: Ditto.
5895 * libc/sys/linux/stdlib/Makefile.am: Ditto.
5896 * libc/sys/linux/stdlib/Makefile.in: Ditto.
5897 * libc/sys/linux/stdlib/cclass.h: Ditto.
5898 * libc/sys/linux/stdlib/cname.h: Ditto.
5899 * libc/sys/linux/stdlib/collate.c: Ditto.
5900 * libc/sys/linux/stdlib/collate.h: Ditto.
5901 * libc/sys/linux/stdlib/collcmp.c: Ditto.
5902 * libc/sys/linux/stdlib/engine.c: Ditto.
5903 * libc/sys/linux/stdlib/fnmatch.3: Ditto.
5904 * libc/sys/linux/stdlib/fnmatch.c: Ditto.
5905 * libc/sys/linux/stdlib/glob.3: Ditto.
5906 * libc/sys/linux/stdlib/glob.c: Ditto.
5907 * libc/sys/linux/stdlib/reallocf.c: Ditto.
5908 * libc/sys/linux/stdlib/regcomp.c: Ditto.
5909 * libc/sys/linux/stdlib/regerror.c: Ditto.
5910 * libc/sys/linux/stdlib/regex.3: Ditto.
5911 * libc/sys/linux/stdlib/regex2.h: Ditto.
5912 * libc/sys/linux/stdlib/regexec.c: Ditto.
5913 * libc/sys/linux/stdlib/regfree.c: Ditto.
5914 * libc/sys/linux/stdlib/utils.h: Ditto.
5915 * libc/sys/linux/stdlib/wordexp.c: Ditto.
5916 * libc/sys/linux/stdlib/wordfree.c: Ditto.
5917 * libc/sys/linux/sys/dlfcn.h: Ditto.
5918 * libc/sys/linux/sys/elfclass.h: Ditto.
5919 * libc/sys/linux/sys/event.h: Ditto.
5920 * libc/sys/linux/sys/ioccom.h: Ditto.
5921 * libc/sys/linux/sys/libc-tsd.h: Ditto.
5922 * libc/sys/linux/sys/link.h: Ditto.
5923 * libc/sys/linux/sys/lock.h: Ditto.
5924 * libc/sys/linux/sys/param.h: Ditto.
5925 * libc/sys/linux/sys/socket.h: Ditto.
5926 * libc/sys/linux/sys/sockio.h: Ditto.
5927
5928 2003-05-28 Dhananjay Deshpande <dhananjayd@kpitcummins.com>
5929
5930 * newlib/libc/machine/h8300/memcpy.S: Use .h8300hn and .h8300sn for
5931 normal mode
5932 * newlib/libc/machine/h8300/memset.S: Likewise
5933 * newlib/lib/machine/h8300/reg_memcpy.S: Likewise
5934 * newlib/lib/machine/h8300/reg_memset.S: Likewise
5935 * newlib/lib/machine/h8300/setjmp.S: Likewise
5936 * newlib/lib/machine/h8300/strcmp.S: Likewise
5937 * newlib/lib/sys/h8300hms/crt0.S: Likewise
5938
5939 2003-05-13 Corinna Vinschen <corinna@vinschen.de>
5940
5941 * libc/ctype/ctype_.c: Remove checks for deprecated __CYGWIN32__.
5942 * libc/include/stdio.h: Ditto.
5943 * libc/include/sys/config.h: Ditto.
5944 * libc/stdio/mktemp.c: Ditto.
5945
5946 2003-05-13 Corinna Vinschen <corinna@vinschen.de>
5947
5948 * libc/locale/ldpart.c (__part_load_locale): Substitute
5949 __CYGWIN_USE_BIG_TYPES__ by __USE_INTERNAL_STAT64.
5950 * libc/search/hash.c (__hash_open): Ditto.
5951 (init_hash): Ditto.
5952 * libc/stdio/fseek.c (fseek): Ditto.
5953 * libc/stdio/makebuf.c (__smakebuf): Ditto.
5954 * libc/stdio/mktemp.c (_gettemp): Ditto.
5955
5956 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
5957
5958 * libc/include/stdio.h: Change one __CYGWIN__ to __CYGWIN32__.
5959
5960 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
5961
5962 * configure.host: Accomodate removing the libc/sys/cygwin dir.
5963 * libc/locale/ldpart.c (__part_load_locale): Use 64 bit stat call
5964 if __CYGWIN_USE_BIG_TYPES__ is set.
5965 * libc/search/hash.c (__hash_open): Ditto.
5966 (init_hash): Ditto.
5967 * libc/stdio/fseek.c (fseek): Ditto.
5968 * libc/stdio/makebuf.c (__smakebuf): Ditto.
5969 * libc/stdio/mktemp.c (_gettemp): Ditto.
5970 * libc/sys/cygwin/Makefile.am: Remove.
5971 * libc/sys/cygwin/Makefile.in: Remove.
5972 * libc/sys/cygwin/aclocal.m4: Remove.
5973 * libc/sys/cygwin/configure: Remove.
5974 * libc/sys/cygwin/configure.in: Remove.
5975 * libc/sys/cygwin/crt0.c: Move to winsup/cygwin directory.
5976 * libc/sys/cygwin/sys/dirent.h: Move to winsup/cygwin/include/sys
5977 directory.
5978 * libc/sys/cygwin/sys/param.h: Ditto.
5979 * libc/sys/cygwin/sys/utime.h: Ditto.
5980 * libc/sys/cygwin/sys/utmp.h: Ditto.
5981
5982 2003-05-11 Corinna Vinschen <corinna@vinschen.de>
5983
5984 * libc/include/sys/types.h: Don't define key_t for Cygwin.
5985
5986 2003-05-10 Christopher Faylor <cgf@redhat.com>
5987
5988 * libc/sys/cygwin/sys/dirent.h (struct dirent): Accommodate (slightly)
5989 64 bit inodes.
5990
5991 2003-05-09 Corinna Vinschen <corinna@vinschen.de>
5992
5993 * libc/include/sys/config.h: Remove all Cygwin specific configuration.
5994 Include cygwin/config.h instead.
5995
5996 2003-04-16 Jeff Johnston <jjohnstn@redhat.com>
5997
5998 * newlib/libc/machine/powerpc (ato*fix*.c,strto*fix*.c): Shield
5999 all code with #ifdef __SPE__ test.
6000 * newlib/libc/machine/powerpc (simdldtoa.c, ufix64toa.c): Ditto.
6001
6002 2003-04-15 Chris January <chris@atomice.net>
6003
6004 * newlib/libc/include/sys/unistd.h: add declaration for gethostid on
6005 Cygwin.
6006
6007 2003-04-09 J"orn Rennecke <joern.rennecke@superh.com>
6008
6009 * libc/machine/sh/memset.S: Avoid clobbering volatile
6010 objects following a tiny to-be-set array in the same quadword.
6011
6012 2001-04-09 Corinna Vinschen <corinna@vinschen.de>
6013
6014 * libc/include/wchar.h: Add definitions for wcswidth and wcwidth.
6015 * libc/string/Makefile.am: Add wcswidth.c and wcwidth.c
6016 * libc/string/Makefile.in: Regenerated.
6017 * libc/string/wcswidth.c: New file.
6018 * libc/string/wcwidth.c: New file.
6019 * libc/string/wcstrings.tex: Add wcswidth and wcwidth.
6020
6021 Thu Apr 3 14:01:16 2003 J"orn Rennecke <joern.rennecke@superh.com>
6022
6023 * libc/machine/sh/memset.S: Fix problem with alloco region
6024 exceeding destination region for length >= 88 bytes, start
6025 & 0x16 == 0, end & 0x1f == 18.
6026
6027 2001-04-03 Corinna Vinschen <corinna@vinschen.de>
6028
6029 * libc/string/wcscoll.c: Fix comment.
6030
6031 2001-04-02 Corinna Vinschen <corinna@vinschen.de>
6032
6033 * libc/include/wchar.h: Add definition for wcscoll.
6034 * libc/string/Makefile.am: Add wcscoll.c.
6035 * libc/string/Makefile.in: Regenerated.
6036 * libc/string/wcscoll.c: New file.
6037 * libc/string/wcstrings.tex: Add wcscoll.
6038
6039 2003-04-01 Corinna Vinschen <corinna@vinschen.de>
6040
6041 * libc/stdio/sscanf.c: Update flags description.
6042 * libc/stdio/vfscanf.c: Add CHAR flag value to denote 8 bit target
6043 type.
6044 (__svfscanf_r): Add 'hh' and 'll' handling.
6045
6046 2003-04-01 Corinna Vinschen <corinna@vinschen.de>
6047
6048 * libc/sys/cygwin/sys/dirent.h (struct DIR): Change type of
6049 __d_position member to _off_t.
6050
6051 2003-03-20 Jeff Johnston <jjohnstn@redhat.com>
6052
6053 * libc/stdio/vfscanf.c (__svfscanf_r): For floating point conversion,
6054 count all characters used to create number against maximum width.
6055 * libc/machine/powerpc/vfscanf.c (__svfscanf_r): Ditto.
6056
6057 2003-03-18 D.Venkatasubramanian <dvenkat@noida.hcltech.com>
6058
6059 * libc/include/sys/h8300hms/crt0.S[__SIMULATOR__]: Add commandline
6060 support.
6061 * configure.host (h8300*-*-*): Added comment regarding -D__SIMULATOR__
6062 flag to support simulator only extensions.
6063
6064 2003-03-17 Bob Cassels <bcassels@abinitio.com>
6065
6066 * libc/string/wcschr.c: (wcschr): Look for character first,
6067 then for end of string, so you can do wcschr(x, '\0').
6068
6069 2003-03-10 Corinna Vinschen <corinna@vinschen.de>
6070
6071 * libc/include/stdio.h: Declare fgetpos, fsetpos, fseeko and ftello
6072 with internal (_fpos_t and _off_t) datatypes when compiling newlib.
6073 * libc/include/sys/unistd.h: Declare _lseek using _off_t.
6074 * libc/reent/lseekr.c (_lseek_r): Use _off_t instead of off_t.
6075 * libc/stdio/fseeko.c (fseeko): Ditto.
6076 * libc/stdio/ftello.c (ftello): Ditto.
6077 * libc/stdio/stdio.c (__swrite): Ditto.
6078 (__sseek): Ditto.
6079 * libc/stdio/fgetpos.c (fgetpos): Use _fpos_t instead of fpos_t.
6080 * libc/stdio/fseek.c (fseek): Ditto.
6081 * libc/stdio/fsetpos.c (fsetpos): Ditto.
6082 * libc/stdio/ftell.c (ftell): Ditto.
6083 * libc/stdio/local.h: Declare __sseek using _off_t.
6084
6085 2003-03-09 Corinna Vinschen <corinna@vinschen.de>
6086
6087 * libc/reent/lseekr.c (lseek_r): Use _off_t instead of off_t.
6088
6089 2003-03-09 Corinna Vinschen <corinna@vinschen.de>
6090
6091 * libc/include/sys/config.h: Define __CYGWIN_USE_BIG_TYPES__ for
6092 Cygwin.
6093
6094 2003-03-09 Corinna Vinschen <corinna@vinschen.de>
6095
6096 * libc/include/pwd.h: Add guards to avoid type clashes when compiling
6097 Cygwin.
6098 * libc/include/sys/stat.h: Ditto.
6099 * libc/include/sys/unistd.h: Ditto.
6100 * libc/sys/cygwin/sys/dirent.h: Ditto.
6101
6102 2003-03-07 Christopher Faylor <cgf@redhat.com>
6103
6104 * libc/include/sys/unistd.h: Guard getopt.h call to force only
6105 declaration of getopt and avoid getopt_long declaration.
6106 * libc/sys/cygwin/include/unistd.h: Remove.
6107
6108 2003-03-07 Corinna Vinschen <corinna@vinschen.de>
6109
6110 * configure.host: Define stdio64_dir for Cygwin.
6111 * libc/include/stdio.h: Change definition of fpos_t to fulfill
6112 Cygwin 64bit file access requirements.
6113 Drop definition of f*64() functions when compiled for Cygwin.
6114 * libc/include/sys/config.h: Define __LARGE64_FILES for Cygwin.
6115 * libc/reent/lseek64r.c: Use _off64_t instead of off64_t.
6116 * libc/stdio64/local64.h: Use _fpos64_t instead of fpos64_t.
6117
6118 2003-03-07 Jeff Johnston <jjohnstn@redhat.com>
6119
6120 * libc/include/sys/reent.h: Remove extraneous _sig_func
6121 declaration.
6122
6123 2003-02-25 D.Venkatasubramanian <dvenkat@noida.hcltech.com>
6124
6125 * libc/sys/h8300hms/Makefile.am: Add support for new files.
6126 * libc/sys/h8300hms/Makefile.in: Regenerated.
6127 * libc/sys/h8300hms/close.S: New file.
6128 * libc/sys/h8300hms/fstat.S: Ditto.
6129 * libc/sys/h8300hms/lseek.S: Ditto.
6130 * libc/sys/h8300hms/open.S: Ditto.
6131 * libc/sys/h8300hms/stat.S: Ditto.
6132 * libc/sys/h8300hms/read.S: New file to replace read.c.
6133 * libc/sys/h8300hms/read.c: Removed.
6134 * libc/sys/h8300hms/syscalls.c: Removed functions _open,
6135 _lseek, _close, _stat, _fstat.
6136 * libc/sys/h8300hms/write.S: New file to replace write.c.
6137 * libc/sys/h8300hms/write.c: Removed.
6138
6139 2003-02-20 Nick Clifton <nickc@redhat.com>
6140
6141 * Add support for Cirrus Maverick ARM co-processor:
6142
6143 2000-09-13 Aldy Hernandez <aldyh@redhat.com>
6144
6145 * libc/include/machine/ieeefp.h: Set IEEE_BIG_ENDIAN or
6146 IEEE_LITTLE_ENDIAN depending on endian mode (cirrus).
6147
6148 2000-08-11 Aldy Hernandez <aldyh@redhat.com>
6149
6150 * configure.host: set sys_dir, syscall_dir, and
6151 newlib_cflags for ep9312 host.
6152
6153 * configure.host: Restore alpha sorting of entries in case
6154 statements.
6155
6156 2003-02-19 Jeff Johnston <jjohnstn@redhat.com>
6157
6158 * libc/stdlib/mallocr.c (unlink): Revert 02/18 fix.
6159
6160 2003-02-18 Christian Groessler <chris@groessler.org>
6161
6162 * libc/machine/z8k/setjmp.S (_setjmp / _longjmp): Fix to
6163 support z8001 segmented mode.
6164
6165 2003-02-18 Earnie Boyd <earnie@users.sf.net>
6166
6167 * libc/stdlib/mallocr.c (unlink): Don't assign a value to a pointer
6168 with a NULL value.
6169
6170 2003-02-10 Christopher Faylor <cgf@redhat.com>
6171
6172 * libc/include/sys/types.h: Don't define __MS_types__ for Cygwin.
6173 Don't define some types under cygwin.
6174
6175 2003-02-07 Jeff Johnston <jjohnstn@redhat.com>
6176
6177 * acinclude.m4 (--disable-newlib-supplied-syscalls): New configuration
6178 option to allow disabling of syscalls being supplied in newlib.
6179 * aclocal.m4: Regenerated.
6180 * configure: Ditto.
6181 * configure.host: Add support of new configuration option and add
6182 -D__NO_SYSCALLS__ if newlib supplied syscalls are disabled.
6183 * doc/aclocal.m4: Regenerated.
6184 * doc/configure: Ditto.
6185 * libc/*aclocal.m4: Ditto.
6186 * libc/*configure: Ditto.
6187 * libm/*aclocal.m4: Ditto.
6188 * libm/*configure: Ditto.
6189 * libc/sys/arm/Makefile.am: Don't build syscalls.o if new option
6190 is disabled.
6191 * libc/sys/arm/Makefile.in: Regenerated.
6192
6193 2003-02-05 Jonathan Larmour <jifl@eCosCentric.com>
6194
6195 * libc/stdio/vsprintf.c (vsprintf, _vsprintf_r): Set _file fd to
6196 -1 to be sure it cannot later match a valid file fd causing
6197 isatty() to return 1.
6198 * libc/stdio/asprintf.c (asprintf, _asprintf_r): Ditto.
6199 * libc/stdio/sprintf.c (sprintf, _sprintf_r): Ditto.
6200 * libc/stdio/vasprintf.c (vasprintf, _vasprintf_r): Ditto.
6201
6202 2003-02-03 Jeff Johnston <jjohnstn@redhat.com>
6203
6204 * libc/stdlib/ldtoa.c (_ldtoa_r): Fix code to allocate the format
6205 buffer based on the precision, after we have processed the input value
6206 in a local buffer and know its relative magnitude.
6207
6208 2003-01-31 Michael Snyder <msnyder@redhat.com>
6209
6210 * libc/sys/h8300hms/_exit.c (_exit, __exit): Slip a magic cookie
6211 into registers r1 and r2, so that the simulator can distinguish
6212 this trap from a breakpoint trap. Copied from libgloss.
6213
6214 2003-01-31 Michael Snyder <msnyder@redhat.com>
6215
6216 * libc/sys/h8300hms/crt0.S (_start): Change local label
6217 from .loop to .Loop, so that ld and gdb will ignore it.
6218
6219 2003-01-29 Jason Tishler <jason@tishler.net>
6220
6221 * libc/include/time.h: Declare nanosleep() under Cygwin.
6222
6223 2003-01-24 Nick Clifton <nickc@redhat.com>
6224
6225 * Add sh2e support:
6226
6227 2002-04-02 Alexandre Oliva <aoliva@redhat.com>
6228
6229 * libc/machine/sh/asm.h: Added __SH2E__ next to __SH3E__.
6230 * libc/machine/sh/setjmp.S: Likewise.
6231 * libc/include/machine/ieeefp.h: Likewise.
6232
6233 2003-01-24 Corinna Vinschen <corinna@vinschen.de>
6234
6235 * libc/include/sys/unistd.h: Add setregid and setreuid declarations
6236 for Cygwin.
6237
6238 2003-01-21 Anita Kulkarni <anitak@kpit.com>
6239
6240 * libc/time/difftime.c : Typecast the result to double.
6241
6242 2003-01-20 Christopher Faylor <cgf@redhat.com>
6243
6244 * libc/include/sys/unistd.h: Add rresvport declaration for cygwin.
6245
6246 2003-01-18 Nick Clifton <nickc@redhat.com>
6247
6248 * libc/include/machine/ieeefp.h : Define __IEEE_BIG_ENDIAN,
6249 __SMALL_BITFIELDS and _DOUBLE_IS_32BITS for IP2K.
6250
6251 2003-01-16 Joel Sherrill <joel@OARcorp.com>
6252
6253 * libc/sys/rtems/include/limits.h, libc/sys/rtems/sys/param.h,
6254 libc/sys/rtems/sys/syslimits.h: Update to be in sync with what
6255 constants are defined in each file in the shared versions in
6256 libc/include.
6257 * libc/sys/rtems/crt0.c: Define extra symbols on SH and HP-PA to
6258 autoconf can link programs.
6259 * libc/include/machine/types.h: Explicitly specify signed on
6260 intXX_t types to ensure they are signed.
6261
6262 2003-01-14 Christopher Faylor <cgf@redhat.com>
6263
6264 * libc/time/strftime.c (strftime): Add '%h' and '%l, %k' GNU
6265 extensions.
6266
6267 2003-01-08 Richard Sandiford <rsandifo@redhat.com>
6268
6269 * configure.host (mips64vr-elf, mips64vrel-elf): New config.
6270
6271 2003-01-07 Charles Wilson <cwilson@ece.gatech.edu>
6272
6273 * libc/stdio/sprintf.c: fix typo
6274 * libc/stdio/vfprintf.c: fix typo
6275
6276 2003-01-07 Jeff Johnston <jjohnstn@redhat.com>
6277
6278 * configure.host: Support long double I/O for x86-linux.
6279 * libc/stdlib/ldtoa.c (_ldtoa_r): Fix code to allocate a buffer
6280 large enough to hold formatted result.
6281 * libc/machine/powerpc/simdldtoa.c (_simdldtoa_r): Ditto.
6282
6283 2003-01-06 Charles Wilson <cwilson@ece.gatech.edu>
6284
6285 * Makefile.am: Add vasprintf.
6286 * Makefile.in: Regenerated.
6287
6288 2003-01-06 Charles Wilson <cwilson@ece.gatech.edu>
6289
6290 * asprintf.c (_asprintf_r): insure both declarations
6291 are the same.
6292
6293 2002-12-28 Christopher Faylor <cgf@redhat.com>
6294
6295 * libc/include/sys/unistd.h: Under cygwin, just include getopt.h rather
6296 than defining getopt directly.
6297
6298 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
6299
6300 * NEWS: Update with 1.11.0 info.
6301 * README: Ditto.
6302 * acinclude.m4: Change version number to 1.11.0.
6303 * aclocal.m4: Regenerated.
6304 * configure: Ditto.
6305 * doc/aclocal.m4: Ditto.
6306 * doc/configure: Ditto.
6307 * libc/*/aclocal.m4: Ditto.
6308 * libc/*/configure: Ditto.
6309 * libc/libc.texinfo: Ditto.
6310 * libm/*/aclocal.m4: Ditto.
6311 * libm/*/configure: Ditto.
6312 * libm/libm.texinfo: Ditto.
6313 * libc/sys/linux/shared.ld: Add VERS_1.11.
6314
6315 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
6316
6317 * libc/machine/i386/f_atan2.S: Change copyright from Cygnus
6318 Solutions to Red Hat Inc.
6319 * libc/machine/i386/f_atan2f.S: Ditto.
6320 * libc/machine/i386/f_exp.c: Ditto.
6321 * libc/machine/i386/f_expf.c: Ditto.
6322 * libc/machine/i386/f_frexp.S: Ditto.
6323 * libc/machine/i386/f_frexpf.S: Ditto.
6324 * libc/machine/i386/f_ldexp.S: Ditto.
6325 * libc/machine/i386/f_ldexpf.S: Ditto.
6326 * libc/machine/i386/f_log.S: Ditto.
6327 * libc/machine/i386/f_log10.S: Ditto.
6328 * libc/machine/i386/f_log10f.S: Ditto.
6329 * libc/machine/i386/f_logf.S: Ditto.
6330 * libc/machine/i386/f_pow.c: Ditto.
6331 * libc/machine/i386/f_powf.c: Ditto.
6332 * libc/machine/i386/f_tan.S: Ditto.
6333 * libc/machine/i386/f_tanf.S: Ditto.
6334 * libc/machine/i386/memchr.S: Ditto.
6335 * libc/machine/i386/memcmp.S: Ditto.
6336 * libc/machine/i386/memcpy.S: Ditto.
6337 * libc/machine/i386/memmove.S: Ditto.
6338 * libc/machine/i386/memset.S: Ditto.
6339 * libc/machine/i386/strchr.S: Ditto.
6340 * libc/machine/i386/strlen.S: Ditto.
6341 * libm/machine/i386/f_atan2.S: Ditto.
6342 * libm/machine/i386/f_atan2f.S: Ditto.
6343 * libm/machine/i386/f_exp.c: Ditto.
6344 * libm/machine/i386/f_expf.c: Ditto.
6345 * libm/machine/i386/f_frexp.S: Ditto.
6346 * libm/machine/i386/f_frexpf.S: Ditto.
6347 * libm/machine/i386/f_ldexp.S: Ditto.
6348 * libm/machine/i386/f_ldexpf.S: Ditto.
6349 * libm/machine/i386/f_log.S: Ditto.
6350 * libm/machine/i386/f_log10.S: Ditto.
6351 * libm/machine/i386/f_log10f.S: Ditto.
6352 * libm/machine/i386/f_logf.S: Ditto.
6353 * libm/machine/i386/f_pow.c: Ditto.
6354 * libm/machine/i386/f_powf.c: Ditto.
6355 * libm/machine/i386/f_tan.S: Ditto.
6356 * libm/machine/i386/f_tanf.S: Ditto.
6357
6358 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
6359
6360 * libc/stdlib/environ.c: Update license to Red Hat.
6361 * libc/machine/hppa/setjmp.S: Ditto.
6362 * libm/test/Makefile.in: Ditto.
6363
6364 2002-12-19 Jeff Johnston <jjohnstn@redhat.com>
6365
6366 * configure.host: Remove references to go32.
6367 * libc/sys/go32/*: Removed.
6368
6369 2002-12-16 Kazu Hirata <kazu@cs.umass.edu>
6370
6371 * libc/include/sys/config.h: Change setting of INT_MAX
6372 and UINT_MAX, to use __INT_MAX__ for __H8300__, __H8300H__,
6373 __H8300S__. Also consolidate flag settings for these
6374 platforms.
6375
6376 2002-12-10 Joel Sherrill <joel@OARcorp.com>
6377
6378 * libc/include/machine/setjmp.h: Make sure _JBLEN is defined
6379 for i386-rtems targets.
6380
6381 2002-12-06 Jeff Johnston <jjohnstn@redhat.com>
6382
6383 * libc/include/stdlib.h (strtof): New prototype (from C99).
6384 (strtodf): Changed from prototype to macro which redefines
6385 to strtof.
6386 * libc/stdlib/atof.c: Change documentation to refer to strtof
6387 instead of strtodf.
6388 * libc/stdlib/atoff.c (atoff): Change to call strtof instead of
6389 strtodf.
6390 * libc/stdlib/strtod.c (strtodf): Renamed to strtof.
6391 (strtof): New function.
6392 * libm/test/convert.c (test_strtodf): Renamed to test_strtof which
6393 calls strtof.
6394
6395 2002-11-27 Christopher Faylor <cgf@redhat.com>
6396
6397 * libc/string/memset.c (memset): Fix comment.
6398
6399 2002-11-26 Christopher Faylor <cgf@redhat.com>
6400
6401 * libc/string/memset.c (memset): Move initialization of 'd' earlier in
6402 function.
6403
6404 2002-11-25 Christopher Faylor <cgf@redhat.com>
6405
6406 * libc/string/memset.c (memset): Minor optimization: Use new 'd'
6407 variable, introduced below, everywhere.
6408
6409 2002-11-25 Kazu Hirata <kazu@cs.umass.edu>
6410
6411 * libc/string/memset.c (memset): Make it safe even if
6412 sizeof (int) = 2.
6413
6414 2002-11-22 Joe Buehler <jbuehler@hekimian.com>
6415
6416 * configure.in: Change check for libc/include in ${CC} to
6417 use an intermediate value so as to work with different shells.
6418 * configure: Regenerated.
6419 * Makefile.in: Ditto.
6420
6421 2002-11-22 Vijay L. Khuspe <vijayk1@kpit.com>
6422
6423 * libc/sys/h8300hms/read.c: Add support for normal mode
6424 architecture.
6425
6426 2002-11-20 Ryo Tsuruta <ryo@kitanet.ne.jp>
6427
6428 * libc/machine/h8300/setjmp.S (setjmp, longjmp): Combine common
6429 code for __H8300H__ and __H8300S__. Also return 32-bit return code
6430 when -mint32 is used.
6431
6432 2002-11-18 Nick Clifton <nickc@redhat.com>
6433
6434 * libc/sys/arm/crt0.S: Add NULL to end of argv array.
6435
6436 2002-11-14 Jeff Johnston <jjohnstn@redhat.com>
6437
6438 * testsuite/lib/passfail.exp (newlib_pass_fail): Changed to
6439 only issue one pass/fail message for a compile/link/execute.
6440 * testsuite/newlib.elix/elix.exp: New file.
6441 * testsuite/newlib.elix/tmmap.c: Ditto.
6442
6443 2002-11-06 Christopher Faylor <cgf@redhat.com>
6444
6445 * libc/stdlib/malign.c: Don't compile if MALLOC_PROVIDED.
6446 * libc/stdlib/mlock.c: Ditto.
6447 * libc/stdlib/msize.c: Ditto.
6448 * libc/stdlib/msize.c: Ditto.
6449 * libc/stdlib/mtrim.c: Ditto.
6450 * libc/stdlib/valloc.c: Ditto.
6451
6452 2002-11-12 Jeff Johnston <jjohnstn@redhat.com>
6453
6454 * libc/stdlib/ldtoa.c (e64toe): When checking the exponent
6455 for inf/nan, make sure that the check ignores the sign bit.
6456
6457 2002-11-07 Joel Sherrill <joel@OARcorp.com>
6458
6459 * libc/sys/rtems/machine: New directory.
6460 * libc/sys/rtems/machine/limits.h, libc/sys/rtems/machine/param.h,
6461 libc/sys/rtems/sys/param.h, libc/sys/rtems/sys/syslimits.h,
6462 libc/sys/rtems/sys/utime.h: New files added to make *-rtems newlib
6463 targets more BSD like when installed without requiring files to
6464 be overwritten at install point when RTEMS itself is installed.
6465 * Makefile.am: Pick up system dependent machine .h files such as
6466 might be found on a BSD-ish system.
6467 * Makefile.in: Regenerate.
6468 * libc/include/machine/types.h: When on an RTEMS target, define a
6469 few BSD flavor types.
6470
6471 2002-11-06 Sergey Okhapkin <sos@prospect.com.ru>
6472
6473 * include/utmp.h: Define WTMP_FILE. Define and use UT_IDLEN.
6474
6475 2002-11-06 Kazuhiro Fujieda <fujieda@jaist.ac.jp>
6476
6477 * libc/include/wchar.h: Use _{BEGIN,END}_STD_C instead of extern "C".
6478 * libc/include/wctype.h: Ditto.
6479
6480 2002-11-04 Jeff Johnston <jjohnstn@redhat.com>
6481
6482 * libc/include/wchar.h: Add extern "C" specifier if C++.
6483 * libc/include/wctype.h: Ditto.
6484
6485 2002-10-18 Jeff Johnston <jjohnstn@redhat.com>
6486
6487 * testsuite/newlib.wctype/tiswctype.c: New test case.
6488 * testsuite/newlib.wctype/twctrans.c: Ditto.
6489
6490 2002-10-18 Jeff Johnston <jjohnstn@redhat.com>
6491
6492 * libc/sys/linux/machine/i386/include/endian.h: New file.
6493 * libc/sys/linux/machine/i386/include/param.h: Ditto.
6494
6495 2002-10-18 Jeff Johnston <jjohnstn@redhat.com>
6496
6497 * libm/machine/i386/aclocal.m4: Regenerated.
6498 * libm/machine/i386/configure: Ditto.
6499
6500 2002-10-18 Jeff Johnston <jjohnstn@redhat.com>
6501
6502 * testsuite/include/check.h: New header file to use with
6503 test cases.
6504 * testsuite/lib/newlib.exp: Add testsuite/include directory
6505 to list of header files to use.
6506 * testsuite/newlib.wctype/twctype.c: New test case for iswctype fns.
6507 * testsuite/newlib.wctype/wctype.exp: New file.
6508
6509 2002-10-11 Graham Stott <graham.stott@btinternet.com>
6510 Richard Sandiford <rsandifo@redhat.com>
6511
6512 * libc/include/sys/config.h (SIZE_T_SMALLER_THAN_LONG): Undefine.
6513 * libc/stdlib/mallocr.c (long_sub_size_t): Define in a way that
6514 doesn't require the SIZE_T_SMALLER_THAN_LONG macro.
6515
6516 2002-10-07 Joel Sherrill <joel@OARcorp.com>
6517
6518 * libc/sys/rtems/crt0.c: Add even more symbols so gcc() can link
6519 dummy programs.
6520
6521 2002-10-07 Joel Sherrill <joel@OARcorp.com>
6522
6523 * libc/include/pthread.h: Define PTHREAD_CANCELED.
6524
6525 2002-10-07 Joel Sherrill <joel@OARcorp.com>
6526
6527 * libc/machine/hppa/DEFS.h, libc/machine/hppa/pcc_prefix.s,
6528 libc/machine/hppa/setjmp.S, libc/machine/hppa/DEFS.h: Make this
6529 compile with current GNU tools.
6530
6531 2002-10-07 Jeff Johnston <jjohnstn@redhat.com>
6532
6533 * Makefile.am: Add EXTRA_DIRS to allow future dependencies on
6534 the build library.
6535 * configure.in: Ditto.
6536 * Makefile.in: Regenerated.
6537 * configure: Ditto.
6538 * libc/sys/linux/Makefile.am: Add EXTRA_SUBDIRS and EXTRA_SUBLIBS
6539 for specifying configured libraries/directories.
6540 * libc/sys/linux/configure.in: Ditto.
6541 * libc/sys/linux/Makefile.in: Regenerated.
6542 * libc/sys/linux/configure: Ditto.
6543
6544 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
6545
6546 * libc/include/reent.h: Update documentation at start of file.
6547
6548 2002-09-27 Jim Wilson <wilson@redhat.com>
6549
6550 * libc/sys/sysnecv850/crt0.S (start): Delete v850 code for initializing
6551 the ctbp register.
6552
6553 2002-09-27 Jeff Johnston <jjohnstn@redhat.com>
6554
6555 * libc/ctype/jp2uc.c: Change to use multiple arrays in jp2uc.h.
6556 Also convert to EUCJP before using arrays. For values not in
6557 the conversion arrays, return WEOF.
6558 * libc/ctype/jp2uc.h: Change from one array to a number of
6559 arrays to account for the fact that the originating table
6560 is not contiguous for the input values since some are invalid.
6561
6562 2002-09-24 Jeff Johnston <jjohnstn@redhat.com>
6563
6564 * libc/time/ctime.c: Fix prototype documentation.
6565
6566 2002-09-24 Corinna Vinschen <corinna@vinschen.de>
6567
6568 * libc/include/sys/errno.h: Add EOVERFLOW.
6569
6570 2002-09-20 Jeff Johnston <jjohnstn@redhat.com>
6571
6572 * libc/include/wctype.h: New file.
6573
6574 2002-09-20 Jeff Johnston <jjohnstn@redhat.com>
6575
6576 * libc/ctype/Makefile.am: Add new files.
6577 * libc/ctype/Makefile.in: Regenerated.
6578 * libc/ctype/ctype.tex: Add new iswxxxx, towxxxx, wctype,
6579 and wctrans functions to documentation index.
6580 * libc/ctype/iswalnum.c: New file.
6581 * libc/ctype/iswalpha.c: Ditto.
6582 * libc/ctype/iswblank.c: Ditto.
6583 * libc/ctype/iswcntrl.c: Ditto.
6584 * libc/ctype/iswctype.c: Ditto.
6585 * libc/ctype/iswdigit.c: Ditto.
6586 * libc/ctype/iswgraph.c: Ditto.
6587 * libc/ctype/iswlower.c: Ditto.
6588 * libc/ctype/iswprint.c: Ditto.
6589 * libc/ctype/iswpunct.c: Ditto.
6590 * libc/ctype/iswspace.c: Ditto.
6591 * libc/ctype/iswupper.c: Ditto.
6592 * libc/ctype/iswxdigit.c: Ditto.
6593 * libc/ctype/jp2uc.c: Ditto.
6594 * libc/ctype/jp2uc.h: Ditto.
6595 * libc/ctype/local.h: Ditto.
6596 * libc/ctype/towctrans.c: Ditto.
6597 * libc/ctype/towlower.c: Ditto.
6598 * libc/ctype/towupper.c: Ditto.
6599 * libc/ctype/utf8alpha.h: Ditto.
6600 * libc/ctype/utf8print.h: Ditto.
6601 * libc/ctype/utf8punct.h: Ditto.
6602 * libc/ctype/wctrans.c: Ditto.
6603 * libc/ctype/wctype.c: Ditto.
6604 * libc/locale/locale.c (__lc_ctype): New external array to
6605 replace static lc_ctype array.
6606 * libc/stdlib/mbtowc_r.c: Use __lc_ctype to check current lc_ctype
6607 rather than reentrancy structure's _current_locale field.
6608 * libc/stdlib/wctomb_r.c: Ditto.
6609
6610 2002-09-20 Jeff Johnston <jjohnstn@redhat.com>
6611
6612 * configure.host: Minor comment and formatting changes.
6613 * libc/Makefile.am: Add libc_la_DEPENDENCIES.
6614 * libc/Makefile.in: Regenerated.
6615 * libc/include/sys/config.h: Minor format change.
6616
6617 2002-09-19 Jeff Johnston <jjohnstn@redhat.com>
6618
6619 * libc/syscalls/sysfcntl.c (fcntl): Fix typo in preprocessor
6620 statement comment.
6621
6622 2002-09-19 Jeff Johnston <jjohnstn@redhat.com>
6623
6624 * libc/posix/opendir.c (opendir): Change code to check
6625 for HAVE_FCNTL before calling fcntl.
6626 * libc/search/hash.c (hash_open): Ditto.
6627 * libc/search/hash_page.c (open_tmp): Ditto.
6628 * libc/reent/Makefile.am: Add fcntlr.c.
6629 * libc/reent/Makefile.in: Regenerated.
6630 * libc/reent/fcntlr.c: New file.
6631 * libc/stdio/fdopen.c (_fdopen_r): Change to call _fcntl_r
6632 instead of _fcntl when HAVE_FCNTL flag is set.
6633 * libc/syscalls/sysfcntl.c (fcntl): Check for HAVE_FCNTL flag
6634 to see if _fcntl or _fcntl_r should be called. If flag is not
6635 set, default to ENOSYS stub.
6636
6637 2002-09-16 Jeff Johnston <jjohnstn@redhat.com>
6638
6639 * libc/include/wchar.h (mbstate_t): Change protective flag to
6640 be _MBSTATE_T.
6641 * libc/include/sys/_types.h (_mbstate_t): Remove protective flag.
6642 [__CYGWIN__]: Remove special code that defines mbstate_t and WEOF
6643 for Cygwin.
6644 * libc/sys/linux/sys/_types.h (_mbstate_t): Remove protective flag.
6645
6646 2002-09-11 Jeff Johnston <jjohnstn@redhat.com>
6647
6648 * acinclude.m4 (enable-newlib-mb): Change check to
6649 default newlib_mb variable to empty string rather than "no".
6650 * configure.host: Remove hard-coding of -DMB_CAPABLE for
6651 x86-linux and Cygwin. Add code to check for newlib_mb
6652 being unset in which case set to "yes" for x86-linux and
6653 Cygwin. Change check for newlib_mb being "yes" to allow
6654 for an empty string.
6655 * configure.in (_MB_LEN_MAX): New AC_DEFINE.
6656 * newlib.hin (_MB_LEN_MAX): New define to configure.
6657 * aclocal.m4: Regenerated.
6658 * configure: Ditto.
6659 * libc/include/limits.h: New file.
6660 * libc/sys/linux/include/limits.h: Ditto.
6661 * doc/aclocal.m4 doc/configure libc/aclocal.m4
6662 libc/configure libc/machine/aclocal.m4
6663 libc/machine/configure libc/machine/a29k/aclocal.m4
6664 libc/machine/a29k/configure libc/machine/arm/aclocal.m4
6665 libc/machine/arm/configure libc/machine/d10v/aclocal.m4
6666 libc/machine/d10v/configure libc/machine/d30v/aclocal.m4
6667 libc/machine/d30v/configure libc/machine/fr30/aclocal.m4
6668 libc/machine/fr30/configure libc/machine/frv/aclocal.m4
6669 libc/machine/frv/configure libc/machine/h8300/aclocal.m4
6670 libc/machine/h8300/configure libc/machine/h8500/aclocal.m4
6671 libc/machine/h8500/configure libc/machine/hppa/aclocal.m4
6672 libc/machine/hppa/configure libc/machine/i386/aclocal.m4
6673 libc/machine/i386/configure libc/machine/i960/aclocal.m4
6674 libc/machine/i960/configure libc/machine/m32r/aclocal.m4
6675 libc/machine/m32r/configure libc/machine/m68hc11/aclocal.m4
6676 libc/machine/m68hc11/configure libc/machine/m68k/aclocal.m4
6677 libc/machine/m68k/configure libc/machine/m88k/aclocal.m4
6678 libc/machine/m88k/configure libc/machine/mips/aclocal.m4
6679 libc/machine/mips/configure libc/machine/mn10200/aclocal.m4
6680 libc/machine/mn10200/configure libc/machine/mn10300/aclocal.m4
6681 libc/machine/mn10300/configure libc/machine/necv70/aclocal.m4
6682 libc/machine/necv70/configure libc/machine/powerpc/aclocal.m4
6683 libc/machine/powerpc/configure libc/machine/sh/aclocal.m4
6684 libc/machine/sh/configure libc/machine/sparc/aclocal.m4
6685 libc/machine/sparc/configure libc/machine/tic80/aclocal.m4
6686 libc/machine/tic80/configure libc/machine/v850/aclocal.m4
6687 libc/machine/v850/configure libc/machine/w65/aclocal.m4
6688 libc/machine/w65/configure libc/machine/xscale/aclocal.m4
6689 libc/machine/xscale/configure
6690 libc/machine/xstormy16/aclocal.m4
6691 libc/machine/xstormy16/configure libc/machine/z8k/aclocal.m4
6692 libc/machine/z8k/configure libc/sys/aclocal.m4
6693 libc/sys/configure libc/sys/a29khif/aclocal.m4
6694 libc/sys/a29khif/configure libc/sys/arc/aclocal.m4
6695 libc/sys/arc/configure libc/sys/arm/aclocal.m4
6696 libc/sys/arm/configure libc/sys/cygwin/aclocal.m4
6697 libc/sys/cygwin/configure libc/sys/d10v/aclocal.m4
6698 libc/sys/d10v/configure libc/sys/decstation/aclocal.m4
6699 libc/sys/decstation/configure libc/sys/go32/aclocal.m4
6700 libc/sys/go32/configure libc/sys/h8300hms/aclocal.m4
6701 libc/sys/h8300hms/configure libc/sys/h8500hms/aclocal.m4
6702 libc/sys/h8500hms/configure libc/sys/idt/aclocal.m4
6703 libc/sys/idt/configure libc/sys/linux/aclocal.m4
6704 libc/sys/linux/configure
6705 libc/sys/linux/machine/aclocal.m4
6706 libc/sys/linux/machine/configure
6707 libc/sys/linux/machine/i386/aclocal.m4
6708 libc/sys/linux/machine/i386/configure
6709 libc/sys/m88kbug/aclocal.m4 libc/sys/m88kbug/configure
6710 libc/sys/mmixware/aclocal.m4 libc/sys/mmixware/configure
6711 libc/sys/netware/aclocal.m4 libc/sys/netware/configure
6712 libc/sys/rtems/aclocal.m4 libc/sys/rtems/configure
6713 libc/sys/sh/aclocal.m4 libc/sys/sh/configure
6714 libc/sys/sparc64/aclocal.m4 libc/sys/sparc64/configure
6715 libc/sys/sun4/aclocal.m4 libc/sys/sun4/configure
6716 libc/sys/sysmec/aclocal.m4 libc/sys/sysmec/configure
6717 libc/sys/sysnec810/aclocal.m4 libc/sys/sysnec810/configure
6718 libc/sys/sysnecv850/aclocal.m4 libc/sys/sysnecv850/configure
6719 libc/sys/sysvi386/aclocal.m4 libc/sys/sysvi386/configure
6720 libc/sys/sysvnecv70/aclocal.m4 libc/sys/sysvnecv70/configure
6721 libc/sys/tic80/aclocal.m4 libc/sys/tic80/configure
6722 libc/sys/w65/aclocal.m4 libc/sys/w65/configure
6723 libc/sys/z8ksim/aclocal.m4 libc/sys/z8ksim/configure
6724 libm/aclocal.m4 libm/configure: Regenerated.
6725
6726 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
6727
6728 * libc/sys/linux/machine/i386/crt0.c (_start): Remove
6729 code that clears the .bss section.
6730
6731 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
6732
6733 * libc/include/sys/_types.h (_mbstate_t): Changed to use
6734 unsigned char internally.
6735 * libc/sys/linux/sys/_types.h: Ditto.
6736 * libc/include/sys/reent.h
6737 * libc/stdlib/mblen.c (mblen): Use function-specific state
6738 value from default reentrancy structure.
6739 * libc/stdlib/mblen_r.c (_mblen_r): If return code from
6740 _mbtowc_r is less than 0, reset state __count value and
6741 return -1.
6742 * libc/stdlib/mbrlen.c (mbrlen): If the input state pointer
6743 is NULL, use the function-specific pointer provided in the
6744 default reentrancy structure.
6745 * libc/stdlib/mbrtowc.c: Add reentrant form of function.
6746 If input state pointer is NULL, use function-specific area
6747 provided in reentrancy structure.
6748 * libc/stdlib/mbsrtowcs.c: Ditto.
6749 * libc/stdlib/wcrtomb.c: Ditto.
6750 * libc/stdlib/wcsrtombs.c: Ditto.
6751 * libc/stdlib/mbstowcs.c: Reformat.
6752 * libc/stdlib/wcstombs.c: Ditto.
6753 * libc/stdlib/mbstowcs_r.c (_mbstowcs_r): If an error occurs,
6754 reset the state's __count value and return -1.
6755 * libc/stdlib/mbtowc.c: Ditto.
6756 * libc/stdlib/mbtowc_r.c (_mbtowc_r): Add restartable functionality.
6757 If number of bytes is used up before completing a valid multibyte
6758 character, return -2 and save the state.
6759 * libc/stdlib/wctomb_r.c (_wctomb_r): Define __state as __count
6760 and change some __count references to __state for clarity.
6761
6762 2002-09-06 Jeff Johnston <jjohnstn@redhat.com>
6763
6764 * libc/include/sys/config.h (MB_LEN_MAX): Removed as this
6765 is defined by <limits.h>.
6766
6767 2002-09-05 Kazuhiro Fujieda <fujieda@jaist.ac.jp>
6768
6769 * libc/include/wchar.h (WCHAR_MAX): Only define if not already
6770 defined.
6771
6772 2002-09-04 Kazuhiro Fujieda <fujieda@jaist.ac.jp>
6773
6774 * libc/include/sys/config.h: Define accordingly __WCHAR_MAX__.
6775 * libc/include/wchar.h: Define WCHAR_MIN as 0 and WCHAR_MAX as
6776 __WCHAR_MAX__ or 0x7fffffffu.
6777 * libc/string/wcscmp.c: Delete wrong and unnecessary type cast.
6778 * libc/string/wcsncmp.c: Ditto.
6779
6780 2002-09-03 Jeff Johnston <jjohnstn@redhat.com>
6781
6782 * libc/string/wcschr.c: Add include of <stddef.h>.
6783 * libc/string/wcspbrk.c: Ditto.
6784 * libc/string/wcsrchr.c: Ditto.
6785 * libc/string/wcsstr.c: Ditto.
6786
6787 2002-09-03 Jeff Johnston <jjohnstn@redhat.com>
6788
6789 * libc/include/sys/_types.h (_flock_t): Added.
6790 * libc/include/sys/lock.h (__lock_try_acquire): New interface.
6791 (__lock_try_acquire_recursive): Ditto.
6792 * libc/include/sys/reent.h (__sFILE, __sFILE64): Add new
6793 _lock field.
6794 * libc/stdio/findfp.c (std)[!__SINGLE_THREAD__]: Initialize _lock
6795 field.
6796 * libc/stdio/fopen.c (_fopen_r)[!__SINGLE_THREAD__]: Ditto.
6797 * libc/stdio64/fopen64.c (_fopen64_r)[!__SINGLE_THREAD__]: Ditto.
6798 * libc/sys/linux/include/time.h (struct timespec): Moved from
6799 <sys/types.h> and added check for __need_timespec flag so type
6800 can be defined by itself.
6801 * libc/sys/linux/sys/_types.h (_flock_t): New type.
6802 * libc/sys/linux/sys/types.h (struct timespec): Moved to
6803 <time.h>.
6804
6805 2002-08-29 Thomas Fitzsimmons <fitzsim@redhat.com>
6806
6807 * libc/sys/linux/argp: New directory.
6808 * libc/sys/linux/getopt.c: New file.
6809 * libc/sys/linux/getopt1.c: New file.
6810 * libc/sys/linux/getoptlong.c: Remove file.
6811 * libc/sys/linux/include/argp.h: New file.
6812 * libc/sys/linux/Makefile.am: Define argp_dir and ARGP_LIB,
6813 based on ELIX level.
6814 (SUBDIRS): Add argp_dir.
6815 (SUBLIBS): Add ARGP_LIB.
6816 (ELIX_2_OBJS): Add getopt.$(oext), getopt1.$(oext), remove
6817 getopt_long.$(oext).
6818 * libc/sys/linux/configure.in (AC_OUTPUT): Add argp/Makefile.
6819
6820 2002-08-29 Jeff Johnston <jjohnstn@redhat.com>
6821
6822 * libc/libc.texinfo: Add node reference to wide-character strings.
6823 * libc/string/wcstrings.tex: New file.
6824 * libc/string/strtok_r.c: Remove outdated advertising clause.
6825 * libc/string/Makefile.am (doc): Add wide-character string
6826 chapter to documentation.
6827 * libc/string/Makefile.in: Regenerated.
6828
6829 2002-08-29 Kazuhiro Fujieda <fujieda@jaist.ac.jp>
6830
6831 * libc/include/wchar.h: Define NULL. Define WEOF more general
6832 way. Declare functions in newlib manner.
6833 * libc/stdlib/Makefile.am: Delete wmem*.c
6834 * libc/stdlib/Makefile.in: Regenerated.
6835 * libc/stdlib/wmemchr.c: Delete.
6836 * libc/stdlib/wmemcmp.c: Ditto.
6837 * libc/stdlib/wmemcpy.c: Ditto.
6838 * libc/stdlib/wmemmove.c: Ditto.
6839 * libc/stdlib/wmemset.c: Ditto.
6840 * libc/string/Makefile.am: Add wmem*.c and wcs*.c.
6841 * libc/string/Makefile.in: Regenerated.
6842 * libc/string/wcscat.c: New file derived from the NetBSD C Library.
6843 * libc/string/wcschr.c: Ditto.
6844 * libc/string/wcscmp.c: Ditto.
6845 * libc/string/wcscpy.c: Ditto.
6846 * libc/string/wcscspn.c: Ditto.
6847 * libc/string/wcslcat.c: Ditto.
6848 * libc/string/wcslcpy.c: Ditto.
6849 * libc/string/wcslen.c: Ditto.
6850 * libc/string/wcsncat.c: Ditto.
6851 * libc/string/wcsncmp.c: Ditto.
6852 * libc/string/wcsncpy.c: Ditto.
6853 * libc/string/wcspbrk.c: Ditto.
6854 * libc/string/wcsrchr.c: Ditto.
6855 * libc/string/wcsspn.c: Ditto.
6856 * libc/string/wcsstr.c: Ditto.
6857 * libc/string/wmemchr.c: Ditto.
6858 * libc/string/wmemcmp.c: Ditto.
6859 * libc/string/wmemcpy.c: Ditto.
6860 * libc/string/wmemmove.c: Ditto.
6861 * libc/string/wmemset.c: Ditto.
6862
6863 2002-08-29 Jeff Johnston <jjohnstn@redhat.com>
6864
6865 * libc/locale/locale.c (_setlocale_r)[MB_CAPABLE]: Fix so
6866 default locale "" is accepted for LC_CTYPE or LC_MESSAGES
6867 and is treated as if "C" was specified.
6868
6869 2002-08-28 Jeff Johnston <jjohnstn@redhat.com>
6870
6871 * Makefile.am (install-data-local): Move install of build
6872 newlib.h after installing headers in libc/include so as to
6873 overwrite default newlib.h.
6874 * Makefile.in: Regenerated.
6875
6876 2002-08-28 Jeff Johnston <jjohnstn@redhat.com>
6877
6878 * libc/include/newlib.h: New file for tools that use newlib
6879 headers but don't build newlib first (e.g. gcc).
6880
6881 2002-08-28 Jeff Johnston <jjohnstn@redhat.com>
6882
6883 * libc/stdlib/wmemchr.c: Explicitly include <_ansi.h>.
6884 * libc/stdlib/wmemcmp.c: Ditto.
6885 * libc/stdlib/wmemcpy.c: Ditto.
6886 * libc/stdlib/wmemmove.c: Ditto.
6887 * libc/stdlib/wmemset.c: Ditto.
6888
6889 2002-08-27 Egor Duda <deo@logos-m.ru>
6890
6891 * libc/stdlib/wmemchr.c: New file.
6892 * libc/stdlib/wmemcmp.c: Ditto.
6893 * libc/stdlib/wmemcpy.c: Ditto.
6894 * libc/stdlib/wmemmove.c: Ditto.
6895 * libc/stdlib/wmemset.c: Ditto.
6896 * libc/stdlib/Makefile.am (GENERAL_SOURCES): Add new files.
6897 * configure.host: Default -DMB_CAPABLE for cygwin.
6898 * libc/include/wchar.h: Declare wmemchr(), wmemcmp(), wmemcpy(),
6899 wmemmove() and wmemset(). Add include of <_ansi.h>.
6900 * libc/stdlib/Makefile.in: Regenerate.
6901
6902 2002-08-27 Jeff Johnston <jjohnstn@redhat.com>
6903
6904 * configure.host: Remove _ELIX_LEVEL flag setting.
6905 * Makefile.am(stmp-targ-include): Copy newlib.h to targ-include.
6906 (install-data-local): Install newlib.h.
6907 * Makefile.in: Regenerated.
6908 * aclocal.m4: Ditto.
6909 * configure: Ditto.
6910 * configure.in: Add AM_CONFIG_HEADER to generate newlib.h based on
6911 newlib.hin. Add AC_DEFINE_UNQUOTED entries for _ELIX_LEVEL
6912 and _NEWLIB_VERSION to fill in newlib.h header file entries.
6913 In AC_OUTPUT statement, unset ac_file so multilib support does
6914 not use last ac_file temporary used in newlib.h configuration.
6915 * libc/include/_ansi.h: Include <newlib.h>.
6916 * newlib.hin: New template file for newlib.h.
6917 * stamp-h.in: New file.
6918
6919 2002-08-26 Wu Yongwei <adah@netstd.com>
6920
6921 * time.h (timezonevar): Change "#if" to "#ifdef".
6922
6923 2002-08-26 Jeff Johnston <jjohnstn@redhat.com>
6924
6925 * Makefile.am(LIBC_OBJECTLISTS): Add STDIO64_OBJECTLIST.
6926 * Makefile.in: Regenerated.
6927 * acinclude.m4: Add support for --enable-newlib-elix-level option.
6928 * aclocal.m4: Regenerated.
6929 * configure: Ditto.
6930 * configure.host: Add code to define _ELIX_LEVEL if
6931 --enable-newlib-elix-level option is used.
6932 * configure.in:
6933 * libc/aclocal.m4: Regenerated.
6934 * libc/configure: Ditto.
6935 * libc/argz/Makefile.am: Add EL/IX level checking.
6936 * libc/argz/Makefile.in: Regenerated.
6937 * libc/argz/dummy.c: New file.
6938 * libc/ctype/Makefile.am: Add EL/IX level checking.
6939 * libc/ctype/Makefile.in: Regenerated.
6940 * libc/locale/Makefile.am: Add EL/IX level checking.
6941 * libc/locale/Makefile.in: Regenerated.
6942 * libc/posix/Makefile.am: Add EL/IX level checking.
6943 * libc/posix/Makefile.in: Regenerated.
6944 * libc/posix/telldir.c: Add EL/IX level checking.
6945 * libc/reent/Makefile.am: Ditto.
6946 * libc/reent/fstat64r.c: Ditto.
6947 * libc/reent/lseek64r.c: Ditto.
6948 * libc/reent/open64r.c: Ditto.
6949 * libc/reent/Makefile.in: Regenerated.
6950 * libc/search/Makefile.am: Add EL/IX level checking.
6951 * libc/search/Makefile.in: Regenerated.
6952 * libc/stdio/Makefile.am: Add EL/IX level checking.
6953 * libc/stdio/Makefile.in: Regenerated.
6954 * libc/stdio64/Makefile.am: Add EL/IX level checking.
6955 * libc/stdio64/Makefile.in: Regenerated.
6956 * libc/stdio64/dummy.c: New file.
6957 * libc/stdio64/fgetpos64.c: Fix so _LARGE64_FILES macro is checked
6958 after first include.
6959 * libc/stdio64/fopen64.c: Ditto.
6960 * libc/stdio64/freopen64.c: Ditto.
6961 * libc/stdio64/fseeko64.c: Ditto.
6962 * libc/stdio64/fsetpos64.c: Ditto.
6963 * libc/stdio64/ftello64.c: Ditto.
6964 * libc/stdio64/tmpfile64.c: Ditto.
6965 * libc/stdlib/Makefile.am: Add EL/IX level checking.
6966 * libc/stdlib/Makefile.in: Regenerated.
6967 * libc/stdlib/mstats.c: Add EL/IX level checking.
6968 * libc/string/Makefile.am: Ditto.
6969 * libc/string/Makefile.in: Regenerated.
6970 * libc/sys/linux/Makefile.am: Add EL/IX level checking.
6971 * libc/sys/linux/Makefile.in: Regenerated.
6972 * libc/sys/linux/aclocal.m4: Ditto.
6973 * libc/sys/linux/configure: Ditto.
6974 * libc/sys/linux/aio.c: Add EL/IX level checking.
6975 * libc/sys/linux/ftok.c: Ditto.
6976 * libc/sys/linux/getdate.c: Ditto.
6977 * libc/sys/linux/ids.c: Ditto.
6978 * libc/sys/linux/inode.c: Ditto.
6979 * libc/sys/linux/io.c: Ditto.
6980 * libc/sys/linux/process.c: Ditto.
6981 * libc/sys/linux/resource.c: Ditto.
6982 * libc/sys/linux/sched.c: Ditto.
6983 * libc/sys/linux/sig.c: Ditto.
6984 * libc/sys/linux/termios.c: Ditto.
6985 * libc/sys/linux/wait.c: Ditto plus add __waitpid and
6986 __libc___waitpid weak aliases.
6987 * libc/sys/linux/machine/i386/syscall.h: Add new _base macros
6988 that generate the code for a syscall, but do not create a
6989 weak alias.
6990 * libc/syscalls/Makefile.am: Add EL/IX level checking.
6991 * libc/syscalls/Makefile.in: Regenerated.
6992 * libc/time/tzset_r.c: Change to replace strdup with equivalent
6993 functionality.
6994 * libc/unix/Makefile.am: Add EL/IX level checking.
6995 * libc/unix/Makefile.in: Regenerated.
6996
6997 2002-08-26 Christopher Faylor <cgf@redhat.com>
6998
6999 * libc/include/malloc.h: On cygwin, define malloc _r functions as
7000 wrapper macros to standard malloc functions.
7001 * libc/include/stdlib.h: Ditto.
7002 * configure.host: Always define MALLOC_PROVIDED on cygwin.
7003
7004 2002-08-22 Thomas Fitzsimmons <fitzsim@redhat.com>
7005
7006 * libc/include/langinfo.h: New file.
7007 * libc/include/wchar.h: Likewise.
7008 * libc/include/sys/syslimits.h: Likewise.
7009 * libc/locale/fix_grouping.c: Likewise.
7010 * libc/locale/ldpart.c: Likewise.
7011 * libc/locale/ldpart.h: Likewise.
7012 * libc/locale/lmessages.c: Likewise.
7013 * libc/locale/lmessages.h: Likewise.
7014 * libc/locale/lmonetary.c: Likewise.
7015 * libc/locale/lmonetary.h: Likewise.
7016 * libc/locale/lnumeric.c: Likewise.
7017 * libc/locale/lnumeric.h: Likewise.
7018 * libc/locale/nl_langinfo.3: Likewise.
7019 * libc/locale/nl_langinfo.c: Likewise.
7020 * libc/locale/timelocal.c: Likewise.
7021 * libc/locale/timelocal.h: Likewise.
7022 * libc/stdlib/btowc.c: Likewise.
7023 * libc/stdlib/mbrlen.c: Likewise.
7024 * libc/stdlib/mbrtowc.c: Likewise.
7025 * libc/stdlib/mbsinit.c: Likewise.
7026 * libc/stdlib/mbsrtowcs.c: Likewise.
7027 * libc/stdlib/wcrtomb.c: Likewise.
7028 * libc/stdlib/wcsrtombs.c: Likewise.
7029 * libc/stdlib/wctob.c: Likewise.
7030 * libc/sys/linux/prof-freq.c: Likewise.
7031 * libc/sys/linux/profile.c: Likewise.
7032 * libc/sys/linux/machine/i386/dl-procinfo.c: Likewise.
7033 * libc/sys/linux/machine/i386/dl-procinfo.h: Likewise.
7034 * libc/include/stdlib.h: Change re-entrant functions to take
7035 mbstate_t pointers.
7036 * libc/include/sys/_types.h: Define _mbstate_t.
7037 * libc/include/sys/config.h (MB_LEN_MAX): New macro.
7038 * libc/include/sys/errno.h (EILSEQ): New error code.
7039 * libc/include/sys/reent.h: Include wchar.h. Change reentrant
7040 structure to use mbstate_t.
7041 * libc/locale/Makefile.am (LIB_SOURCES): Add new files.
7042 * libc/machine/powerpc/vfprintf.c: Use mbstate_t.
7043 * libc/machine/powerpc/vfscanf.c: Likewise.
7044 * libc/stdio/getdelim.c: Reallocate buffer only when necessary.
7045 * libc/stdio/vfprintf.c: Likewise.
7046 * libc/stdio/vfscanf.c: Likewise.
7047 * libc/stdlib/Makefile.am (LIB_SOURCES): Add new files.
7048 * libc/stdlib/mblen.c: Use mbstate_t.
7049 * libc/stdlib/mblen_r.c: Likewise.
7050 * libc/stdlib/mbstowcs.c: Likewise.
7051 * libc/stdlib/mbstowcs_r.c: Likewise.
7052 * libc/stdlib/mbtowc.c: Likewise.
7053 * libc/stdlib/mbtowc_r.c: Likewise.
7054 * libc/stdlib/wcstombs.c: Likewise.
7055 * libc/stdlib/wcstombs_r.c: Likewise.
7056 * libc/stdlib/wctomb_r.c: Likewise.
7057 * libc/sys/linux/Makefile.am (LIB_SOURCES): Add prof-freq.c and
7058 profile.c.
7059 * libc/sys/linux/machine/i386/Makefile.am (LIB_SOURCES): Add
7060 dl-procinfo.c.
7061 * libc/sys/linux/sys/errno.h (EILSEQ): New error code.
7062 * libc/sys/linux/sys/types.h (off_t): Define type.
7063 * testsuite/newlib.locale/UTF-8.c: Change locale name from UTF-8
7064 to C-UTF-8.
7065 * testsuite/newlib.locale/UTF-8.exp: Likewise.
7066
7067 2002-08-20 Casper S. Hornstrup <chorns@users.sourceforge.net>
7068
7069 * libc/stdlib/mallocr.c: #include windows.h on Win32.
7070 (AlignPage): Continue macro on next line.
7071
7072 2002-08-19 Jeff Johnston <jjohnstn@redhat.com>
7073
7074 * libc/sys/linux/include/pthread.h: New file.
7075
7076 2002-08-19 Jeff Johnston <jjohnstn@redhat.com>
7077
7078 * libc/include/sys/types.h: Support __need_inttypes macro
7079 that only sets the __intxx and __uintxx types.
7080 * libc/machine/powerpc/Makefile.am: Add stdlib to include directories
7081 to get mprec.h.
7082 * libc/machine/powerpc/Makefile.in: Regenerated.
7083 * libc/machine/powerpc/vfprintf.c: Fix state variable type.
7084 * libc/machine/powerpc/vfscanf.c: Fix state variable type. Remove
7085 redundant fixed-point conversion prototypes.
7086 * libc/machine/powerpc/machine/stdlib.h[__SPE__]: Include <sys/types.h>
7087 after setting __need_inttypes.
7088
7089 2002-08-18 Christopher Faylor <cgf@redhat.com>
7090
7091 * libc/include/sys/unistd.h: Add getsid declaration for cygwin.
7092
7093 2002-08-17 Jeff Johnston <jjohnstn@redhat.com>
7094
7095 * libc/include/sys/config.h[__PPC__][__SPE__]: Set
7096 _LONG_DOUBLE to double.
7097
7098 2002-08-17 Jeff Johnston <jjohnstn@redhat.com>
7099
7100 * configure.host: Add powerpc*-*-eabispe* configuration.
7101 * libc/machine/powerpc/atosfix16.c: New fixed-point conversion file.
7102 * libc/machine/powerpc/atosfix32.c: Ditto.
7103 * libc/machine/powerpc/atosfix64.c: Ditto.
7104 * libc/machine/powerpc/atoufix16.c: Ditto.
7105 * libc/machine/powerpc/atoufix32.c: Ditto.
7106 * libc/machine/powerpc/atoufix64.c: Ditto.
7107 * libc/machine/powerpc/fix64.h: Ditto.
7108 * libc/machine/powerpc/simdldtoa.c: Ditto.
7109 * libc/machine/powerpc/strtosfix16.c: Ditto.
7110 * libc/machine/powerpc/strtosfix32.c: Ditto.
7111 * libc/machine/powerpc/strtosfix64.c: Ditto.
7112 * libc/machine/powerpc/strtoufix16.c: Ditto.
7113 * libc/machine/powerpc/strtoufix32.c: Ditto.
7114 * libc/machine/powerpc/strtoufix64.c: Ditto.
7115 * libc/machine/powerpc/ufix64toa.c: Ditto.
7116 * libc/machine/powerpc/configure.in: Add check for
7117 powerpc*-eabispe and add fixed-point conversion functions.
7118 * libc/machine/powerpc/configure: Regenerated.
7119 * libc/machine/powerpc/vfprintf.c[__SPE__]: Add support for
7120 %r and %R format specifiers which handle fixed-point data.
7121 * libc/machine/powerpc/vfscanf.c[__SPE__]: Ditto.
7122 * libc/machine/powerpc/machine/stdlib.h[__SPE__]: Add fixed-point
7123 function prototypes.
7124
7125 2002-08-17 Jeff Johnston <jjohnstn@redhat.com>
7126
7127 * Makefile.am: Move cmath stuff into libc/sys/linux.
7128 * Makefile.in: Regenerated.
7129 * configure.host: Default -DMB_CAPABLE for x86-linux.
7130 * libc/include/reent.h: Define _sbrk to take signed int argument.
7131 * libc/include/sys/unistd.h: Ditto for _sbrk_r and sbrk.
7132 * libc/locale/locale.c[MB_CAPABLE]: Add LC_MESSAGES support and
7133 make locale name checking more efficient. Also allow "C-ISO-8859-1"
7134 locale for LC_CTYPE and LC_MESSAGES.
7135 * libc/reent/sbrkr.c: Change prototype to take ptrdiff_t.
7136 * libc/sys/linux/brk.c: Change sbrk prototype.
7137 * libc/sys/linux/include/time.h: Remove Cygwin stuff and
7138 include <sys/features.h>.
7139 (CLOCK_THREAD_CPUTIME): Renamed to CLOCK_THREAD_CPUTIME_ID.
7140 (CLOCK_PROCESS_CPUTIME): Renamed to CLOCK_PROCESS_CPUTIME_ID.
7141 * libc/sys/linux/sys/cdefs.h: Replace with glibc sys/cdefs.h
7142 with a few local additions.
7143 * libc/sys/linux/sys/features.h: New file.
7144 * libc/sys/linux/sys/unistd.h: Change _sbrk_r and sbrk prototypes
7145 to take signed argument.
7146 * libc/syscalls/syssbrk.c: Change sbrk, _sbrk_r, and _sbrk
7147 prototypes to take signed size argument.
7148
7149 2002-08-16 Thomas Fitzsimmons <fitzsim@redhat.com>
7150
7151 * libc/sys/linux/cmath: New directory.
7152 * libc/sys/linux/include/cmathcalls.h: New file.
7153 * libc/sys/linux/include/complex.h: New file.
7154 * libc/sys/linux/machine/i386/huge_val.h: New file
7155 * libm/math/w_sincos.c: New file
7156 * libm/math/wf_sincos.c: New file
7157 * libm/mathfp/s_sincos.c: New file
7158 * libm/mathfp/sf_sincos.c: New file
7159 * Makefile.am (LIBC_OBJECTLISTS): Add cmath/objectlist.awk.in.
7160 * libc/include/math.h: Add sincos and sincosf declarations.
7161 * libc/sys/linux/Makefile.am (SUBDIRS): Add cmath.
7162 (SUBLIBS): Likewise.
7163 * libc/sys/linux/configure.in (AC_OUTPUT): Add cmath.
7164 * libm/math/Makefile.am (src): Add w_sincos.c.
7165 (fsrc): Add wf_sincos.c.
7166 * libm/mathfp/Makefile.am (src): Add s_sincos.c
7167 (fsrc): Add sf_sincos.c.
7168
7169 2002-08-12 Jeff Johnston <jjohnstn@redhat.com>
7170
7171 * libc/sys/linux/machine/i386/crt0.c (__bss_start,_end):
7172 Declare as extern chars and use the address operator to
7173 properly use values set in linker script.
7174
7175 2002-08-09 Jason Tishler <jason@tishler.net>
7176
7177 * libc/stdlib/mallocr.c: Include <limits.h>.
7178 (request2size): Change macro to do
7179 unsigned long comparisons and avoid signed overflow.
7180 (mALLOc): Add overflow check for the number of bytes to allocate.
7181 (rEALLOc): Ditto.
7182
7183 2002-08-09 Jeff Johnston <jjohnstn@redhat.com>
7184
7185 * configure.host: Add check for --enable-newlib-io-pos-args
7186 and define WANT_IO_POS_ARGS flag if enabled. Define
7187 the flag by default for x86-linux configurations.
7188 * configure.in: Add support for --enable-newlib-io-pos-args.
7189 * libc/configure.in: Ditto.
7190 * configure: Regenerated.
7191 * libc/configure: Ditto.
7192 * libc/stdio/Makefile.am: Specify -fshort-enums for compiling
7193 vfprintf.c and vfiprintf.c.
7194 * libc/stdio/Makefile.in: Regenerated.
7195 * libc/stdio/vfprintf.c: Add positional argument support that
7196 is enabled by compiling with -DWANT_IO_POS_ARGS.
7197
7198 2002-08-07 Richard Sandiford <rsandifo@redhat.com>
7199
7200 * libc/include/machine/setjmp.h: For mips, define _JBLEN based
7201 based on __mips_soft_float rather than __mips64.
7202 * libc/machine/mips/setjmp.S: Provide hard and soft float versions
7203 of both 32-bit and 64-bit code.
7204
7205 2002-08-04 Christopher Faylor <cgf@redhat.com>
7206
7207 * libc/stdio/popen.c (popen): Allow "rb", "rt", "wb", and "wt"
7208 arguments for popen to match similar functionality in fopen.
7209
7210 2002-07-29 Pierre Humblet <pierre.humblet@ieee.org>
7211
7212 * libc/include/sys/unistd.h: Add setgroups prototype for Cygwin.
7213
7214 2002-07-29 Jeff Johnston <jjohnstn@redhat.com>
7215
7216 * libc/sys/linux/Makefile.am: Add aio64.c.
7217 * libc/sys/linux/Makefile.in: Regenerated.
7218 * libc/sys/linux/aio.c (aio_init): ENOSYS stub added.
7219 * libc/sys/linux/aio64.c: New file.
7220
7221 2002-07-26 Jeff Johnston <jjohnstn@redhat.com>
7222
7223 * libc/include/sys/param.h (MAX, MIN): Added macros.
7224 * libc/sys/linux/Makefile.am: Add new files.
7225 * libc/sys/linux/Makefile.in: Regenerated.
7226 * libc/sys/linux/sys/stat.h: Add *stat64 prototypes.
7227 * libc/sys/linux/inode.c (fchdir): Added syscall.
7228 * libc/sys/linux/ftw.c: New file.
7229 * libc/sys/linux/ftw64.c: Ditto.
7230 * libc/sys/linux/getwd.c: Ditto.
7231 * libc/sys/linux/scandir64.c: Ditto.
7232 * libc/sys/linux/strverscmp.c: Ditto.
7233 * libc/sys/linux/versionsort.c: Ditto.
7234 * libc/sys/linux/versionsort64.c: Ditto.
7235
7236 2002-07-26 Jeff Johnston <jjohnstn@redhat.com>
7237
7238 * libc/string/strings.tex: Fix typo for memccpy.
7239
7240 2002-07-25 Jeff Johnston <jjohnstn@redhat.com>
7241
7242 * libc/sys/linux/io64.c (truncate64, ftruncate64): Added.
7243 * libc/sys/linux/sys/types.h (off64_t): Definition added.
7244
7245 2002-07-25 Jeff Johnston <jjohnstn@redhat.com>
7246
7247 * libc/sys/linux/Makefile.am: Add fclean.c.
7248 * libc/sys/linux/Makefile.in: Regenerated.
7249 * libc/sys/linux/fclean.c: New file.
7250
7251 2002-07-25 Jeff Johnston <jjohnstn@redhat.com>
7252
7253 * libc/sys/linux/Makefile.am: Add confstr.c.
7254 * libc/sys/linux/Makefile.in: Regenerated.
7255 * libc/sys/linux/confstr.c: New file.
7256 * libc/sys/linux/confstr.h: Ditto.
7257 * libc/sys/linux/sys/unistd.h: Include <features.h> and
7258 <bits/environments.h>.
7259
7260 2002-07-25 Jeff Johnston <jjohnstn@redhat.com>
7261
7262 * libc/sys/linux/config.h (__set_errno): Macro definition removed.
7263 * libc/sys/linux/fpathconf.c (__set_errno): Ditto.
7264 * libc/sys/linux/libc-internal.h (__set_errno): Ditto.
7265 * libc/sys/linux/pathconf.c (__set_errno): Ditto.
7266 * libc/sys/linux/ttyname_r.c (__set_errno): Ditto.
7267 * libc/sys/linux/sys/errno.h (__set_errno): Macro definition added.
7268
7269 2002-07-24 Jeff Johnston <jjohnstn@redhat.com>
7270
7271 * libc/sys/linux/Makefile.am: Add new files.
7272 * libc/sys/linux/Makefile.in: Regenerated.
7273 * libc/sys/linux/fstab.c: New file.
7274 * libc/sys/linux/fstatvfs.c: Ditto.
7275 * libc/sys/linux/fstatvfs64.c: Ditto.
7276 * libc/sys/linux/internal_statvfs.c: Ditto.
7277 * libc/sys/linux/mntent.c: Ditto.
7278 * libc/sys/linux/mntent_r.c: Ditto.
7279 * libc/sys/linux/statvfs.c: Ditto.
7280 * libc/sys/linux/statvfs64.c: Ditto.
7281 * libc/sys/linux/include/paths.h: Ditto.
7282 * libc/sys/linux/inode.c (statfs, fstatfs): New syscalls
7283 with double-underscore weak-aliases.
7284 * libc/sys/linux/sys/stat.h: Add *stat64 prototypes.
7285
7286 2002-07-24 Jeff Johnston <jjohnstn@redhat.com>
7287
7288 * libc/include/signal.h (SIG_IGN, SIG_DFL, SIG_ERR): Change
7289 to use _sig_func_ptr type casted constants.
7290 (_sig_func_ptr): Typedef moved to sys/signal.h.
7291 * libc/include/sys/signal.h (_sig_func_ptr): Typedef added.
7292 For __rtems, use POSIX definition, otherwise default to ANSI.
7293 * libc/sys/linux/sys/signal.h (_sig_func_ptr): Typedef added.
7294
7295 2002-07-24 Stephane Carrez <stcarrez@nerim.fr>
7296
7297 * configure.host: Recognize m6811-elf and m6812-elf targets.
7298 * libc/include/machine/setjmp.h (_JBLEN): Define for 68hc11/68hc12.
7299 * libc/include/machine/ieeefp.h (__IEEE_BIG_ENDIAN): Define for 68HC11.
7300 (_DOUBLE_IS_32BITS): Define when compiling with -fshort-double.
7301 * libc/include/sys/config.h (INT_MAX, UINT_MAX): Define
7302 according to __INT_MAX__.
7303 (_POINTER_INT): Define to short.
7304 * libc/machine/m68hc11/Makefile.am: New file.
7305 * libc/machine/m68hc11/Makefile.in: New file.
7306 * libc/machine/m68hc11/configure.in: New file.
7307 * libc/machine/m68hc11/configure: New file.
7308 * libc/machine/m68hc11/aclocal.m4: New file.
7309 * libc/machine/m68hc11/setjmp.S: New file.
7310
7311 2002-07-23 Jeff Johnston <jjohnstn@redhat.com>
7312
7313 * libc/include/string.h: Add mempcpy, strndup, and _strndup_r
7314 prototypes.
7315 * libc/stdlib/Makefile.am: Remove strdup.c and strdup_r.c.
7316 * libc/stdlib/Makefile.in: Regenerated.
7317 * libc/stdlib/strdup.c: Removed.
7318 * libc/stdlib/strdup_r.c: Removed.
7319 * libc/string/Makefile.am: Add strdup.c, strdup_r.c, memccpy.c,
7320 mempcpy.c, strndup.c, and strndup_r.c.
7321 * libc/string/Makefile.in: Regenerated.
7322 * libc/string/memccpy.c: New file.
7323 * libc/string/mempcpy.c: Ditto.
7324 * libc/string/strndup.c: Ditto.
7325 * libc/string/strndup_r.c: Ditto.
7326 * libc/string/strdup.c: New file moved from stdlib.
7327 * libc/string/strdup_r.c: Ditto.
7328 * libc/string/strings.tex: Add memccpy and mempcpy documentation.
7329
7330 2002-07-23 Jeff Johnston <jjohnstn@redhat.com>
7331
7332 * libc/include/stdio.h: Move fcloseall prototype within
7333 #ifndef _REENT_ONLY section.
7334 * libc/sys/linux/Makefile.am: Add new files.
7335 * libc/sys/linux/Makefile.in: Regenerated.
7336 * libc/sys/linux/sys/stdio.h: Add ctermid prototype.
7337 * libc/sys/linux/sys/unistd.h: Add ttyname_r prototype.
7338 * libc/sys/linux/sys/types.h: Add ino64_t type.
7339 * libc/sys/linux/ctermid.c: New file.
7340 * libc/sys/linux/ttyname_r.c: Ditto.
7341 * libc/sys/linux/readdir64.c: Ditto.
7342
7343 2002-07-22 Jeff Johnston <jjohnstn@redhat.com>
7344
7345 * libc/include/stdio.h (fcloseall, _fcloseall_r): Added prototypes.
7346 * libc/stdio/Makefile.am: Added fcloseall.c support.
7347 * libc/stdio/Makefile.in: Regenerated.
7348 * libc/stdio/fcloseall.c: New file.
7349 * libc/stdio64/Makefile.am: Remove missing .def references.
7350 * libc/stdio64/Makefile.in: Regenerated.
7351
7352 2002-07-22 Jeff Johnston <jjohnstn@redhat.com>
7353
7354 * libc/machine/powerpc/time.c: Removed..renamed to times.c.
7355 * libc/machine/powerpc/times.c: New file.
7356 * libc/machine/powerpc/Makefile.am: Change time.c to times.c.
7357 * libc/machine/powerpc/Makefile.in: Regenerated.
7358
7359 2002-07-22 Aldy Hernandez <aldyh@redhat.com>
7360
7361 * libc/machine/powerpc/time.c: New file.
7362 * libc/machine/powerpc/Makefile.am (lib_a_SOURCES): Add
7363 time.c.
7364 * libc/machine/powerpc/Makefile.in: Regenerated.
7365
7366 2002-07-22 Thomas Fitzsimmons <fitzsim@redhat.com>
7367
7368 * libc/libc.texinfo: Change copyright notices to Red Hat from
7369 Cygnus.
7370 * libm/libm.texinfo: Likewise.
7371 * README: Change docs URL to
7372 http://sources.redhat.com/newlib/docs.html.
7373
7374 2002-07-19 Jeff Johnston <jjohnstn@redhat.com>
7375
7376 * libc/sys/linux/Makefile.am: Add pathconf.c and fpathconf.c.
7377 * libc/sys/linux/Makefile.in: Regenerated.
7378 * libc/sys/linux/inode.c: Add chmod, fchmod, and chown syscalls.
7379 * libc/sys/linux/io.c: Add ftruncate syscall.
7380 * libc/sys/linux/fpathconf.c: New file.
7381 * libc/sys/linux/pathconf.c: Ditto.
7382 * libc/sys/linux/linux_fsinfo.h: Ditto.
7383 * libc/sys/linux/sys/unistd.h: Ditto.
7384
7385 2002-07-19 Jeff Johnston <jjohnstn@redhat.com>
7386
7387 * libc/stdio64/Makefile.am: Remove missing files.
7388 * libc/stdio64/Makefile.in: Regenerated.
7389
7390 2002-07-19 Jeff Johnston <jjohnstn@redhat.com>
7391
7392 * libc/include/sys/config.h[__i386__][__linux__]: Define
7393 _LARGE64FILE_SOURCE to 1.
7394 * libc/sys/linux/Makefile.am: Add getrlimit64.c and setrlimit64.c.
7395 * libc/sys/linux/Makefile.in: Regenerated.
7396 * libc/sys/linux/resource.c: Add __getrlimit and __setrlimit aliases.
7397 * libc/sys/linux/sys/linux_time.h: Protect struct timeval definition.
7398 * libc/sys/linux/sys/resource.h: Include <bits/resource.h> instead
7399 of <linux/resource.h>.
7400 * libc/sys/linux/getrlimit64.c: New file.
7401 * libc/sys/linux/setrlimit64.c: Ditto.
7402
7403 2002-07-19 Thomas Fitzsimmons <fitzsim@redhat.com>
7404
7405 * libc/argz/argz_replace.c: Include buf_findstr.h.
7406 * libc/argz/buf_findstr.c: Likewise.
7407 * libc/argz/envz_entry.c: Include buf_findstr.h. Cast return
7408 value to (char *).
7409 * libc/argz/envz_get.c: Likewise.
7410 * libc/include/sys/unistd.h: Add getopt and getsubopt declarations.
7411 * libc/stdlib/Makefile.am (LIB_SOURCES): Add getsubopt.c.
7412 * libc/stdlib/getsubopt.3: New file.
7413 * libc/stdlib/getsubopt.c: New file.
7414 * libc/sys/linux/machine/i386/socketcall.h (__sockcall_base):
7415 Change esp to ebp.
7416
7417 2002-07-17 Jeff Johnston <jjohnstn@redhat.com>
7418
7419 * configure.host(stdio64_dir): New setting that is used to
7420 enable building of new stdio64 directory.
7421 * libc/Makefile.am[HAVE_STDIO64_DIR]: Add support for
7422 large files.
7423 (stmp-stdio64,stdio64.texi): New targets to optionally add in
7424 stdio64 info to info files.
7425 * libc/Makefile.in: Regenerated.
7426 * libc/configure: Ditto.
7427 * libc/configure.in: Add configuration variables that are set
7428 when stdio64 is selected as subdir in configure.host.
7429 * libc/libc.texinfo: Add optional menu item for Stdio64, based
7430 on whether STDIO64 flag is set or not.
7431 * libc/sys.tex: Add optional stdio64 syscalls based on whether
7432 STDIO64 flag is set or not.
7433 * libc/include/reent.h[__LARGE64_FILES]: Add new stdio64
7434 _r sycall routines.
7435 * libc/include/stdio.h[__LARGE64_FILES]: Add new stdio64 prototypes.
7436 (FILE): Typedef'd to __FILE instead of struct __sFILE directly.
7437 (__SL64): New file flag indicating file is opened via fopen64.
7438 * libc/include/sys/_types.h(_off64_t): Added.
7439 * libc/include/sys/config.h: For x86-linux, define __LARGE64_FILES.
7440 * libc/include/sys/reent.h(struct __sFILE64): New file structure
7441 for 64-bit offset large file support.
7442 (__FILE): New intermediate type either set to struct __sFILE64 or
7443 struct __sFILE, depending on whether __LARGE64_FILES is set or not.
7444 * libc/reent/Makefile.am[HAVE_STDIO64_DIR]: Add new files.
7445 * libc/reent/Makefile.in: Regenerated.
7446 * libc/reent/fstat64r.c: New file.
7447 * libc/reent/lseek64r.c: Ditto.
7448 * libc/reent/open64r.c: Ditto.
7449 * libc/reent/reent.tex: Optionally add stdio64 reentrant syscalls
7450 based on whether STDIO64 flag is set.
7451 * libc/stdio/stdio.tex: Add blank line.
7452 * libc/stdio64/Makefile.am: New file.
7453 * libc/stdio64/Makefile.in: Ditto.
7454 * libc/stdio64/fgetpos64.c: Ditto.
7455 * libc/stdio64/fopen64.: Ditto.
7456 * libc/stdio64/freopen64.c: Ditto.
7457 * libc/stdio64/fseeko64.c: Ditto.
7458 * libc/stdio64/fsetpos64.c: Ditto.
7459 * libc/stdio64/ftello64.c: Ditto.
7460 * libc/stdio64/local64.h: Ditto.
7461 * libc/stdio64/stdio64.c: Ditto.
7462 * libc/stdio64/stdio64.tex: Ditto.
7463 * libc/stdio64/tmpfile64.c: Ditto.
7464 * libc/sys/linux/io64.c: Add weak aliases for lseek64, fstat64, and
7465 open64.
7466
7467 2002-07-16 Jeff Johnston <jjohnstn@redhat.com>
7468
7469 * libc/Makefile.am (stmp-extra): New target to set makeinfo flag
7470 if LIBC_EXTRA_LIB is present.
7471 * libc/Makefile.in: Regenerated.
7472 * libc/libc.texinfo: Add blank line.
7473 * libc/argz/Makefile.am: Add doc support.
7474 * libc/search/Makefile.am: Ditto.
7475 * libc/argz/Makefile.in: Regenerated.
7476 * libc/search/Makefile.in: Ditto.
7477 * libc/misc/misc.tex: Add ffs function.
7478 * libc/stdio/ftell.c: Fix missing doc delimeter in description.
7479
7480 2002-07-15 Jeff Johnston <jjohnstn@redhat.com>
7481
7482 * libc/include/sys/config.h[__H8300__]: Replace __SMALL_BITFIELDS
7483 definition that was removed in error.
7484
7485 2002-07-15 Jeff Johnston <jjohnstn@redhat.com>
7486
7487 * libc/include/machine/ieeefp.h: Change to only define
7488 floating point defines (e.g one of __IEEE_BIG_ENDIAN or
7489 __IEEE_LITTLE_ENDIAN must be defined for each platform).
7490 * libc/include/sys/config.h: Include <machine/ieeefp.h> and
7491 remove redundant floating point definitions.
7492
7493 2002-07-15 Jeff Johnston <jjohnstn@redhat.com>
7494
7495 * libc/sys/linux/callocr.c: Fix so code references
7496 calloc.
7497
7498 2002-07-15 Jeff Johnston <jjohnstn@redhat.com>
7499
7500 * libc/sys/linux/Makefile.am: Add new files.
7501 * libc/sys/linux/Makefile.in: Regenerated.
7502 * libc/sys/linux/bp-sym.h: Moved to include directory.
7503 * libc/sys/linux/mmap.c: Add weak aliases: __mmap, __munmap, __mremap.
7504 * libc/sys/linux/inode.c: Set _LIBC to 1.
7505 * libc/sys/linux/mq_close.c: Ditto.
7506 * libc/sys/linux/mq_getattr.c: Ditto.
7507 * libc/sys/linux/mq_open.c: Ditto.
7508 * libc/sys/linux/mq_receive.c: Ditto.
7509 * libc/sys/linux/mq_send.c: Ditto.
7510 * libc/sys/linux/mq_setattr.c: Ditto.
7511 * libc/sys/linux/mq_unlink.c: Ditto.
7512 * libc/sys/linux/calloc.c: New file.
7513 * libc/sys/linux/callocr.c: Ditto.
7514 * libc/sys/linux/cfreer.c: Ditto.
7515 * libc/sys/linux/config.h: Ditto.
7516 * libc/sys/linux/free.c: Ditto.
7517 * libc/sys/linux/freer.c: Ditto.
7518 * libc/sys/linux/msize.c: Ditto.
7519 * libc/sys/linux/msizer.c: Ditto.
7520 * libc/sys/linux/mstats.c: Ditto.
7521 * libc/sys/linux/mtrim.c: Ditto.
7522 * libc/sys/linux/mtrimr.c: Ditto.
7523 * libc/sys/linux/pvallocr.c: Ditto.
7524 * libc/sys/linux/realloc.c: Ditto.
7525 * libc/sys/linux/reallocr.c: Ditto.
7526 * libc/sys/linux/thread-m.h: Ditto.
7527 * libc/sys/linux/vallocr.c: Ditto.
7528 * libc/sys/linux/bp-checks.h: Ditto.
7529 * libc/sys/linux/libc-symbols.h: Ditto.
7530 * libc/sys/linux/libc-tsd.h: Ditto.
7531 * libc/sys/linux/libintl.h: Ditto.
7532 * libc/sys/linux/malign.c: Ditto.
7533 * libc/sys/linux/malignr.c: Ditto.
7534 * libc/sys/linux/mallinfor.c: Ditto.
7535 * libc/sys/linux/malloc.c: Ditto.
7536 * libc/sys/linux/mallocr.c: Ditto.
7537 * libc/sys/linux/malloptr.c: Ditto.
7538 * libc/sys/linux/mallstatsr.c: Ditto.
7539 * libc/sys/linux/mcheck.c: Ditto.
7540 * libc/sys/linux/mhooks.h: Ditto.
7541 * libc/sys/linux/include/bp-sym.h: Ditto.
7542 * libc/sys/linux/include/malloc.h: Ditto.
7543 * libc/sys/linux/include/mcheck.h: Ditto.
7544 * libc/sys/linux/linuxthreads/machine/i386/Makefile.am: Remove
7545 getpagesize.c.
7546 * libc/sys/linux/linuxthreads/machine/i386/Makefile.in: Regenerated.
7547 * libc/sys/linux/linuxthreads/machine/i386/getpagesize.c: Moved.
7548 * libc/sys/linux/machine/i386/getpagesize.c: New file.
7549 * libc/sys/linux/machine/i386/Makefile.am: Add getpagesize.c.
7550 * libc/sys/linux/machine/i386/Makefile.in: Regenerated.
7551 * libc/sys/linux/machine/i386/sysdep.h: New file.
7552 * libc/sys/linux/machine/i386/weakalias.h: Add weak_function support.
7553 * libc/sys/linux/sys/dirent.h: Set _LIBC to 1.
7554 * libc/sys/linux/sys/lock.h: Include <machine/weakalias.h>.
7555
7556 2002-07-12 Jeff Johnston <jjohnstn@redhat.com>
7557
7558 * libc/sys/linux/include/mqueue.h: Change to use <bits/siginfo.h>
7559 instead of <asm/siginfo.h>.
7560 * libc/sys/linux/sys/signal.h: Change to include various linux
7561 <bits/xxx.h> header files, rather than <linux/signal.h> so as
7562 to work with multiple releases of glibc header files.
7563
7564 2002-07-11 Chris Demetriou <cgd@broadcom.com>
7565
7566 * testsuite/newlib.search/hsearchtest.c: New file to test
7567 newlib/libc/search.
7568 * testsuite/newlib.search/hsearchtest.exp: Likewise.
7569
7570 2002-07-10 Florian Schrack <florian.schrack@freenet.de>
7571
7572 * libc/sys/mmixware/read.c: Use SYS_Fgets syscall if dealing with
7573 a terminal.
7574 * libc/sys/mmixware/sys/syscall.h (SYS_Fgets): Definition added.
7575
7576 2002-07-08 Jeff Johnston <jjohnstn@redhat.com>
7577
7578 * libc/include/math.h (MAXFLOAT): Added.
7579
7580 Mon Jul 8 13:55:23 2002 J"orn Rennecke <joern.rennecke@superh.com>
7581
7582 * libc/machine/sh/Makefile.am (lib_a_SOURCES):
7583 Make strcmp.S unconditional.
7584 * libc/machine/sh/Makefile.in: Regenerate.
7585 * libc/machine/sh/asm.h (DELAYED_BRANCHES, SL): Also for __SH5__ .
7586 * strcmp.S (strcmp): Add SHmedia variant. Use different registers
7587 for SHcompact.
7588
7589 2002-07-04 Jeff Johnston <jjohnstn@redhat.com>
7590
7591 * libc/sys/linux/inode.c: Fix utime prototype and add _LIBC
7592 define before including <sys/lock.h>.
7593
7594 2002-07-04 Jeff Johnston <jjohnstn@redhat.com>
7595
7596 * libc/include/utime.h: Add include of <_ansi.h>.
7597 * libc/sys/linux/Makefile.am: Add utimes.c.
7598 * libc/sys/linux/Makefile.in: Regenerated.
7599 * libc/sys/linux/inode.c(__umask): New static routine.
7600 (umask): Written to use __umask and attempt to thread lock.
7601 (getumask): New function written to use __umask and thread lock.
7602 * libc/sys/linux/utimes.c: New file.
7603 * libc/sys/linux/sys/time.h: Fix utimes prototype.
7604 * libc/sys/linux/sys/utime.h: New file.
7605
7606 2002-07-04 Thomas Fitzsimmons <fitzsim@redhat.com>
7607
7608 * libtool.m4: New file.
7609 * libc/sys/linux/process.c: Implement vfork in terms of fork,
7610 rather than as a syscall.
7611
7612 2002-07-04 Jeff Johnston <jjohnstn@redhat.com>
7613
7614 * libc/include/stdio.h: Add new prototypes.
7615 * libc/stdio/Makefile.am: Add fseeko.c and ftello.c.
7616 * libc/stdio/Makefile.in: Regenerated.
7617 * libc/stdio/fseek.c: Add fseeko documentation.
7618 * libc/stdio/ftell.c: Add ftello documentation.
7619 * libc/stdio/fseeko.c: New file.
7620 * libc/stdio/ftello.c: New file.
7621
7622 2002-07-04 Jeff Johnston <jjohnstn@redhat.com>
7623
7624 * libc/stdio/Makefile.am: Add asprintf.c and vasprintf.c.
7625 * libc/stdio/Makefile.in: Regenerated.
7626 * libc/stdio/asprintf.c: New file.
7627 * libc/stdio/vasprintf.c: Ditto.
7628 * libc/stdio/fvwrite.c: Add code to dynamically reallocate
7629 the buffer for asprintf support.
7630 * libc/stdio/sprintf.c: Add asprintf documentation.
7631 * libc/stdio/vfprintf.c: Add vasprintf documentation.
7632 * libc/include/stdio.h: Add new prototypes.
7633
7634 2002-07-02 Thomas Fitzsimmons <fitzsim@redhat.com>
7635
7636 * libc/search/hcreate.c: Remove advertising clause from license.
7637 * libc/search/hcreate_r.c: Likewise.
7638
7639 2002-07-02 Chris Demetriou <cgd@broadcom.com>
7640
7641 * libc/include/sys/config.h (__IEEE_LITTLE_ENDIAN)
7642 (__IEEE_BIG_ENDIAN): Define appropriately for MIPS.
7643 Check that one of them is defined and error out if not.
7644 Add any platforms defined in <machine/ieeefp.h> that are missing.
7645 * libc/search/hash.h (DB_BYTE_ORDER, DB_BIG_ENDIAN)
7646 (DB_LITTLE_ENDIAN): New defines.
7647 * libc/search/hash.c: Replace all incorrect checks for
7648 _IEEE_LITTLE_ENDIAN with tests of BYTE_ORDER, and all uses of
7649 BYTE_ORDER, LITTLE_ENDIAN, and BIG_ENDIAN with DB_* versions.
7650 * libc/search/hash_page.c: Likewise.
7651
7652 2002-06-28 Thomas Fitzsimmons <fitzsim@redhat.com>
7653
7654 * libm/mathfp/sf_pow.c (powf): Change k from int to float.
7655
7656 2002-06-27 Benjamin Kosnik <bkoz@redhat.com>
7657
7658 * libc/include/stdio.h: Untangle, add _BEGIN_STD_C and _END_STD_C.
7659 * libc/include/time.h: Same.
7660 * libc/include/string.h: Same.
7661 * libc/include/stdlib.h: Same.
7662 * libc/include/signal.h: Same.
7663 * libc/include/setjmp.h: Same.
7664 * libc/include/math.h: Same.
7665 * libc/include/locale.h: Same.
7666 * libc/include/ctype.h: Same.
7667 * libc/include/machine/setjmp.h: Same.
7668 * libc/include/_ansi.h (_BEGIN_STD_C): Add.
7669 (_END_STD_C): Add.
7670
7671 2002-06-27 Jeff Johnston <jjohnstn@redhat.com>
7672
7673 * libc/include/sys/_types.h: Define _ssize_t as int if int is
7674 32-bits, otherwise define it as long.
7675 * libc/include/sys/types.h: Include <_ansi.h> and <sys/_types.h>
7676 and define ssize_t as _ssize_t.
7677 * libc/reent/readr.c: Change return type to _ssize_t.
7678 * libc/reent/writer.c: Ditto.
7679 * libc/sys/linux/Makefile.am: Add aio.c.
7680 * libc/sys/linux/Makefile.in: Regenerated.
7681 * libc/sys/linux/aio.c: New file.
7682 * libc/sys/linux/sys/cdefs.h: Add __restrict_arr definition.
7683 * libm/common/fdlibm.h: Undef __P before defining it.
7684
7685 2002-06-27 Thomas Fitzsimmons <fitzsim@redhat.com>
7686
7687 * libm/mathfp/s_pow.c (pow): Fix checks on variable k. Add
7688 exponent_is_even_int variable. Handle case where x is
7689 negative, and y is an odd integer.
7690 * libm/mathfp/sf_pow.c (powf): Likewise.
7691
7692 * libm/mathfp/er_lgamma.c: Remove __kernel references.
7693 * libm/mathfp/erf_lgamma.c: Likewise.
7694 * libm/mathfp/s_tgamma.c: Likewise.
7695 * libm/mathfp/sf_tgamma.c: Likewise.
7696
7697 2002-06-27 Jeff Johnston <jjohnstn@redhat.com>
7698
7699 * libc/sys/linux/Makefile.am: Add new clock routines.
7700 * libc/sys/linux/Makefile.in: Regenerated.
7701 * libc/sys/linux/clock_getres.c: New file.
7702 * libc/sys/linux/clock_gettime.c: Ditto.
7703 * libc/sys/linux/clock_settime.c: Ditto.
7704 * libc/sys/linux/hp-timing.h: Ditto.
7705 * libc/sys/linux/libc-internal.h: Ditto.
7706 * libc/sys/linux/sysconf.c: Fix typo.
7707 * libc/sys/linux/include/time.h: Add include of <sys/linux_time.h>.
7708 * libc/sys/linux/machine/hp-timing.h: New file.
7709 * libc/sys/linux/machine/i386/Makefile.am: Add new files.
7710 * libc/sys/linux/machine/i386/Makefile.in: Regenerated.
7711 * libc/sys/linux/machine/i386/get_clockfreq.c: New file.
7712 * libc/sys/linux/machine/i386/hp-timing.c: Ditto.
7713 * libc/sys/linux/machine/i386/hp-timing.h: Ditto.
7714 * libc/sys/linux/sys/linux_time.h: New file.
7715 * libc/sys/linux/sys/time.h: Remove include of <linux/time.h> and
7716 replace with <sys/linux_time.h>.
7717
7718 Wed Jun 26 16:33:25 2002 J"orn Rennecke <joern.rennecke@superh.com>
7719
7720 * libc/sys/sh/crt0.S: Remove vestigial .section directive.
7721
7722 2002-06-25 Jeff Johnston <jjohnstn@redhat.com>
7723
7724 * libc/sys/linux/Makefile.am: Consolidate additional items under
7725 ADD_OBJS.
7726 * libc/sys/linux/Makefile.in: Regenerated.
7727
7728 2002-06-25 Jeff Johnston <jjohnstn@redhat.com>
7729
7730 * libc/sys/linux/sethostname.c: New file.
7731 * libc/sys/linux/Makefile.am: Add sethostname.c support.
7732 * libc/sys/linux/Makefile.in: Regenerated.
7733
7734 2002-06-24 Thomas Fitzsimmons <fitzsim@redhat.com>
7735
7736 * libc/search/db_local.h: New file.
7737 * libc/include/db.h: Remove.
7738 * libc/search/Makefile.am (LIB_SOURCES): Add db_local.h.
7739 * libc/search/hash.c (MIN,MAX): Add macros. Change <db.h> to
7740 "db_local.h".
7741 * libc/search/hash_bigkey.c: Likewise.
7742 * libc/search/hash_buf.c: Likewise.
7743 * libc/search/hash_func.c: Likewise.
7744 * libc/search/hash_log2.c: Likewise.
7745 * libc/search/hash_page.c: Likewise.
7746
7747 2002-06-24 J"orn Rennecke <joern.rennecke@superh.com>
7748
7749 * libc/machine/sh/strlen.S: New file.
7750 * libc/machine/sh/Makefile.am (lib_a_SOURCES): Add rule for it.
7751 * libc/machine/sh/Makefile.am: Regenerate.
7752
7753 2002-06-24 Jeff Johnston <jjohnstn@redhat.com>
7754
7755 * libc/sys/linux/gethostname.c: Change name to __gethostname and
7756 add gethostname alias.
7757
7758 2002-06-24 Jeff Johnston <jjohnstn@redhat.com>
7759
7760 * libc/include/math.h: Remove <sys/types.h>.
7761 (__dmath): Use __ULong instead of __uint32_t.
7762 * libc/include/sys/reent.h: If long or int is not 32-bits,
7763 include <sys/types.h> to get definitions for __int32_t and __uint32_t.
7764 * libc/stdlib/mprec.h: Include <sys/types.h> to get integer defs.
7765 * libm/common/fdlibm.h: Ditto.
7766
7767 2002-06-24 Thomas Fitzsimmons <fitzsim@redhat.com>
7768
7769 * libc/include/ndbm.h: Remove.
7770 * libc/search/ndbm.c: Remove.
7771
7772 2002-06-24 WATANABE Hirofumi <eban@os.rim.or.jp>
7773
7774 * libc/stdio/fseek.c (fseek): Fix braces.
7775
7776 2002-06-21 Corinna Vinschen <corinna@vinschen.de>
7777
7778 * libc/time/strftime.c (strftime): Add %e format specifier.
7779
7780 2002-06-21 Thomas Fitzsimmons <fitzsim@redhat.com>
7781
7782 * libc/search/hash.h (LITTLE_ENDIAN, BIG_ENDIAN): Define if not
7783 previously defined.
7784
7785 2002-06-21 Richard Earnshaw (rearnsha@arm.com)
7786
7787 * libc/sys/arm/sys/param.h (BIG_ENDIAN, LITTLE_ENDIAN): Define.
7788 (BYTE_ORDER): Define as appropriate for the target.
7789
7790 2002-06-21 Jeff Johnston <jjohnstn@redhat.com>
7791
7792 * libc/include/sys/config.h[__linux__]: Set _READ_WRITE_RETURN_TYPE
7793 to _ssize_t.
7794 * libc/sys/linux/io.c (read, write): Change to return ssize_t.
7795
7796 2002-06-21 Jeff Johnston <jjohnstn@redhat.com>
7797
7798 * libc/include/stdio.h (__getline, __getdelim): New prototypes.
7799 * libc/include/time.h [HAVE_GETDATE](getdate, getdate_r): Ditto.
7800 [HAVE_GETDATE](getdate_err): New error code.
7801 * libc/stdio/Makefile.am: Add support for getline.c and getdelim.c.
7802 * libc/stdio/Makefile.in: Regenerated.
7803 * libc/stdio/getdelim.c: New file.
7804 * libc/stdio/getline.c: Ditto.
7805 * libc/sys/linux/Makefile.am: Add support for getdate.c, getdate_err.c
7806 and ntp_gettime.c. Also add AM_CFLAGS to point to libc/stdio.
7807 * libc/sys/linux/Makefile.in: Regenerated.
7808 * libc/sys/linux/getdate.c: New file.
7809 * libc/sys/linux/getdate_err.c: Ditto.
7810 * libc/sys/linux/ntp_gettime.c: Ditto.
7811 * libc/sys/linux/time.c (adjtimex, ntp_adjtime): New functions.
7812 * libc/sys/linux/sys/stdio.h (getline, getdelim): New macros.
7813
7814 2002-06-21 Jeff Johnston <jjohnstn@redhat.com>
7815
7816 * libc/include/math.h: Add <sys/types.h> to get _uint32_t definition.
7817 * libc/include/machine/types.h: Skip __off_t, __pid_t, and
7818 __loff_t definitions if special _HAVE_SYSTYPES macro defined.
7819 * libc/include/sys/config.h: Removed _uint*, _int* definitions.
7820 * libc/include/sys/param.h: Remove i386 case which is handled
7821 by default case.
7822 (BIG_ENDIAN, LITTLE_ENDIAN): Protect
7823 definitions in case they are already defined.
7824 (BYTE_ORDER): Add default case using _IEEE_BIG_ENDIAN and
7825 _IEEE_LITTLE_ENDIAN flags.
7826 * libc/include/sys/reent.h: Change __uint32_t references to
7827 use _ULong instead.
7828 (_REENT_GETDATE_REENT_P): New macro.
7829 * libc/include/sys/types.h (__int16_t, __uint16_t): Added.
7830 (__int32_t, __uint32_t, __int64_t, __uint64_t): Ditto.
7831 * libc/search/hash.h: Add default setting of BYTE_ORDER,
7832 LITTLE_ENDIAN, and BIG_ENDIAN, if not already defined.
7833 * libc/sys/linux/sys/types.h: Include <sys/_types.h>. Define
7834 ssize_t based on _ssize_t. Remove __socklen_t, __uintptr_t,
7835 pid_t, off_t, loff_t, caddr_t, and daddr_t type
7836 definitions which are done by subsequent glibc headers.
7837 Add macro definitions to prevent subsequent header files from
7838 defining pid_t, off_t, ssize_t, and key_t. Move uintptr_t and
7839 intptr_t to after glibc definitions of types they are based on.
7840
7841 2002-06-21 Jeff Johnston <jjohnstn@redhat.com>
7842
7843 * libc/include/errno.h: Protect from multiple inclusion.
7844
7845 2002-06-21 Nick Clifton <nickc@cambridge.redhat.com>
7846
7847 * libc/sys/arm/swi.h (ADP_Stopped_RunTimeError): Set correct value.
7848
7849 2002-06-20 Thomas Fitzsimmons <fitzsim@redhat.com>
7850
7851 * Makefile.am (LIB_OBJECTLISTS): Add
7852 libc/search/objectlist.awk.in.
7853 * libc/Makefile.am (SUBDIRS): Add search.
7854 (SUBLIBS): Add search/libsearch.la.
7855 * libc/configure.in (AC_OUTPUT): Add search/Makefile.
7856 * libc/search: New directory.
7857 * libc/search/Makefile.am: New file.
7858 * libc/search/extern.h: New file.
7859 * libc/search/hash.c: New file.
7860 * libc/search/hash.h: New file.
7861 * libc/search/hash_bigkey.c: New file.
7862 * libc/search/hash_buf.c: New file.
7863 * libc/search/hash_func.c: New file.
7864 * libc/search/hash_log2.c: New file.
7865 * libc/search/hash_page.c: New file.
7866 * libc/search/hcreate.3: New file.
7867 * libc/search/hcreate.c: New file.
7868 * libc/search/hcreate_r.c: New file.
7869 * libc/search/ndbm.c: New file.
7870 * libc/search/page.h: New file.
7871 * libc/search/tdelete.c: New file.
7872 * libc/search/tdestroy.c: New file.
7873 * libc/search/tfind.c: New file.
7874 * libc/search/tsearch.3: New file.
7875 * libc/search/tsearch.c: New file.
7876 * libc/search/twalk.c: New file.
7877 * libc/include/db.h: New file.
7878 * libc/include/ndbm.h: New file.
7879 * libc/include/search.h: New file.
7880 * libc/include/sys/queue.h: New file.
7881 * libc/include/sys/cdefs.h: New file.
7882 * libc/include/sys/param.h
7883 [__IEEE_LITTLE_ENDIAN,__IEEE_BIG_ENDIAN]: Set BYTE_ORDER to
7884 LITTLE_ENDIAN or BIG_ENDIAN.
7885 * libc/include/sys/errno.h (EFTYPE): New macro.
7886 * libc/search/bsearch.c: Move from libc/stdlib.
7887 * libc/search/qsort.c: Likewise.
7888 * libc/stdlib/Makefile.am (LIB_SOURCES): Remove bsearch.c and
7889 qsort.c.
7890 (CHEWOUT_FILES): Remove bsearch.def and qsort.def.
7891 * libc/stdlib/stdlib.tex: Remove references to bsearch and qsort.
7892
7893 2002-06-19 Jeff Johnston <jjohnstn@redhat.com>
7894
7895 * libc/sys/linux/Makefile.am: Add support for message queue routines,
7896 ipc routines, and ftok.
7897 * libc/sys/linux/Makefile.in: Regenerated.
7898 * libc/sys/linux/ftok.c: New file.
7899 * libc/sys/linux/ipc.c: Ditto.
7900 * libc/sys/linux/mq_close.c: Ditto.
7901 * libc/sys/linux/mq_getattr.c: Ditto.
7902 * libc/sys/linux/mq_notify.c: Ditto.
7903 * libc/sys/linux/mq_open.c: Ditto.
7904 * libc/sys/linux/mq_receive.c: Ditto.
7905 * libc/sys/linux/mq_send.c: Ditto.
7906 * libc/sys/linux/mq_setattr.c: Ditto.
7907 * libc/sys/linux/mq_unlink.c: Ditto.
7908 * libc/sys/linux/mqlocal.h: Ditto.
7909 * libc/sys/linux/include/mqueue.h: Ditto.
7910 * libc/sys/linux/sys/types.h: Define __gid_t_defined and
7911 __uid_t_defined.
7912
7913 2002-06-19 J"orn Rennecke <joern.rennecke@superh.com>
7914
7915 * libm/common/sf_lround.c (round): Change name to: (lround).
7916 * libm/common/sf_remquo.c (remquo): Pass all arguemnts to
7917 remquof.
7918
7919 2002-06-18 Thomas Fitzsimmons <fitzsim@redhat.com>
7920
7921 * testsuite/lib/passfail.exp (newlib_pass_fail_all): New
7922 procedure.
7923 (newlib_pass_fail): Change to compile and run only one file.
7924 * testsuite/newlib.locale/locale.exp: Use new
7925 newlib_pass_fail_all procedure.
7926 * testsuite/newlib.string/string.exp: Likewise.
7927
7928 2002-06-18 Dave Brolley <brolley@redhat.com>
7929
7930 From Catherine Moore, Michael Meissner, Richard Sandiford:
7931 * libc/include/machine/setjmp.h (_JBLEN): Define for __frv__.
7932 (_JBTYPE): Ditto.
7933 * libc/include/sys/config.h (__IEEE_BIG_ENDIAN): Ditto.
7934 (__ATTRIBUTE_IMPURE_PTR__): Ditto.
7935 * libc/include/machine/ieeefp.h (__IEEE_BIG_ENDIAN): Ditto.
7936 * configure.host: Support frv-*-*.
7937 * libc/machine/frv/Makefile.am: New file.
7938 * libc/machine/frv/configure.in: New file.
7939 * libc/machine/frv/setjmp.S: New file.
7940
7941 2002-06-18 Thomas Fitzsimmons <fitzsim@redhat.com>
7942
7943 * libc/include/ctype.h: Remove isblank macro.
7944
7945 * libc/ctype/Makefile.am (LIB_SOURCES): Add isblank.c.
7946 * libc/ctype/isblank.c: New file.
7947 * libc/include/ctype.h [!__STRICT_ANSI__]: Add isblank
7948 declaration. Add isblank macro.
7949
7950 2002-06-18 Jeff Johnston <jjohnstn@redhat.com>
7951
7952 * testsuite/newlib.stdlib/atexit.c: New file.
7953 * testsuite/newlib.stdlib/atexit.exp: Ditto.
7954 * testsuite/newlib.string/tstring.c: Change default start size
7955 to something more reasonable for embedded platforms.
7956
7957 2002-06-14 Thomas Fitzsimmons <fitzsim@redhat.com>
7958
7959 * libc/sys/linux/sys/errno.h (EFTYPE): Add macro.
7960
7961 * libc/argz: New directory.
7962 * libc/argz/*: New files.
7963 * libc/argz/argz_add.c: New file.
7964 * libc/argz/argz_add_sep.c: New file.
7965 * libc/argz/argz_append.c: New file.
7966 * libc/argz/argz_count.c: New file.
7967 * libc/argz/argz_create.c: New file.
7968 * libc/argz/argz_create_sep.c: New file.
7969 * libc/argz/argz_delete.c: New file.
7970 * libc/argz/argz_extract.c: New file.
7971 * libc/argz/argz_insert.c: New file.
7972 * libc/argz/argz_next.c: New file.
7973 * libc/argz/argz_replace.c: New file.
7974 * libc/argz/argz_stringify.c: New file.
7975 * libc/argz/buf_findstr.c: New file.
7976 * libc/argz/envz_add.c: New file.
7977 * libc/argz/envz_entry.c: New file.
7978 * libc/argz/envz_get.c: New file.
7979 * libc/argz/envz_merge.c: New file.
7980 * libc/argz/envz_remove.c: New file.
7981 * libc/argz/envz_strip.c: New file.
7982 * libc/include/argz.h: New file.
7983 * libc/include/envz.h: New file.
7984 * Makefile.am (LIBC_OBJECTLISTS): Add
7985 libc/argz/objectlist.awk.in.
7986 * libc/Makefile.am (SUBDIRS): Add argz.
7987 (SUBLIBS): Add argz/libargz.la.
7988 * libc/configure.in (AC_OUTPUT): Add argz/Makefile.
7989 * libc/include/errno.h: Add error_t typedef.
7990
7991 2002-06-13 Jeff Johnston <jjohnstn@redhat.com>
7992
7993 * libc/include/stdlib.h: Add _Exit prototype.
7994 * libc/stdlib/Makefile.am: Add _Exit.c support.
7995 * libc/stdlib/Makefile.in: Ditto.
7996 * libc/stdlib/_Exit.c: New file.
7997
7998 2002-06-13 Stephen L. Moshier <steve@moshier.net>
7999
8000 * libm/math/e_pow.c (__ieee754_pow): Fix case whereby
8001 x is close to -1.0 and y is very large to use ax (absolute value)
8002 instead of x.
8003 * libm/math/ef_pow.c (__ieee754_powf): Ditto.
8004
8005 Thu Jun 13 19:23:40 2002 J"orn Rennecke <joern.rennecke@superh.com>
8006
8007 * libc/machine/sh/strcpy.S (strcpy, __SHMEDIA__ code):
8008 Fix clobbering bytes before destination if src and dst have same
8009 non-zero misalignment.
8010
8011 * libc/machine/sh/memset.S (memset, __SHMEDIA__ code):
8012 Fixed bug in writing end of set region.
8013
8014 2002-06-10 Christopher Faylor <cgf@redhat.com>
8015
8016 * libc/include/process.h: Remove cygwin-only sexec* declarations. Fix
8017 spawnve declaration.
8018
8019 2002-06-06 Thomas Fitzsimmons <fitzsim@redhat.com>
8020
8021 * libm/common/s_fdim.c: New file.
8022 * libm/common/s_fma.c: Likewise.
8023 * libm/common/s_fmax.c: Likewise.
8024 * libm/common/s_fmin.c: Likewise.
8025 * libm/common/s_fpclassify.c: Likewise.
8026 * libm/common/s_lrint.c: Likewise.
8027 * libm/common/s_lround.c: Likewise.
8028 * libm/common/s_nearbyint.c: Likewise.
8029 * libm/common/s_remquo.c: Likewise.
8030 * libm/common/s_round.c: Likewise.
8031 * libm/common/s_scalbln.c: Likewise.
8032 * libm/common/s_signbit.c: Likewise.
8033 * libm/common/s_trunc.c: Likewise.
8034 * libm/common/sf_fdim.c: Likewise.
8035 * libm/common/sf_fma.c: Likewise.
8036 * libm/common/sf_fmax.c: Likewise.
8037 * libm/common/sf_fmin.c: Likewise.
8038 * libm/common/sf_lrint.c: Likewise.
8039 * libm/common/sf_lround.c: Likewise.
8040 * libm/common/sf_nearbyint.c: Likewise.
8041 * libm/common/sf_remquo.c: Likewise.
8042 * libm/common/sf_round.c: Likewise.
8043 * libm/common/sf_scalbln.c: Likewise.
8044 * libm/common/sf_trunc.c: Likewise.
8045 * libm/math/w_exp2.c: Likewise.
8046 * libm/math/w_tgamma.c: Likewise.
8047 * libm/math/wf_exp2.c: Likewise.
8048 * libm/math/wf_tgamma.c: Likewise.
8049 * libm/mathfp/s_exp2.c: Likewise.
8050 * libm/mathfp/s_tgamma.c: Likewise.
8051 * libm/mathfp/sf_exp2.c: Likewise.
8052 * libm/mathfp/sf_tgamma.c: Likewise.
8053 * libm/math/er_gamma.c: Fix return value.
8054 * libm/math/erf_gamma.c: Likewise.
8055 * libm/mathfp/er_gamma.c: Likewise.
8056 * libm/mathfp/erf_gamma.c: Likewise.
8057 * libc/include/math.h (!__STRICT_ANSI__): Include ISOC99-specific
8058 declarations and macros.
8059 Regenerated all Makefile.in, aclocal.m4 and configure files to
8060 use new libtool macros in top-level libtool.m4
8061
8062 2002-06-05 Jeff Johnston <jjohnstn@redhat.com>
8063
8064 * libc/include/string.h[__linux__]: Add strsignal prototype.
8065 * libc/include/sys/lock.h: New file with default locking support.
8066 * libc/include/sys/reent.h: Add signal buffer support for strsignal
8067 and psignal.
8068 * libc/posix/Makefile.am: Add support for readdir_r.c.
8069 * libc/posix/Makefile.in: Regenerated.
8070 * libc/posix/closedir.c: Add locking support and hash table cleanup.
8071 * libc/posix/opendir.c: Add lock support.
8072 * libc/posix/readdir.c: Ditto.
8073 * libc/posix/rewinddir.c: Ditto.
8074 * libc/posix/scandir.c: Ditto.
8075 * libc/posix/seekdir.c: Ditto.
8076 * libc/posix/telldir.c: Ditto plus add _cleanupdir routine to
8077 clean up leftover hash table entries.
8078 * libc/posix/readdir_r.c: New file.
8079 * libc/sys/linux/Makefile.am: Add psignal.c and strsignal.c support.
8080 * libc/sys/linux/Makefile.in: Regenerated.
8081 * libc/sys/linux/sys/dirent.h: Add dd_lock to DIR structure.
8082 * libc/sys/linux/sys/signal.h: Add psignal prototype.
8083 * libc/sys/linux/psignal.c: New file.
8084 * libc/sys/linux/strsignal.c: Ditto.
8085
8086 2002-06-03 Corinna Vinschen <corinna@vinschen.de>
8087
8088 * libc/include/sys/types.h: Don't define dev_t when compiling for
8089 Cygwin.
8090
8091 2002-05-31 Jeff Johnston <jjohnstn@redhat.com>
8092
8093 * libc/sys/linux/Makefile.am: Add sig.c and sigaction.c. Also
8094 make siglist.inc dependent on sig.c instead of signal.c.
8095 * libc/sys/linux/Makefile.in: Regenerated.
8096 * libc/sys/linux/sig.c: Rename from signal.c and change code to
8097 use NSIG instead of _NSIG.
8098 * libc/sys/linux/sigaction.c: New file.
8099 * libc/sys/linux/signal.c: Changed to be linux signal() function
8100 so as to override regular newlib default signal.c.
8101 * libc/sys/linux/machine/i386/Makefile.am: Remove sigset.c.
8102 * libc/sys/linux/machine/i386/Makefile.in: Regenerated.
8103 * libc/sys/linux/machine/i386/sigset.c: Moved to linux main directory.
8104 * libc/sys/linux/sigset.c: Moved from machine/i386 directory.
8105 * libc/sys/linux/sys/signal.h: Redefine NSIG to _NSIG and override
8106 default linux sigset_t typedef by defining it equal to __sigset_t.
8107 * libc/unix/sigset.c: Add check so code isn't compiled on systems
8108 with a sigset_t that isn't implemented with a single int.
8109
8110 2002-05-30 Jeff Johnston <jjohnstn@redhat.com>
8111
8112 * libc/sys/linux/Makefile.am: Add support for new files.
8113 * libc/sys/linux/Makefile.in: Regenerated.
8114 * libc/sys/linux/ids.c: Add __getuid weak alias for getuid.
8115 * libc/sys/linux/signal.c: Change to use real-time syscalls for
8116 sigsuspend, sigprocmask, and sigpending. Also remove sigaction as
8117 it is in a separate file now.
8118 * libc/sys/linux/machine/i386/Makefile.am
8119 * libc/sys/linux/machine/i386/Makefile.in
8120 * libc/sys/linux/sys/signal.h: Add include of <bits/signum.h>.
8121 * libc/sys/linux/sigaction.c: New file.
8122 * libc/sys/linux/sigqueue.c: Ditto.
8123 * libc/sys/linux/sigwait.c: Ditto.
8124 * libc/sys/linux/machine/i386/sigaction.c: Ditto.
8125 * libc/sys/linux/kernel_sigaction.h: Ditto.
8126
8127 2002-05-28 Jeff Johnston <jjohnstn@redhat.com>
8128
8129 * libc/sys/linux/Makefile.am: Add support for cfspeed.c and
8130 tcsendbrk.c.
8131 * libc/sys/linux/Makefile.in: Regenerated.
8132 * libc/sys/linux/termios.c: Add tcflow(), tcflush(),
8133 tcgetpgrp(), and tcsetpgrp() functions.
8134 * libc/sys/linux/sys/termios.h: Add include of machine/termios.h
8135 to get __MAX_BAUD rate.
8136 * libc/sys/linux/machine/i386/include/termios.h: New file.
8137 * libc/include/machine/termios.h: Ditto.
8138 * libc/sys/linux/cfspeed.c: Ditto.
8139 * libc/sys/linux/tcsendbrk.c: Ditto.
8140
8141 2002-05-24 Jeff Johnston <jjohnstn@redhat.com>
8142
8143 * libc/include/string.h: Add strnlen and strerror_r prototypes.
8144 * libc/string/Makefile.am: Add strnlen.c and strerror_r.c support.
8145 * libc/string/Makefile.in: Regenerated.
8146 * libc/string/strerror_r.c: New file.
8147 * libc/string/strnlen.c: New file.
8148 * libc/sys/linux/Makefile.am: Add rename.c.
8149 * libc/sys/linux/Makefile.in: Regenerated.
8150 * libc/sys/linux/rename.c: New file to override default rename.
8151
8152 2002-05-24 Thomas Fitzsimmons <fitzsim@redhat.com>
8153
8154 * libc/sys/linux/sys/cdefs.h: Add __weak_reference macros.
8155 * libc/sys/linux/sys/time.h: Add conversion macros.
8156 * libc/sys/linux/sys/types.h: Add FD_ macros. Include <bits/types.h>.
8157 * libc/sys/linux/ids.c: Add setresuid and syslog syscalls.
8158 * libc/sys/linux/gethostname.c: New file.
8159 * libc/sys/linux/seteuid.c: New file.
8160 * libc/sys/linux/sysctl.c: New file.
8161
8162 2002-05-23 Jeff Johnston <jjohnstn@redhat.com>
8163
8164 * libc/string/Makefile.am: Add support for strsep.c.
8165 * libc/string/Makefile.in: Regenerated.
8166 * libc/string/strsep.c: New file.
8167 * libc/string/strtok.c: Change to call __strtok_r service routine.
8168 * libc/string/strtok_r.c: Add __strtok_r routine which takes
8169 additional flag parameter regarding whether to skip leading delimeters.
8170 Change strtok_r to call __strtok_r.
8171
8172 2002-05-23 Gareth Pearce <tilps@hotmail.com>
8173
8174 * libc/stdio/Makefile.am: Modify to add setbuffer.c and setlinebuf.c.
8175 * libc/stdio/Makefile.in: Regenerated.
8176 * libc/stdio/setbuffer.c: New file.
8177 * libc/stdio/setlinebuf.c: New file.
8178
8179 2002-05-23 Jeff Johnston <jjohnstn@redhat.com>
8180
8181 * libc/sys/linux/Makefile.am: Add resource.c.
8182 * libc/sys/linux/Makefile.in: Regenerated.
8183 * libc/sys/linux/resource.c: New file.
8184 * libc/sys/linux/time.c: Add settimeofday, getitimer, and setitimer.
8185 * libc/sys/linux/machine/i386/Makefile.am: Remove syscalls.c.
8186 * libc/sys/linux/machine/i386/Makefile.in: Regenerated.
8187 * libc/sys/linux/machine/i386/syscalls.c: Removed as functions
8188 are now found in libc/sys/linux/resource.c.
8189
8190 2002-05-23 Jeff Johnston <jjohnstn@redhat.com>
8191
8192 * libc/include/string.h (bcmp, bcopy, bzero): Change prototypes
8193 to use void * pointers and comply with Single Unix spec.
8194 * libc/string/bcmp.c: Change to use void * instead of char *.
8195 * libc/string/bcopy.c: Ditto.
8196 * libc/string/bzero.c: Ditto.
8197
8198 2002-05-22 Jeff Johnston <jjohnstn@redhat.com>
8199
8200 * libc/sys/linux/shm_open.c: New file.
8201 * libc/sys/linux/shm_unlink.c: Ditto.
8202 * libc/sys/linux/Makefile.am: Add support for shm_open.c and
8203 shm_unlink.c.
8204 * libc/sys/linux/Makefile.in: Regenerated.
8205 * libc/sys/linux/sys/types.h: Add some additional checks to see
8206 if clock_t or time_t is already defined.
8207
8208 2002-05-22 Jeff Johnston <jjohnstn@redhat.com>
8209
8210 * Makefile.am: Don't pass $toollibdir down directly in
8211 AM_MAKEFLAGS as it causes all multilibs to use the same toollibdir.
8212 Pass it under the name: top_toollibdir.
8213 * Makefile.in: Regenerated.
8214
8215 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
8216
8217 * libc/include/sys/types.h: Revert previous patch.
8218
8219 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
8220
8221 * libc/include/sys/types.h: Include cygwin/types.h always under
8222 Cygwin, not only if _POSIX_THREADS is defined.
8223
8224 2002-05-21 Dhananjay Deshpande <dhananjayd@kpit.com>
8225
8226 * configure.host: Specify sys_dir=h8300hms for h8300-*-coff* target.
8227
8228 2002-05-17 Jeff Johnston <jjohnstn@redhat.com>
8229
8230 * Makefile.am: Copy and install headers from sys/machine/include
8231 directory. Also pass $toollibdir to lower-level directories.
8232 * Makefile.in: Regenerated.
8233 * libc/include/stdio.h[!_REENT_ONLY]: Change stdin, stdout, and
8234 stderr to use _REENT macro instead of _impure_ptr directly.
8235 * libc/include/sys/config.h[__i386__][__linux__]: Define
8236 __DYNAMIC_REENT__.
8237 * libc/include/sys/reent.h[!_REENT_ONLY]: Change _REENT macro to be
8238 call to __getreent() function if !__SINGLE_THREAD__ and
8239 __DYNAMIC_REENT__ is set.
8240 * libc/reent/Makefile.am: Add support for getreent.c.
8241 * libc/reent/Makefile.in: Regenerated.
8242 * libc/string/strerror.c: Add check if EOPNOTSUPP and ENOTSUP are same.
8243 * libc/sys/linux/Makefile.am: Add support for new files.
8244 * libc/sys/linux/configure.in: Add $EXTRA_DIRS variable.
8245 * libc/sys/linux/Makefile.in: Regenerated.
8246 * libc/sys/linux/configure: Ditto.
8247 * libc/sys/linux/io.c: Add poll syscall. Also weak-alias
8248 __close, __read, __write, __poll, __open, __lseek, __fcntl from
8249 their __libc_ counterparts.
8250 * libc/sys/linux/io64.c: Add __libc_ prefix to lseek64 and open64
8251 and weak-alias to regular names.
8252 * libc/sys/linux/pread64.c: Rename to __libc_pread64 and weak-alias
8253 to pread64 and __pread64.
8254 * libc/sys/linux/process.c: Weak_alias __libc_getpid to __getpid.
8255 * libc/sys/linux/pwrite64.c: Rename to __libc_pwrite64 and
8256 weak-alias to pwrite64.
8257 * libc/sys/linux/sched.c: Weak-alias __libc_sched_getparam,
8258 __libc_sched_getscheduler, __libc_sched_get_priority_max,
8259 __libc_sched_get_priority_min, and __libc_sched_setschedule to
8260 name with __ instead of __libc_.
8261 * libc/sys/linux/siglongjmp.c: Include <machine/weakalias.h>.
8262 Rename siglongjmp to __libc_siglongjmp and weak-alias to siglongjmp.
8263 Call __libc_longjmp instead of longjmp, from __libc_siglongjmp.
8264 * libc/sys/linux/signal.c: Rename raise to __libc_raise and weak-alias
8265 to raise.
8266 * libc/sys/linux/socket.c: Weak-alias __libc_connect to __connect and
8267 __libc_send to __send.
8268 * libc/sys/linux/time.c: Weak-alias __libc_gettimeofday to
8269 __gettimeofday.
8270 * libc/sys/linux/wait.c: Rename wait to __libc_wait and weak-alias
8271 it to wait. Rename wait3 to __libc_wait3 and weak-alias it to wait3.
8272 * libc/sys/linux/include/setjmp.h: Use __jmp_buf in sigjmp_buf
8273 type and typedef __jmp_buf to jmp_buf.
8274 * libc/sys/linux/machine/i386/Makefile.am: Add syscalls.c and
8275 setjmp.S.
8276 * libc/sys/linux/machine/i386/Makefile.in: Regenerated.
8277 * libc/sys/linux/machine/i386/crt0.c: Add support to clear .bss
8278 section.
8279 * libc/sys/linux/machine/i386/socketcall.h: Change to use __libc_
8280 prefix for function macros and then use weak_alias() to regular names.
8281 * libc/sys/linux/machine/i386/syscall.h: Ditto.
8282 * libc/sys/linux/sys/errno.h: Define EOPNOTSUP to be ENOTSUP.
8283 * libc/sys/linux/sys/stdio.h: Define _flockfile and _funlockfile
8284 to be flockfile() and funlockfile() respectively.
8285 * libc/sys/linux/sys/types.h
8286 * libc/reent/getreent.c: New file.
8287 * libc/sys/linux/flockfile.c: Ditto.
8288 * libc/sys/linux/funlockfile.c: Ditto.
8289 * libc/sys/linux/getreent.c: Ditto.
8290 * libc/sys/linux/pread.c: Ditto.
8291 * libc/sys/linux/pwrite.c: Ditto.
8292 * libc/sys/linux/raise.c: Ditto.
8293 * libc/sys/linux/system.c: Ditto.
8294 * libc/sys/linux/tcdrain.c: Ditto.
8295 * libc/sys/linux/machine/i386/i386mach.h: Ditto.
8296 * libc/sys/linux/machine/i386/setjmp.S: Ditto.
8297 * libc/sys/linux/machine/i386/syscalls.c: Ditto.
8298 * libc/sys/linux/machine/i386/weakalias.h: Ditto.
8299 * libc/sys/linux/machine/i386/include/setjmp.h: Ditto.
8300
8301 2002-05-14 Dhananjay Deshpande <dhananjayd@kpit.com>
8302
8303 * newlib/libc/sys/h8300hms/Makeile.am (lib_a_SOURCES): Add read.c.
8304 * newlib/libc/sys/h8300hms/read.c: New file. Magic trap 0xC8 for sim.
8305 * newlib/libc/sys/h8300hms/syscalls.c: Move _read() to read.c.
8306 * newlib/libs/sys/h8300hms/sys/syscall.h: New file.
8307
8308 Thu May 16 17:24:57 2002 J"orn Rennecke <joern.rennecke@superh.com>
8309
8310 * libc/machine/sh/strcpy.S (strcpy): Replace LITTLE_ENDIAN with
8311 __LITTLE_ENDIAN__. make sure r0 has right value at first loop
8312 exit point.
8313
8314 2002-05-15 Thomas Fitzsimmons <fitzsim@redhat.com>
8315
8316 * testsuite/lib/newlib.exp: Add newlib_include_flags to compile
8317 options when testing natively on i[3456]86-*-linux.
8318
8319 * testsuite/lib/checkoutput.exp (newlib_check_output): Output
8320 only one pass or fail per test file. Trim \r's from output
8321 values received from test programs. Remove support for named
8322 tests.
8323 * testsuite/newlib.locale/UTF-8.exp: Update to support new
8324 newlib_check_output behaviour.
8325 * testsuite/newlib.locale/UTF-8.c: Likewise.
8326
8327 2002-05-15 Jeff Johnston <jjohnstn@redhat.com>
8328
8329 * libc/include/stdlib.h: Add on_exit prototype.
8330 * libc/include/sys/reent.h (struct _atexit): Add argument array
8331 and bits to track type of exit routine to support both on_exit
8332 and atexit.
8333 (_REENT_INIT_PTR): Add missing fields that won't be zeroed out
8334 by default and change the setting of the atexit structure.
8335 (_REENT_INIT)[!_REENT_SMALL]: Remove extraneous end brace.
8336 * libc/stdlib/on_exit.c: New file.
8337 * libc/stdlib/Makefile.am: Add support for on_exit.
8338 * libc/stdlib/Makefile.in: Regenerated.
8339 * libc/stdlib/atexit.c: Change to initialize types field.
8340 * libc/stdlib/exit.c: Change to look at types field for each
8341 exit routine and either call an atexit-style or an on_exit-style
8342 routine accordingly.
8343
8344 2002-05-13 Jeff Johnston <jjohnstn@redhat.com>
8345
8346 * libc/machine/powerpc/vfprintf.c(__VFPRINTF_R)[__ALTIVEC__]: Don't
8347 allow v specifier with n or L specifiers. For vector c format,
8348 move tmp declaration to the top.
8349
8350 2002-05-13 Jeff Johnston <jjohnstn@redhat.com>
8351
8352 * libc/machine/powerpc/vfprintf.c(__VFPRINTF_R)[__ALTIVEC__]: Restore
8353 the original format specifier when looping for vectors to compensate
8354 for any changes made in vector %g format processing.
8355 Also add syntax checking for various invalid scenarios
8356 involving vector format extensions.
8357 * libc/machine/powerpc/vfscanf.c(__VFSCANF_R)[__ALTIVEC__]: Fix
8358 return code setting for vector formats. Also treat vector
8359 separator mismatch as a match error instead of an input error.
8360 Perform some syntax checking for vector formats.
8361
8362 2002-05-10 Mark Bradshaw <bradshaw@staff.crosswalk.com>
8363
8364 * libc/include/string.h (!__STRICT_ANSI__): Add strlcat and strlcpy.
8365 * libc/string/Makefile.am: Add strlcat.c and strlcpy.c.
8366 * libc/string/strlcat.c: New file.
8367 * libc/string/strlcpy.c: New file.
8368
8369 2002-05-10 Jeff Johnston <jjohnstn@redhat.com>
8370
8371 * libc/string/strchr.c: Fix comment typo.
8372
8373 2002-05-08 Thomas Fitzsimmons <fitzsim@redhat.com>
8374
8375 * acinclude.m4: Add support for --enable-newlib-multithread.
8376 * configure.host (newlib_cflags): Add -D__SINGLE_THREAD__ if
8377 --enable-newlib-multithread=no.
8378
8379 * libc/stdio/getc_u.c: New file.
8380 * libc/stdio/getchar_u.c: New file.
8381 * libc/stdio/putc_u.c: New file.
8382 * libc/stdio/putchar_u.c: New file.
8383 * libc/include/stdio.h: Add declarations for getc_unlocked,
8384 getchar_unlocked, putc_unlocked and putchar_unlocked.
8385 * libc/stdio/Makefile.am (LIB_SOURCES): Add new files.
8386 (CHEWOUT_FILES): Add new files' .def's.
8387 * libc/stdio/putchar.c (_putchar_r): Replace __sputc with putc.
8388
8389 Wed May 8 17:47:35 2002 J"orn Rennecke <joern.rennecke@superh.com>
8390
8391 * libc/machine/sh/memset.S (memset, __SHMEDIA__ code):
8392 Also handle as single quad word when destination ends at last
8393 byte of first quad word. Fix byte selection in single quad code.
8394
8395 2002-05-07 Thomas Fitzsimmons <fitzsim@redhat.com>
8396
8397 * libc/include/sys/stdio.h: New file.
8398 * libc/sys/linux/sys/stdio.h: New file.
8399 * libc/include/stdio.h: Add declarations for flockfile,
8400 ftrylockfile, and funlockfile. Include <sys/stdio.h>.
8401 * libc/stdio/clearerr.c: Add file locking.
8402 * libc/stdio/fclose.c: Likewise.
8403 * libc/stdio/feof.c: Likewise.
8404 * libc/stdio/ferror.c: Likewise.
8405 * libc/stdio/fflush.c: Likewise.
8406 * libc/stdio/fgetc.c: Likewise.
8407 * libc/stdio/fgetpos.c: Likewise.
8408 * libc/stdio/fgets.c: Likewise.
8409 * libc/stdio/fileno.c: Likewise.
8410 * libc/stdio/fputc.c: Likewise.
8411 * libc/stdio/fputs.c: Likewise.
8412 * libc/stdio/fread.c: Likewise.
8413 * libc/stdio/freopen.c: Likewise.
8414 * libc/stdio/fseek.c: Likewise.
8415 * libc/stdio/ftell.c: Likewise.
8416 * libc/stdio/fwrite.c: Likewise.
8417 * libc/stdio/getc.c: Likewise.
8418 * libc/stdio/putc.c: Likewise.
8419 * libc/stdio/setvbuf.c: Likewise.
8420 * libc/stdio/ungetc.c: Likewise.
8421 * libc/stdio/vfprintf.c: Likewise.
8422
8423 2002-05-06 Jeff Johnston <jjohnstn@redhat.com>
8424
8425 * libc/machine/powerpc/vfprintf.c[__ALTIVEC__]: Add vector
8426 support for 'p' format. Fix code to print bytes for vector
8427 integer formats that do not specify 'h' or 'l'.
8428 * libc/machine/powerpc/vfscanf.c[__ALTIVEC__]: Add vector support
8429 for 'p' specifier. Fix code to scan 16 bytes for vector integer
8430 formats that do not specify 'h' or 'l'.
8431
8432 * libc/include/stdlib.h (a64l, l64a, _l64a_r): Added prototypes.
8433
8434 2002-05-06 Nick Clifton <nickc@cambridge.redhat.com>
8435
8436 * libc/sys/arm/syscalls.c (_rename): Add parameter names.
8437 (_sbrk): Add cast of return value.
8438
8439 2002-05-06 Jeff Johnston <jjohnstn@redhat.com>
8440
8441 * libc/include/sys/reent.h (_l64a_buf): New reentrant area.
8442 (_REENT_L64A_BUF): New macro for accessing area.
8443 * libc/stdlib/Makefile.am: Add a64l.c and l64a.c.
8444 * libc/stdlib/Makefile.in: Regenerated.
8445 * libc/stdlib/a64l.c: New file.
8446 * libc/stdlib/l64a.c: New file.
8447
8448 2002-05-06 Jeff Johnston <jjohnstn@redhat.com>
8449
8450 * libc/unix/pread.c: Fix typo for _pread_r.
8451 * libc/unix/pwrite.c: Fix type for _pwrite_r.
8452 * libc/sys/linux/pread64.c: Fix typo for read syscall.
8453 * libc/sys/linux/pwrite64.c: Fix typo for write syscall.
8454
8455 2002-05-03 Christopher Faylor <cgf@redhat.com>
8456
8457 * libc/include/sys/unistd.h: Define getdomainname under cygwin.
8458
8459 2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8460
8461 * configure.in (CC_FOR_NEWLIB): Change -isystem's to -I's.
8462
8463 2002-05-01 Christopher Faylor <cgf@redhat.com>
8464
8465 * utmp.h: Define more UNIX constants.
8466
8467 2002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8468
8469 * Makefile.am: Add support for checking multilibs.
8470
8471 * libc/Makefile.am (SUBLIBS): Add LIBC_EXTRA_LIB.
8472 (SUBDEFS): Add LIBC_EXTRA_DEF.
8473 * libc/configure.in (LIBC_EXTRA_LIB): New variable.
8474 (LIBC_EXTRA_DEF): Likewise.
8475 (extra_dir): Likewise.
8476 * libc/machine/xscale/machine: New directory.
8477 * libc/machine/xscale/machine/profile.h: New file.
8478
8479 * Makefile.am (site.exp): Remove newlib_cflags. Add
8480 multibuildtop.
8481 * testsuite/newlib.locale/UTF-8.c: Change fprintf's to printf's.
8482 * testsuite/lib/flags.exp: New file.
8483 * testsuite/lib/newlib.exp: Load flags.exp.
8484 (newlib_target_compile): Remove libgloss directory references.
8485 (newlib_init): Remove newlib_cflags references.
8486
8487 2002-04-30 Thomas Fitzsimmons <fitzsim@redhat.com>
8488
8489 * testsuite/lib/newlib.exp (newlib_target_compile): Change
8490 method of finding libgloss_target_dir.
8491
8492 * Makefile.am (site.exp): Change host_alias, host_triplet,
8493 target_alias, target_triplet to refer to gcc's host and target
8494 variables (newlib's build and host variables).
8495 * testsuite/lib/newlib.exp (newlib_init): Change build
8496 references to host references, host references to target
8497 references to reflect Makefile.am changes.
8498 (newlib_target_compile): Likewise.
8499 (newlib_finish): Likewise.
8500
8501 2002-04-29 Jeff Johnston <jjohnstn@redhat.com>
8502
8503 * libc/sys/linux/io64.c (fstat64, lstat64): New syscalls added.
8504
8505 2002-04-29 Jonathan Larmour <jlarmour@redhat.com>
8506
8507 * libc/sys/arm/syscalls.c (_rename): New function. Just a stub.
8508 (_system): New function. Ditto.
8509 * libc/stdlib/system.c (_system_r): Call _system if HAVE_SYSTEM.
8510 * configure.host: define HAVE_SYSTEM and HAVE_RENAME for xscale
8511 targets.
8512
8513 2002-04-29 Jeff Johnston <jjohnstn@redhat.com>
8514
8515 * libc/include/sys/unistd.h (pread, pwrite): Added prototypes.
8516 * libc/unix/Makefile.am: Add pread.c and pwrite.c.
8517 * libc/sys/linux/Makefile.am: Add pread64.c and pwrite64.c.
8518 * libc/sys/linux/Makefile.in: Regenerated.
8519 * libc/unix/Makefile.in: Ditto.
8520 * libc/sys/linux/pread64.c: New file.
8521 * libc/sys/linux/pwrite64.c: Ditto.
8522 * libc/unix/pread.c: Ditto.
8523 * libc/unix/pwrite.c: Ditto.
8524
8525 2002-04-26 Jeff Johnston <jjohnstn@redhat.com>
8526
8527 * libc/sys/linux/Makefile.am: Add io64.c.
8528 * libc/sys/linux/Makefile.in: Regenerated.
8529 * libc/sys/linux/io.c(mkfifo, fsync, fdatasync): Added syscalls.
8530 * libc/sys/linux/signal.c (sigwaitinfo, sigtimedwait): Ditto.
8531 * libc/sys/linux/io64.c: New file.
8532
8533 2002-04-26 Jeff Johnston <jjohnstn@redhat.com>
8534
8535 * configure.in (CC_FOR_NEWLIB): New variable that
8536 bases on $(CC) and adds targ-include and libc/include as
8537 -isystem directives if they are not already part of $(CC).
8538 * Makefile.am (AM_MAKEFLAGS): Change setting of CC to equal
8539 $(CC_FOR_NEWLIB).
8540 * configure: Regenerated.
8541 * Makefile.in: Ditto.
8542
8543 2002-04-25 Jeff Johnston <jjohnstn@redhat.com>
8544
8545 * libc/sys/linux/Makefile.am: Add support for sched.c.
8546 * libc/sys/linux/Makefile.in: Regenerated.
8547 * libc/sys/linux/sched.c: New file.
8548 * libc/sys/linux/sys/types.h: Add struct timespec.
8549
8550 2002-04-25 Thomas Fitzsimmons <fitzsim@redhat.com>
8551
8552 * configure.in (CC_FOR_BUILD): Set to gcc whether
8553 cross-compiling or not.
8554 (CC): Add -isystem's for targ-include and libc/include when they
8555 do not already appear in CC.
8556
8557 2002-04-24 Thomas Fitzsimmons <fitzsim@redhat.com>
8558
8559 * Makefile.am (check-DEJAGNU): New target.
8560 (site.exp): Likewise.
8561 * acinclude.m4 (NEWLIB_CONFIGURE): Replace AC_CANONICAL_HOST
8562 with AC_CANONICAL_SYSTEM. Remove AC_CANONICAL_BUILD.
8563 * libc/locale/locale.c (_setlocale_r): Add UTF-8 support.
8564 * libc/stdlib/mbtowc_r.c (_mbtowc_r): Likewise.
8565 * libc/stdlib/wctomb_r.c (_wctomb_r): Likewise.
8566 * testsuite: New directory.
8567 * testsuite/config: Likewise.
8568 * testsuite/lib: Likewise.
8569 * testsuite/newlib.locale: Likewise.
8570 * testsuite/newlib.string: Likewise.
8571 * testsuite/config/default.exp: New file.
8572 * testsuite/lib/checkoutput.exp: New file.
8573 * testsuite/lib/newlib.exp: New file.
8574 * testsuite/lib/passfail.exp: New file.
8575 * testsuite/newlib.locale/UTF-8.c: New file.
8576 * testsuite/newlib.locale/UTF-8.exp: New file.
8577 * testsuite/newlib.locale/locale.exp: New file.
8578 * testsuite/newlib.string/string.exp: New file.
8579 * testsuite/newlib.string/tstring.c: New file.
8580
8581 2002-04-23 Jeff Johnston <jjohnstn@redhat.com>
8582
8583 * libc/include/machine/types.h (__pid_t, __off_t, __loff_t): Added.
8584 * libc/sys/linux/Makefile.am: Add support for mmap.c.
8585 * libc/sys/linux/Makefile.in: Regenerated.
8586 * libc/sys/linux/mmap.c: New file.
8587 * libc/sys/linux/machine/i386/syscall.h: Add _syscall6 macro.
8588 * libc/sys/linux/sys/types.h (pid_t, off_t, loff_t): Added.
8589
8590 2002-04-22 Thomas Fitzsimmons <fitzsim@redhat.com>
8591
8592 * acinclude.m4 (newlib_cflags): Remove include directories that
8593 are already specified in the top-level configure.in's FLAGS_FOR_TARGET.
8594
8595 2002-04-19 Bill Siegmund <ctc-dsl@pacbell.net>
8596
8597 * libc/machine/xscale/memchr.c: Don't use multi-line strings.
8598 * libc/machine/xscale/memcmp.c: Ditto.
8599 * libc/machine/xscale/memcpy.c: Ditto.
8600 * libc/machine/xscale/memmove.c: Ditto.
8601 * libc/machine/xscale/memset.c: Ditto.
8602 * libc/machine/xscale/strchr.c: Ditto.
8603 * libc/machine/xscale/strcmp.c: Ditto.
8604 * libc/machine/xscale/strcpy.c: Ditto.
8605 * libc/machine/xscale/strlen.c: Ditto.
8606
8607 2002-04-19 Alexandre Oliva <aoliva@redhat.com>
8608
8609 * libc/include/sys/config.h: Remove include of <limits.h>.
8610 (__INT_MAX__, __LONG_MAX__): Define like GCC's limits.h would
8611 define INT_MAX and LONG_MAX. Use them in tests.
8612
8613 2002-04-19 Jeff Johnston <jjohnstn@redhat.com>
8614
8615 * configure.host: Add support for powerpc-eabialtivec*.
8616 * libc/include/malloc.h: Add include of <machine/malloc.h>.
8617 * libc/include/stdlib.h: Add include of <machine/stdlib.h>.
8618 * libc/include/machine/malloc.h: New file.
8619 * libc/include/machine/stdlib.h: Ditto.
8620 * libc/include/machine/setjmp.h: Add support for powerpc altivec.
8621 * libc/machine/powerpc/Makefile.am: Add conditional objects and
8622 sources based on configuration.
8623 * libc/machine/powerpc/Makefile.in: Regenerated.
8624 * libc/machine/powerpc/configure: Ditto.
8625 * libc/machine/powerpc/configure.in: Add check for
8626 powerpc-eabialtivec* in which case add in additional source files.
8627 * libc/machine/powerpc/setjmp.S: Add altivec support.
8628 * libc/machine/powerpc/vec_calloc.c: New file.
8629 * libc/machine/powerpc/vec_free.c: Ditto.
8630 * libc/machine/powerpc/vec_malloc.c: Ditto.
8631 * libc/machine/powerpc/vec_mallocr.c: Ditto.
8632 * libc/machine/powerpc/vec_realloc.c: Ditto.
8633 * libc/machine/powerpc/machine/malloc.h: Ditto.
8634 * libc/machine/powerpc/machine/stdlib.h: Ditto.
8635 * libc/machine/powerpc/vfprintf.c: New file that is vfprintf.c
8636 with added altivec format specifiers.
8637 * libc/machine/powerpc/vfscanf.c: New file that is vfscanf.c with
8638 added altivec format specifiers.
8639
8640 2002-04-19 Joel Sherrill <joel@OARcorp.com>
8641
8642 * libs/sys/rtems/crt0.c: Satisfy gcc's references to libc functions
8643 while autoconf is trying to link main(){}.
8644
8645 2002-04-17 Jeff Johnston <jjohnstn@redhat.com>
8646
8647 * libc/sys/linux/signal.c: Remove include of <bits/sigset.h>.
8648 * libc/sys/linux/sys/signal.h: Add include of <bits/sigset.h>.
8649
8650 2002-04-17 Jeff Johnston <jjohnstn@redhat.com>
8651
8652 * libc/time/time.tex: Add tzset info.
8653
8654 2002-04-17 Jeff Johnston <jjohnstn@redhat.com>
8655
8656 * libc/include/time.h (tzset, _tzset_r): Added prototypes.
8657 (strptime): Moved prototype to be within !__STRICT_ANSI__.
8658 (_tzname, _daylight, _timezone): No long __CYGWIN__ only.
8659 (tzname): Defined for all platforms.
8660 (daylight, timezone): Defined only for CYGWIN.
8661 * libc/sys/linux/machine/i386/crt0.c: Add call to tzset() after
8662 environment set up.
8663 * libc/stdlib/setenv_r.c (_setenv_r): Call tzset() if the TZ
8664 environment variable is set.
8665 * libc/time/Makefile.am: Add support for tzset.c, tzlock.c, and
8666 tzset_r.c.
8667 * libc/time/Makefile.in: Regenerated.
8668 * libc/time/gmtime.c (gmtime): Changed to call gmtime_r.
8669 * libc/time/gmtime_r.c (gmtime_r): Changed to call _mktm_r.
8670 * libc/time/lcltime_r.c (lcltime_r): Ditto.
8671 * libc/time/local.h: New local header file.
8672 * libc/time/mktime.c (mktime): Add timezone support.
8673 * libc/time/mktm_r.c: New file which is the common engine
8674 for gmtime_r and lcltime_r. This code has timezone support.
8675 * libc/time/strftime.c (strftime): Add %Z timezone support.
8676 * libc/time/tzlock.c: New file containing timezone lock stubs.
8677 * libc/time/tzset.c: New file containing tzset() routine.
8678 * libc/time/tzset_r.c: New file containing _tzset_r and
8679 internal routine for calculating timezone changes for specified year.
8680
8681 2002-04-17 Thomas Fitzsimmons <fitzsim@redhat.com>
8682
8683 * configure.in (CRT0_DIR): Set to libc/.
8684 (CRT1_DIR): Set to ${crt1_dir}/ if crt1_dir is non-empty.
8685 * Makefile.am: Change all occurrences of $(CRT0_DIR)/$(CRT0) to
8686 $(CRT0_DIR)$(CRT0) to prevent make warnings. Likewise for
8687 $(CRT1_DIR)/$(CRT1).
8688 * libc/machine/xstormy16/Makefile.in: Regenerated.
8689 * libc/machine/xstormy16/aclocal.m4: Regenerated.
8690 * libc/machine/xstormy16/configure: Regenerated.
8691
8692 2002-04-13 Alexandre Oliva <aoliva@redhat.com>
8693
8694 * libc/stdlib/mallocr.c (malloc_extend_top): If correction sbrk
8695 fails, don't bail out, and try to correct next time.
8696
8697 * libc/include/sys/config.h: Include limits.h.
8698
8699 2002-04-12 Eric Norum <eric.norum@usask.com>
8700
8701 * libc/sys/rtems/crt0.c (rtems_gxx_mutex_init): Dummy
8702 routine to allow autoconf to determine that building executables
8703 for rtems works.
8704 (rtems_gxx_mutex_lock, rtems_gxx_mutex_unlock): Ditto.
8705 (rtems_gxx_mutex_once): Ditto.
8706
8707 2002-04-09 Tom Rix <trix@redhat.com>
8708
8709 * libc/include/sys/reent.h (_REENT_INIT_PTR): Fix typo.
8710
8711 2002-04-09 Mark Bradshaw <bradshaw@staff.crosswalk.com>
8712
8713 * libc/include/time.h: Fix strptime declaration.
8714 * libc/time/Makefile.am: Add strptime.c.
8715 * libc/time/Makefile.in: Regenerated.
8716 * libc/time/strptime.c: New file.
8717
8718 2002-04-08 Jeff Johnston <jjohnstn@redhat.com>
8719
8720 * libc/sys/linux/include/setjmp.h: Add sigjmp_buf type,
8721 siglongjmp prototype, and sigsetjmp macro definition.
8722 * libc/sys/linux/siglongjmp.c: New file.
8723 * libc/sys/linux/Makefile.am: Add support for siglongjmp.
8724 * libc/sys/linux/Makefile.in: Regenerated.
8725
8726 2002-04-04 Jeff Johnston <jjohnstn@redhat.com>
8727
8728 * Makefile.am: Add support for installing crt1.o if one exists.
8729 * configure.host: Specify crt1.o for linux.
8730 * configure.in: Expose CRT1 and CRT1_DIR for Makefile.am to use.
8731 * Makefile.in: Regenerated.
8732 * configure: Ditto.
8733 * libc/include/sys/unistd.h (_SC_STREAM_MAX, _SC_PRIORITY_SCHEDULING):
8734 Added for non-Cygwin, non-RTEMS configurations.
8735 * libc/sys/linux/Makefile.am: Add support for crt1 and sysconf.
8736 * libc/sys/linux/Makefile.in: Regenerated.
8737 * libc/sys/linux/crt1.c: New empty file to override one defaulted
8738 by gcc. This fixes problem with reconfiguring linux newlib build.
8739 * libc/sys/linux/sysconf.c: New file.
8740
8741 2002-04-03 Jeff Johnston <jjohnstn@redhat.com>
8742
8743 * configure.host: Add support for machine subdirectory of
8744 sys subdirectory.
8745 * configure.in: Add check for sys machine subdirectory.
8746 * Makefile.am: Ditto.
8747 * configure: Regenerated.
8748 * Makefile.in: Ditto.
8749 * libc/sys/linux/crt0.c: Moved to machine/i386 directory.
8750 * libc/sys/linux/sys/syscall.h: Ditto.
8751 * libc/sys/linux/sleep.c: New file.
8752 * libc/sys/linux/socket.c: Ditto.
8753 * libc/sys/linux/sockops.h: Ditto.
8754 * libc/sys/linux/stack.c: Ditto.
8755 * libc/sys/linux/usleep.c: Ditto.
8756 * libc/sys/linux/machine/Makefile.am: Ditto.
8757 * libc/sys/linux/machine/Makefile.in: Ditto.
8758 * libc/sys/linux/machine/aclocal.m4: Ditto.
8759 * libc/sys/linux/machine/configure: Ditto.
8760 * libc/sys/linux/machine/configure.in: Ditto.
8761 * libc/sys/linux/machine/i386/Makefile.am: Ditto.
8762 * libc/sys/linux/machine/i386/Makefile.in: Ditto.
8763 * libc/sys/linux/machine/i386/aclocal.m4: Ditto.
8764 * libc/sys/linux/machine/i386/configure: Ditto.
8765 * libc/sys/linux/machine/i386/configure.in: Ditto.
8766 * libc/sys/linux/machine/i386/crt0.c: Ditto.
8767 * libc/sys/linux/machine/i386/sigset.c: Ditto.
8768 * libc/sys/linux/machine/i386/sigstack.h: Ditto.
8769 * libc/sys/linux/machine/i386/socketcall.h: Ditto.
8770 * libc/sys/linux/machine/i386/syscall.h: Ditto.
8771 * libc/sys/linux/sys/select.h: Ditto.
8772 * libc/sys/linux/configure.in: Add support for machine directory.
8773 * libc/sys/linux/Makefile.am: Ditto plus add new files above.
8774 * libc/sys/linux/Makefile.in: Regenerated.
8775 * libc/sys/linux/configure: Ditto.
8776 * libc/sys/linux/brk.c: Use machine/syscall.h instead of sys/syscall.h.
8777 * libc/sys/linux/inode.c: Ditto.
8778 * libc/sys/linux/linux.c: Ditto.
8779 * libc/sys/linux/process.c: Ditto.
8780 * libc/sys/linux/systat.c: Ditto.
8781 * libc/sys/linux/time.c: Ditto.
8782 * libc/sys/linux/wait.c: Ditto.
8783 * libc/sys/linux/ids.c: Change header plus add setfsgid/setfsuid.
8784 * libc/sys/linux/io.c: Change header plus add readv/writev.
8785 * libc/sys/linux/signal.c: Change header plus change sigsuspend to
8786 use __sigsuspend syscall.
8787 * libc/sys/linux/select.c: Change header plus change select to
8788 use _newselect syscall.
8789 * libc/sys/linux/sys/cdefs.h: Add a number of standard definitions
8790 used by glibc header files.
8791 * libc/sys/linux/sys/types.h: Add __socklen_t and __useconds_t
8792 types.
8793
8794 2002-04-01 Jeff Johnston <jjohnstn@redhat.com>
8795
8796 * libc/include/sys/reent.h (_REENT_INIT_PTR): New macro for
8797 initializing a struct _reent that has been dynamically allocated.
8798 (_REENT_CHECK_MISC): New macro that checks _misc struct for
8799 _REENT_SMALL and does nothing otherwise.
8800 (_REENT_STRTOK_LAST): New macro for reentrant strtok.
8801 (_REENT_MBLEN_STATE): New macro for reentrant mblen.
8802 (_REENT_MBTOWC_STATE): New macro for reentrant mbtowc.
8803 (_REENT_WCTOMB_STATE): New macro for reentrant wctomb.
8804 [_REENT_SMALL](struct _misc_reent): New structure containing
8805 miscellaneous reentrant areas needed by newlib.
8806 [_REENT_SMALL](struct _reent): Add _misc pointer.
8807 [_REENT_SMALL](_REENT_INIT_MISC): New macro.
8808 * libc/string/strtok (strtok): Change to use _REENT_CHECK_MISC
8809 and _REENT_STRTOK_LAST macros.
8810 * libc/stdlib/mblen (mblen): Change to use _REENT_CHECK_MISC
8811 and _REENT_MBLEN_STATE macros.
8812 * libc/stdlib/mbtowc (mbtowc): Change to use _REENT_CHECK_MISC
8813 and _REENT_MBTOWC_STATE macros.
8814 * libc/stdlib/wctomb (wctomb): Change to use _REENT_CHECK_MISC
8815 and _REENT_WCTOMB_STATE macros.
8816
8817 2002-04-01 Till Straumann <strauman@SLAC.Stanford.EDU>
8818
8819 * libc/stdlib/getenv_r.c (_findenv_r): Add missing ENV_UNLOCK.
8820
8821 Wed Mar 27 07:34:44 2002 Jason Tishler <jason@tishler.net>
8822
8823 * libc/include/sys/features.h (_POSIX_SEMAPHORES): New Cygwin define.
8824
8825 Tue Mar 26 17:17:10 2002 J"orn Rennecke <joern.rennecke@superh.com>
8826
8827 * libc/machine/sh/memcpy.S (Large): Fix alignment rounding.
8828 Store high part of leading bytes too.
8829
8830 2002-03-22 Richard Sandiford <rsandifo@redhat.com>
8831
8832 * libm/math/ef_hypot.c: Increase scale factor to 68.
8833
8834 2002-03-13 Alexandre Oliva <aoliva@redhat.com>
8835
8836 * libc/machine/mips/strlen.c (strlen) [__mips16]: Fix off-by-two
8837 error.
8838
8839 2002-03-12 Jeff Johnston <jjohnstn@redhat.com>
8840
8841 * libc/sys/go32/access.c: Change license to relaxed license
8842 used in identical file throughout newlib/libgloss.
8843
8844 2002-03-12 Richard Earnshaw <rearnsha@arm.com>
8845
8846 * libc/sys/arm/access.c: New file.
8847 * libc/sys/arm/Makefile.am (lib_a_SOURCES): Add access.c.
8848 * libc/sys/arm/Makefile.in: Regenerate.
8849 * libc/sys/arm/syscalls.c (_stat): New function.
8850
8851 2002-03-11 Michael Meissner <meissner@redhat.com>
8852
8853 * libc/machine/mips/Makefile.am (lib_a_SOURCES): Add Mips specific
8854 variants strlen.c, strcmp.c, strncpy.c, memset.c and memcpy.c.
8855 * libc/machine/mips/Makefile.in: Regenerate.
8856 * libc/machine/mips/memcpy.c: New file, optimized for MIPS.
8857 * libc/machine/mips/memset.c: Dito.
8858 * libc/machine/mips/strcmp.c: Dito.
8859 * libc/machine/mips/strlen.c: Dito.
8860 * libc/machine/mips/strncmp.c: Dito.
8861
8862 2002-03-06 Jeff Johnston <jjohnstn@redhat.com>
8863
8864 * libc/machine/i386/Makefile.am: Add $(oext) for setjmp
8865 object so it works for shared library or statici library.
8866 2002-04-17 Jeff Johnston <jjohnstn@redhat.com>
8867
8868 * libc/include/time.h (tzset, _tzset_r): Added prototypes.
8869 (strptime): Moved prototype to be within !__STRICT_ANSI__.
8870 (_tzname, _daylight, _timezone): No long __CYGWIN__ only.
8871 (tzname): Defined for all platforms.
8872 (daylight, timezone): Defined only for CYGWIN.
8873 * libc/sys/linux/machine/i386/crt0.c: Add call to tzset() after
8874 environment set up.
8875 * libc/stdlib/setenv_r.c (_setenv_r): Call tzset() if the TZ
8876 environment variable is set.
8877 * libc/time/Makefile.am: Add support for tzset.c, tzlock.c, and
8878 tzset_r.c.
8879 * libc/time/Makefile.in: Regenerated.
8880 * libc/time/gmtime.c (gmtime): Changed to call gmtime_r.
8881 * libc/time/gmtime_r.c (gmtime_r): Changed to call _mktm_r.
8882 * libc/time/lcltime_r.c (lcltime_r): Ditto.
8883 * libc/time/local.h: New local header file.
8884 * libc/time/mktime.c (mktime): Add timezone support.
8885 * libc/time/mktm_r.c: New file which is the common engine
8886 for gmtime_r and lcltime_r. This code has timezone support.
8887 * libc/time/strftime.c (strftime): Add %Z timezone support.
8888 * libc/time/tzlock.c: New file containing timezone lock stubs.
8889 * libc/time/tzset.c: New file containing tzset() routine.
8890 * libc/time/tzset_r.c: New file containing _tzset_r and
8891 internal routine for calculating timezone changes for specified year.
8892
8893 2002-04-17 Thomas Fitzsimmons <fitzsim@redhat.com>
8894
8895 * configure.in (CRT0_DIR): Set to libc/.
8896 (CRT1_DIR): Set to ${crt1_dir}/ if crt1_dir is non-empty.
8897 * Makefile.am: Change all occurrences of $(CRT0_DIR)/$(CRT0) to
8898 $(CRT0_DIR)$(CRT0) to prevent make warnings. Likewise for
8899 $(CRT1_DIR)/$(CRT1).
8900 * libc/machine/xstormy16/Makefile.in: Regenerated.
8901 * libc/machine/xstormy16/aclocal.m4: Regenerated.
8902 * libc/machine/xstormy16/configure: Regenerated.
8903
8904 2002-04-13 Alexandre Oliva <aoliva@redhat.com>
8905
8906 * libc/stdlib/mallocr.c (malloc_extend_top): If correction sbrk
8907 fails, don't bail out, and try to correct next time.
8908
8909 * libc/include/sys/config.h: Include limits.h.
8910
8911 2002-04-12 Eric Norum <eric.norum@usask.com>
8912
8913 * libc/sys/rtems/crt0.c (rtems_gxx_mutex_init): Dummy
8914 routine to allow autoconf to determine that building executables
8915 for rtems works.
8916 (rtems_gxx_mutex_lock, rtems_gxx_mutex_unlock): Ditto.
8917 (rtems_gxx_mutex_once): Ditto.
8918
8919 2002-04-09 Tom Rix <trix@redhat.com>
8920
8921 * libc/include/sys/reent.h (_REENT_INIT_PTR): Fix typo.
8922
8923 2002-04-09 Mark Bradshaw <bradshaw@staff.crosswalk.com>
8924
8925 * libc/include/time.h: Fix strptime declaration.
8926 * libc/time/Makefile.am: Add strptime.c.
8927 * libc/time/Makefile.in: Regenerated.
8928 * libc/time/strptime.c: New file.
8929
8930 2002-04-08 Jeff Johnston <jjohnstn@redhat.com>
8931
8932 * libc/sys/linux/include/setjmp.h: Add sigjmp_buf type,
8933 siglongjmp prototype, and sigsetjmp macro definition.
8934 * libc/sys/linux/siglongjmp.c: New file.
8935 * libc/sys/linux/Makefile.am: Add support for siglongjmp.
8936 * libc/sys/linux/Makefile.in: Regenerated.
8937
8938 2002-04-04 Jeff Johnston <jjohnstn@redhat.com>
8939
8940 * Makefile.am: Add support for installing crt1.o if one exists.
8941 * configure.host: Specify crt1.o for linux.
8942 * configure.in: Expose CRT1 and CRT1_DIR for Makefile.am to use.
8943 * Makefile.in: Regenerated.
8944 * configure: Ditto.
8945 * libc/include/sys/unistd.h (_SC_STREAM_MAX, _SC_PRIORITY_SCHEDULING):
8946 Added for non-Cygwin, non-RTEMS configurations.
8947 * libc/sys/linux/Makefile.am: Add support for crt1 and sysconf.
8948 * libc/sys/linux/Makefile.in: Regenerated.
8949 * libc/sys/linux/crt1.c: New empty file to override one defaulted
8950 by gcc. This fixes problem with reconfiguring linux newlib build.
8951 * libc/sys/linux/sysconf.c: New file.
8952
8953 2002-04-03 Jeff Johnston <jjohnstn@redhat.com>
8954
8955 * configure.host: Add support for machine subdirectory of
8956 sys subdirectory.
8957 * configure.in: Add check for sys machine subdirectory.
8958 * Makefile.am: Ditto.
8959 * configure: Regenerated.
8960 * Makefile.in: Ditto.
8961 * libc/sys/linux/crt0.c: Moved to machine/i386 directory.
8962 * libc/sys/linux/sys/syscall.h: Ditto.
8963 * libc/sys/linux/sleep.c: New file.
8964 * libc/sys/linux/socket.c: Ditto.
8965 * libc/sys/linux/sockops.h: Ditto.
8966 * libc/sys/linux/stack.c: Ditto.
8967 * libc/sys/linux/usleep.c: Ditto.
8968 * libc/sys/linux/machine/Makefile.am: Ditto.
8969 * libc/sys/linux/machine/Makefile.in: Ditto.
8970 * libc/sys/linux/machine/aclocal.m4: Ditto.
8971 * libc/sys/linux/machine/configure: Ditto.
8972 * libc/sys/linux/machine/configure.in: Ditto.
8973 * libc/sys/linux/machine/i386/Makefile.am: Ditto.
8974 * libc/sys/linux/machine/i386/Makefile.in: Ditto.
8975 * libc/sys/linux/machine/i386/aclocal.m4: Ditto.
8976 * libc/sys/linux/machine/i386/configure: Ditto.
8977 * libc/sys/linux/machine/i386/configure.in: Ditto.
8978 * libc/sys/linux/machine/i386/crt0.c: Ditto.
8979 * libc/sys/linux/machine/i386/sigset.c: Ditto.
8980 * libc/sys/linux/machine/i386/sigstack.h: Ditto.
8981 * libc/sys/linux/machine/i386/socketcall.h: Ditto.
8982 * libc/sys/linux/machine/i386/syscall.h: Ditto.
8983 * libc/sys/linux/sys/select.h: Ditto.
8984 * libc/sys/linux/configure.in: Add support for machine directory.
8985 * libc/sys/linux/Makefile.am: Ditto plus add new files above.
8986 * libc/sys/linux/Makefile.in: Regenerated.
8987 * libc/sys/linux/configure: Ditto.
8988 * libc/sys/linux/brk.c: Use machine/syscall.h instead of sys/syscall.h.
8989 * libc/sys/linux/inode.c: Ditto.
8990 * libc/sys/linux/linux.c: Ditto.
8991 * libc/sys/linux/process.c: Ditto.
8992 * libc/sys/linux/systat.c: Ditto.
8993 * libc/sys/linux/time.c: Ditto.
8994 * libc/sys/linux/wait.c: Ditto.
8995 * libc/sys/linux/ids.c: Change header plus add setfsgid/setfsuid.
8996 * libc/sys/linux/io.c: Change header plus add readv/writev.
8997 * libc/sys/linux/signal.c: Change header plus change sigsuspend to
8998 use __sigsuspend syscall.
8999 * libc/sys/linux/select.c: Change header plus change select to
9000 use _newselect syscall.
9001 * libc/sys/linux/sys/cdefs.h: Add a number of standard definitions
9002 used by glibc header files.
9003 * libc/sys/linux/sys/types.h: Add __socklen_t and __useconds_t
9004 types.
9005
9006 2002-04-01 Jeff Johnston <jjohnstn@redhat.com>
9007
9008 * libc/include/sys/reent.h (_REENT_INIT_PTR): New macro for
9009 initializing a struct _reent that has been dynamically allocated.
9010 (_REENT_CHECK_MISC): New macro that checks _misc struct for
9011 _REENT_SMALL and does nothing otherwise.
9012 (_REENT_STRTOK_LAST): New macro for reentrant strtok.
9013 (_REENT_MBLEN_STATE): New macro for reentrant mblen.
9014 (_REENT_MBTOWC_STATE): New macro for reentrant mbtowc.
9015 (_REENT_WCTOMB_STATE): New macro for reentrant wctomb.
9016 [_REENT_SMALL](struct _misc_reent): New structure containing
9017 miscellaneous reentrant areas needed by newlib.
9018 [_REENT_SMALL](struct _reent): Add _misc pointer.
9019 [_REENT_SMALL](_REENT_INIT_MISC): New macro.
9020 * libc/string/strtok (strtok): Change to use _REENT_CHECK_MISC
9021 and _REENT_STRTOK_LAST macros.
9022 * libc/stdlib/mblen (mblen): Change to use _REENT_CHECK_MISC
9023 and _REENT_MBLEN_STATE macros.
9024 * libc/stdlib/mbtowc (mbtowc): Change to use _REENT_CHECK_MISC
9025 and _REENT_MBTOWC_STATE macros.
9026 * libc/stdlib/wctomb (wctomb): Change to use _REENT_CHECK_MISC
9027 and _REENT_WCTOMB_STATE macros.
9028
9029 2002-04-01 Till Straumann <strauman@SLAC.Stanford.EDU>
9030
9031 * libc/stdlib/getenv_r.c (_findenv_r): Add missing ENV_UNLOCK.
9032
9033 Wed Mar 27 07:34:44 2002 Jason Tishler <jason@tishler.net>
9034
9035 * libc/include/sys/features.h (_POSIX_SEMAPHORES): New Cygwin define.
9036
9037 Tue Mar 26 17:17:10 2002 J"orn Rennecke <joern.rennecke@superh.com>
9038
9039 * libc/machine/sh/memcpy.S (Large): Fix alignment rounding.
9040 Store high part of leading bytes too.
9041
9042 2002-03-22 Richard Sandiford <rsandifo@redhat.com>
9043
9044 * libm/math/ef_hypot.c: Increase scale factor to 68.
9045
9046 2002-03-13 Alexandre Oliva <aoliva@redhat.com>
9047
9048 * libc/machine/mips/strlen.c (strlen) [__mips16]: Fix off-by-two
9049 error.
9050
9051 2002-03-12 Jeff Johnston <jjohnstn@redhat.com>
9052
9053 * libc/sys/go32/access.c: Change license to relaxed license
9054 used in identical file throughout newlib/libgloss.
9055
9056 2002-03-12 Richard Earnshaw <rearnsha@arm.com>
9057
9058 * libc/sys/arm/access.c: New file.
9059 * libc/sys/arm/Makefile.am (lib_a_SOURCES): Add access.c.
9060 * libc/sys/arm/Makefile.in: Regenerate.
9061 * libc/sys/arm/syscalls.c (_stat): New function.
9062
9063 2002-03-11 Michael Meissner <meissner@redhat.com>
9064
9065 * libc/machine/mips/Makefile.am (lib_a_SOURCES): Add Mips specific
9066 variants strlen.c, strcmp.c, strncpy.c, memset.c and memcpy.c.
9067 * libc/machine/mips/Makefile.in: Regenerate.
9068 * libc/machine/mips/memcpy.c: New file, optimized for MIPS.
9069 * libc/machine/mips/memset.c: Dito.
9070 * libc/machine/mips/strcmp.c: Dito.
9071 * libc/machine/mips/strlen.c: Dito.
9072 * libc/machine/mips/strncmp.c: Dito.
9073
9074 2002-03-06 Jeff Johnston <jjohnstn@redhat.com>
9075
9076 * libc/machine/i386/Makefile.am: Add $(oext) for setjmp
9077 object so it works for shared library or statici library.
9078 * libc/machine/i386/Makefile.in: Regenerated.
9079
9080 Wed Mar 6 10:24:26 2002 J"orn Rennecke <joern.rennecke@superh.com>
9081
9082 * libc/machine/sh/Makefile.am (lib_a_SOURCES, SH64 case):
9083 Add memcpy.S, memset.S and strcpy.S.
9084 * libc/machine/sh/Makefile.in: Regenerate.
9085 * libc/machine/sh/asm.h (_ENTRY): Set SH5 alignment to 8 bytes.
9086 (SHHI, SHLO): Define.
9087 * libc/machine/sh/memset.S: Add code for SH5.
9088 * libc/machine/sh/memset.S: Likewise.
9089 * libc/machine/sh/strcpy.S: Likewise.
9090
9091 2002-02-27 Jeff Johnston <jjohnstn@redhat.com>
9092
9093 * configure.host: Add check for --disable-newlib-io-float
9094 configuration option and add -DNO_FLOATING_POINT to newlib cflags
9095 if appropriate.
9096 * acinclude.m4: Added --disable-newlib-io-float option.
9097 * aclocal.m4: Regenerated.
9098 * configure: Ditto.
9099 * doc/aclocal.m4 doc/configure libc/aclocal.m4 libc/configure
9100 * libc/*/aclocal.m4 libc/*/configure
9101 * libm/*/aclocal.m4 libm/*/configure: Ditto.
9102 * libc/stdio/vfprintf.c [!INTEGER_ONLY]: Only set FLOATING_POINT
9103 if NO_FLOATING_POINT flag is not defined.
9104
9105 2002-02-25 Jeff Johnston <jjohnstn@redhat.com>
9106
9107 * libc/include/sys/config.h: Add __extension__ in front of
9108 long long references.
9109
9110 2002-02-23 Corinna Vinschen <corinna@vinschen.de>
9111
9112 * libc/include/sys/stat.h (_fstat): Don't declare when compiling Cygwin.
9113 (_stat): Ditto.
9114
9115 2002-02-23 Corinna Vinschen <corinna@vinschen.de>
9116
9117 * libc/sys/cygwin/sys/dirent.h (struct __DIR): Use __off32_t instead
9118 of off_t.
9119
9120 2002-02-20 Nick Clifton <nickc@cambridge.redhat.com>
9121
9122 * libc/machine/xscale/strchr.c (strchr): Add 'r1' to the list of
9123 clobbered registers.
9124
9125 2002-02-19 Thomas Fitzsimmons <fitzsim@redhat.com>
9126
9127 * configure.host (newlib_cflags): When host is in m68* add
9128 -DCOMPACT_CTYPE.
9129
9130 2002-02-15 Jeff Johnston <jjohnstn@redhat.com>
9131
9132 * libc/include/sys/config.h: Add definitions for
9133 __int16_t, __uint16_t, __int64_t, and __uint64_t.
9134
9135 2002-02-12 Hans-Peter Nilsson <hp@bitrange.com>
9136
9137 * libc/sys/mmixware/link.c: New.
9138 * libc/sys/mmixware/sys/syscall.h (TRAP1i, I3f): Make asm
9139 volatile.
9140 * libc/sys/mmixware/times.c (_times): Renamed from times.
9141 * libc/sys/mmixware/open.c (_open): Attempt to handle O_APPEND
9142 properly by reading previous contents, not through BinaryReadWrite.
9143 * libc/sys/mmixware/Makefile.am (lib_a_SOURCES): Add link.c
9144 * libc/sys/mmixware/Makefile.in: Regenerate.
9145
9146 2002-02-10 Corinna Vinschen <corinna@vinschen.de>
9147
9148 * libc/include/grp.h: Don't declare group functions when compiling
9149 Cygwin.
9150
9151 2002-02-09 Corinna Vinschen <corinna@vinschen.de>
9152
9153 * libc/include/grp.h: Include Cygwin specific header.
9154 * libc/include/sys/stat.h: Ditto. Don't define `struct stat'
9155 when compiling for Cygwin.
9156 * libc/include/sys/types.h: Don't define off_t, uid_t
9157 and gid_t when compiling for Cygwin.
9158
9159 2002-02-08 matthew green <mrg@redhat.com>
9160
9161 * libc/include/sys/reent.h (_REENT_CHECK_EMERGENCY): Allocate
9162 _REENT_EMERGENCY_SIZE, not sizeof(char *).
9163
9164 2002-02-08 Alexandre Oliva <aoliva@redhat.com>
9165
9166 Contribute sh64-elf.
9167 2001-03-13 Alexandre Oliva <aoliva@redhat.com>
9168 * configure.host (newlib_cflags) [sh*-*-*]: Enable long long
9169 support in printf.
9170 2001-01-29 Alexandre Oliva <aoliva@redhat.com>
9171 * libc/machine/sh/setjmp.S [SH5]: Switch to SHmedia mode before
9172 any labels.
9173 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9174 * libc/sys/sh/trap.S (___trap34) [SH5]: Don't trash r2.
9175 2000-12-16 Alexandre Oliva <aoliva@redhat.com>
9176 * libc/machine/sh/configure.in: Rework conditionals.
9177 * libc/machine/sh/Makefile.am: Likewise.
9178 * libc/machine/sh/configure, libc/machine/sh/Makefile.in: Rebuilt.
9179 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9180 * configure.host: Match `sh*'.
9181 * libc/include/machine/setjmp.h: Define for SH5.
9182 * libc/machine/sh/configure.in: Detect SH5.
9183 * libc/machine/sh/configure: Rebuilt.
9184 * libc/machine/sh/Makefile.am: Use only setjmp.S for SH5.
9185 * libc/machine/sh/Makefile.in: Rebuilt.
9186 * libc/machine/sh/asm.h: Adjust for SH5.
9187 * libc/machine/sh/setjmp.S: Implement in SHmedia.
9188 * libc/sys/sh/crt0.S: Likewise.
9189 * libc/sys/sh/trap.S: Likewise.
9190
9191 2002-02-07 Jeff Johnston <jjohnstn@redhat.com>
9192
9193 * libc/machine/i386/Makefile.am: (mach_add_src): Remove.
9194 (mach_add_obj): Conditionally set to setjmp.o or nothing.
9195 (LIB_SOURCES): Remove $(mach_add_src).
9196 (lib_a_LIBADD, lib_a_DEPENDENCIES): Add and set to $(mach_add_src).
9197 (lib_la_LIBADD, lib_la_DEPENDENCIES): Ditto.
9198 * libc/machine/i386/Makefile.in: Regenerate.
9199
9200 2002-02-05 Manik Raina <manik@cisco.com>
9201
9202 * libc/misc/dprintf.c (parse_number): #if 0 unused function.
9203 * libc/stdlib/ldtoa.c (_ldcheck): Remove unused local variables
9204 s, p, k, and outstr.
9205 * libc/stdlib/dtoa.c (_dtoa_r): Initialize mlo.
9206
9207 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9208
9209 * libc/include/sys/reent.h [(!_REENT_SMALL]: Add
9210 _REENT_CHECK_EMERGENCY macro.
9211
9212 2002-02-03 matthew green <mrg@redhat.com>
9213
9214 * libc/reent/signgam.c (__signgam): Fix error in previous.
9215
9216 2002-02-02 matthew green <mrg@redhat.com>
9217
9218 * libc/include/sys/config.h (_REENT_SMALL): Define for Xstormy16.
9219
9220 * libc/reent/reent.c (_reclaim_reent): Clean for _REENT_SMALL case.
9221 * libc/reent/reent.tex: Add blurb about _REENT_SMALL.
9222 * libc/include/sys/reent.h (struct _reent): Completely new version
9223 for _REENT_SMALL.
9224 (_REENT_INIT): New defines, different defintion depending on _REENT_SMALL.
9225 (_REENT_CHECK, _REENT_CHECK_TM): Likewise.
9226 (_REENT_CHECK_ASCTIME_BUF, _REENT_INIT_RAND48): Likewise.
9227 (_REENT_CHECK_RAND48, _REENT_INIT_MP, _REENT_CHECK_MP): Likewise.
9228 (_REENT_CHECK_EMERGENCY, _REENT_SIGNGAM, _REENT_RAND_NEXT): Likewise.
9229 (_REENT_RAND48_SEED, _REENT_RAND48_MULT, _REENT_RAND48_ADD): Likewise.
9230 (_REENT_MP_RESULT, _REENT_MP_RESULT_K, _REENT_MP_P5S): Likewise.
9231 (_REENT_MP_FREELIST, _REENT_ASCTIME_BUF, _REENT_TM): Likewise.
9232 (_REENT_EMERGENCY): Likewise.
9233
9234 * libc/include/sys/reent.h (struct __sFILE_fake): New struct, same as
9235 the start of the real __sFILE, used for stdin, stdout and stderr until
9236 they are setup properly.
9237 (struct __sFILE): Move location of _data in _REENT_SMALL case.
9238 * libc/stdio/findfp.c (__sinit): Rearrange for _REENT_SMALL case by
9239 allocated stdin, stdout and stderr.
9240 * libc/stdio/getchar.c (_getchar_r): Call _REENT_SMALL_CHECK_INIT().
9241 * libc/stdio/iprintf.c (iprintf, _iprintf_r): Likewise.
9242 * libc/stdio/perror.c (_perror_r): Likewise.
9243 * libc/stdio/printf.c (printf, _printf_r): Likewise.
9244 * libc/stdio/putchar.c (_putchar_r): Likewise.
9245 * libc/stdio/puts.c (_puts_r): Likewise.
9246 * libc/stdio/scanf.c (scanf, _scanf_r): Likewise.
9247 * libc/stdio/vprintf.c (vprintf): Likewise.
9248 * libc/stdio/vscanf.c (vscanf, _vscanf_r): Likewise.
9249
9250 * libc/stdio/tmpnam.c (_tmpnam_r): Use _REENT_EMERGENCY().
9251
9252 * libc/reent/reent.c (_wrapup_reent): Adjust for _REENT_SMALL atexit.
9253 * libc/include/sys/reent.h (_atexit): Limit atexit() entries to 32
9254 for _REENT_SMALL.
9255 * libc/stdlib/atexit.c (atexit): Rearrange for _REENT_SMALL case.
9256 * libc/stdlib/exit.c (exit): Rearrange for _REENT_SMALL case.
9257
9258 * libc/include/sys/reent.h (struct _rand48): Keep _rand_next if
9259 _REENT_SMALL.
9260 * libc/stdlib/drand48.c (_drand48_r): Call _REENT_CHECK_RAND48().
9261 * libc/stdlib/lcong48.c (_lcong48_r): Likewise.
9262 * libc/stdlib/lrand48.c (_lrand48_r): Likewise.
9263 * libc/stdlib/mrand48.c (_mrand48_r): Likewise.
9264 * libc/stdlib/rand48.c (__dorand48): Likewise.
9265 * libc/stdlib/seed48.c (_seed48_r): Likewise.
9266 * libc/stdlib/srand48.c (_srand48_r): Likewise.
9267 * libc/stdlib/rand48.h (__rand48_seed, __rand48_mult, __rand48_add): Define
9268 as _REENT_RAND48_SEED(), _REENT_RAND48_MULT() and _REENT_RAND48_ADD().
9269 * libc/stdlib/dtoa.c (_dtoa_r): Call _REENT_CHECK_MP(). Use
9270 _REENT_MP_RESULT() and _REENT_MP_RESULT_K().
9271 * libc/stdlib/ldtoa.c (_ldtoa_r): Likewise.
9272 * libc/stdlib/rand.c (srand): Use _REENT_RAND_NEXT().
9273 * libc/stdlib/rand.c (rand): Likewise.
9274
9275 * libc/stdlib/mallocr.c (malloc_stats): Call _REENT_SMALL_CHECK_INIT().
9276 * libc/stdlib/mstats.c (_mstats_r): Call _REENT_SMALL_CHECK_INIT().
9277
9278 * libc/stdlib/mprec.c (Balloc): Call _REENT_CHECK_MP. Use
9279 _REENT_MP_FREELIST() and _REENT_MP_P5S.
9280 * libc/include/sys/reent.h (struct _mprec): New structure.
9281
9282 * libc/include/sys/reent.h (struct _reent): Rename _strtok_last to
9283 _unused_strtok_last.
9284 * libc/string/strtok.c (strtok): Use a local static variable.
9285
9286 * libc/include/sys/reent.h (_REENT_ASCTIME_SIZE): New define.
9287 (_REENT_EMERGENCY_SIZE): Likewise.
9288 * libc/time/asctime.c (asctime): Call _REENT_CHECK_ASCTIME_BUF(). Use
9289 _REENT_ASCTIME_BUF().
9290 * libc/time/lcltime.c (localtime): Call _REENT_CHECK_TM(). Use
9291 _REENT_TM().
9292
9293 * libc/include/math.h (__singam_r): Use _REENT_SIGNGAM().
9294 * libc/reent/signgam.c (__signgam): Use _REENT_SIGNGAM().
9295 * libm/math/w_gamma.c (gamma): Use _REENT_SIGNGAM().
9296 * libm/math/w_lgamma.c (lgamma): Use _REENT_SIGNGAM().
9297 * libm/math/wf_gamma.c (gammaf): Use _REENT_SIGNGAM().
9298 * libm/math/wf_lgamma.c (lgammaf): Use _REENT_SIGNGAM().
9299
9300 2002-02-01 Geoffrey Keating <geoffk@redhat.com>
9301
9302 * configure.host (xstormy16): Don't use the generic malloc.
9303 * libc/machine/xstormy16/Makefile.am: Build tiny-malloc.
9304 * libc/machine/xstormy16/Makefile.in: Regenerate.
9305 * libc/machine/xstormy16/mallocr.c: New file.
9306 * libc/machine/xstormy16/tiny-malloc.c: New file.
9307
9308 2002-01-28 Thomas Fitzsimmons <fitzsim@redhat.com>
9309
9310 * libc/include/sys/signal.h [__CYGWIN__]: Issue error message
9311 when _CYGWIN_TYPES_H is not defined.
9312
9313 2002-01-24 Thomas Fitzsimmons <fitzsim@redhat.com>
9314
9315 * libc/include/sys/signal.h: Revert 2002-01-23 change.
9316
9317 2002-01-23 Thomas Fitzsimmons <fitzsim@redhat.com>
9318
9319 * libc/include/sys/signal.h: Remove pthread_kill declaration
9320 when __CYGWIN__ is defined.
9321
9322 2002-01-18 Mark Bradshaw <bradshaw@staff.crosswalk.com>
9323
9324 * libc/include/time.h: Add prototype for strptime for Cygwin.
9325
9326 2002-01-17 Nick Clifton <nickc@cambridge.redhat.com>
9327
9328 * libc/machine/xscale/memset.c (memset): Fix bug when len == 1 and
9329 dst was not word aligned.
9330
9331 * libc/sys/arm/syscalls.c (_sbrk): Return -1 rather than aborting
9332 if too much memory is requested.
9333
9334 2002-01-11 Jeff Johnston <jjohnstn@redhat.com>
9335
9336 * libc/stdio/vfscanf.c (__svfscanf_r): Change loop that
9337 reads blanks from the input file to break if EOF reached
9338 rather than end processing.
9339
9340 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9341
9342 * MAINTAINERS: Change e-mail addresses to refer to redhat domain.
9343
9344 2002-01-07 Alan Matsuoka <alanm@redhat.com>
9345
9346 * libc/include/machine/ieeefp.h: Configure d10v doubles to
9347 be 32 bits if __DOUBLE__ == 32 otherwise doubles are 64 bits.
9348 libc/include/sys/config.h: Ditto.
9349
9350 2001-12-28 Corinna Vinschen <corinna@vinschen.de>
9351
9352 * libc/sys/cygwin/sys/utmp.h: Add definition of UTMP_FILE.
9353
9354 2001-12-22 Geoffrey Keating <geoffk@redhat.com>
9355 Catherine Moore <clm@redhat.com>
9356 Richard Henderson <rth@redhat.com>
9357 Corinna Vinschen <vinschen@redhat.com>
9358
9359 * configure.host: Add support for xstormy16.
9360 * libc/include/machine/ieeefp.h: Add support for xstormy16.
9361 * libc/include/machine/setjmp.h: Add support for xstormy16.
9362 * libc/include/sys/config.h: Add support for xstormy16.
9363 * libc/machine/xstormy16/Makefile.am: New file.
9364 * libc/machine/xstormy16/Makefile.in: New file.
9365 * libc/machine/xstormy16/aclocal.m4: New file.
9366 * libc/machine/xstormy16/configure: New file.
9367 * libc/machine/xstormy16/configure.in: New file.
9368 * libc/machine/xstormy16/setjmp.S: New file.
9369
9370 2001-12-19 Thomas Fitzsimmons <fitzsim@redhat.com>
9371
9372 * libm/machine/configure.in (HAVE_LIBM_MACHINE_DIR): New conditional.
9373 * libm/machine/Makefile.am [HAVE_LIBM_MACHINE_DIR] (LIBM_MACHLIB): New variable.
9374
9375 2001-12-19 Corinna Vinschen <corinna@vinschen.de>
9376
9377 * libm/machine/Makefile.am: Change rules to create correct lib.a.
9378 * libm/machine/Makefile.in: Regenerated through automake.
9379
9380 2001-12-18 Thomas Fitzsimmons <fitzsim@redhat.com>
9381
9382 * Makefile.am (DOCDIR): Force to empty string when doc
9383 directory is not present.
9384
9385 2001-12-18 Thomas Fitzsimmons <fitzsim@redhat.com>
9386
9387 * libc/machine/i386/f_*: Move to libm/machine/i386.
9388
9389 2001-12-18 Joel Sherrill <joel@OARcorp.com>
9390
9391 * libm/machine/Makefile.am: Add dummy doc stub so
9392 "make info" works.
9393
9394 2001-12-17 Joel Sherrill <joel@OARcorp.com>
9395
9396 * libc/include/sys/types.h (ino_t): RTEMS uses long also.
9397
9398 2001-12-17 Thomas Fitzsimmons <fitzsim@redhat.com>
9399
9400 * libc/stdlib/Makefile.am (LIB_COMPILE): Change to equal
9401 $(COMPILE) rather than $(CC).
9402 * libc/stdio/Makefile.am (LIB_COMPILE): Likewise.
9403 (vfprintf.$(oext)): Remove $(INCLUDES), made redundant by
9404 $(LIB_COMPILE) change.
9405 (vfiprintf.$(oext)): Likewise.
9406
9407 2001-12-17 Corinna Vinschen <vinschen@redhat.de>
9408
9409 * libc/sys/cygwin/include/unistd.h: Add __UNISTD_GETOPT_ to allow
9410 conditionalized including of getopt stuff.
9411
9412 2001-12-14 Thomas Fitzsimmons <fitzsim@redhat.com>
9413
9414 * libc/stdio/Makefile.am (vfprintf.$(oext)): Add $(INCLUDES) to
9415 compile line.
9416 (vfiprintf.$(oext)): Likewise.
9417
9418 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9419
9420 * Makefile.shared: New file.
9421 * libc/sys/linux/shared.ld: New file.
9422 * libm/machine/*: New files.
9423 * libm/machine/i386/*: New files.
9424 * Makefile.am: Add libtool support. Change math and mathfp
9425 references to variables.
9426 * configure.host: Add variables for libtool support. Add
9427 libm_machine_dir variable.
9428 * configure.in: Add objectlist variables, for libtool
9429 support. Add CC_FOR_BUILD tests.
9430 * libc/Makefile.am: Add libtool support. Change crt0.o
9431 reference to be a variable reference.
9432 * libc/configure.in: Add libtool support. Change sublib
9433 names to be lib${subdir}.la when using libtool.
9434 * libc/ctype/Makefile.am: Add libtool support.
9435 * libc/errno/Makefile.am: Likewise.
9436 * libc/locale/Makefile.am: Likewise.
9437 * libc/machine/Makefile.am: Likewise.
9438 * libc/machine/configure.in: Likewise.
9439 * libc/machine/i386/Makefile.am: Likewise.
9440 * libc/machine/i386/configure.in: Likewise.
9441 * libc/misc/Makefile.am: Likewise.
9442 * libc/posix/Makefile.am: Likewise.
9443 * libc/reent/Makefile.am: Likewise.
9444 * libc/signal/Makefile.am: Likewise.
9445 * libc/stdio/Makefile.am: Likewise.
9446 * libc/stdlib/Makefile.am: Likewise.
9447 * libc/string/Makefile.am: Likewise.
9448 * libc/sys/Makefile.am: Likewise.
9449 * libc/sys/configure.in: Likewise.
9450 * libc/sys/linux/Makefile.am: Add libtool support. Change
9451 awk reference to a variable reference. Change signal.h
9452 reference to a variable reference.
9453 * libc/sys/linux/configure.in: Add libtool support.
9454 * libc/syscalls/Makefile.am: Likewise.
9455 * libc/time/Makefile.am: Likewise.
9456 * libc/unix/Makefile.am: Likewise.
9457 * libm/Makefile.am: Add libtool support. Change math and
9458 mathfp references to variables.
9459 * libm/configure.in: Add libtool support. Add
9460 LIBM_MACHINE_LIB variable.
9461 * libm/common/Makefile.am: Add libtool support.
9462 * libm/math/Makefile.am: Likewise.
9463 * libm/mathfp/Makefile.am: Likewise.
9464 Regenerate all Makefile.in, aclocal.m4, and configure.
9465
9466 2001-12-13 Anita Kulkarni <anitak@kpit.com>
9467
9468 * libc/sys/sh/crt0.S: Remove stack symbol definition 0xdeaddead.
9469
9470 2001-12-06 John Peacock <jpeacock@rowman.com>
9471
9472 * libc/include/sys/unistd.h: Correct ualarm declaration.
9473
9474 2001-12-05 Nick Clifton <nickc@cambridge.redhat.com>
9475
9476 * libc/sys/arm/crt0.S: For __USES_INITFINI__ preserve the argument
9477 vector before calling the initialisation functions.
9478
9479 2001-11-29 Christopher Faylor <cgf@redhat.com>
9480
9481 * libc/include/dirent.h: Protect against multiple inclusion.
9482
9483 2001-11-27 Christopher Faylor <cgf@redhat.com>
9484
9485 * libc/include/sys/types.h: Define useconds_t.
9486 * libc/include/sys/ulimit.h: Declare ualarm.
9487
9488 2001-11-21 Christopher Faylor <cgf@redhat.com>
9489
9490 * libc/sys/cygwin/sys/dirent.h (DIR): Add another internal element.
9491
9492 2001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9493
9494 * libc/sys/mmixware/*: Tweak license header in all source files.
9495
9496 2001-11-12 Corinna Vinschen <vinschen@redhat.com>
9497
9498 * libc/include/alloca.h: Move libc/sys/linux/include/alloca.h
9499 to here. Rearrange for general inclusion by stdlib.h.
9500 * libc/include/stdlib.h: Include <alloca.h> if __STRICT_ANSI__
9501 isn't defined.
9502 * libc/sys/linux/include/alloca.h: Move to libc/include.
9503
9504 2001-11-12 Anthony Green <green@redhat.com>
9505
9506 * libc/sys/arm/crt0.S (__stack_base__): New symbol.
9507
9508 2001-11-13 Hans-Peter Nilsson <hp@bitrange.com>
9509
9510 * libc/sys/mmixware/*: Correct spacing in all source files.
9511 * libc/sys/mmixware/syscall.h: Move misplaced file...
9512 * libc/sys/mmixware/sys/syscall.h: ...here.
9513
9514 2001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9515
9516 * libc/include/machine/ieeefp.h: Add support for mmix target.
9517 * libc/include/machine/setjmp.h: Ditto.
9518 * configure.host: Ditto.
9519 * libc/sys/mmixware/Makefile.am, libc/sys/mmixware/_exit.c,
9520 libc/sys/mmixware/access.c, libc/sys/mmixware/aclocal.m4,
9521 libc/sys/mmixware/chmod.c, libc/sys/mmixware/chown.c,
9522 libc/sys/mmixware/close.c, libc/sys/mmixware/configure.in,
9523 libc/sys/mmixware/creat.c, libc/sys/mmixware/crt0.c,
9524 libc/sys/mmixware/execv.c, libc/sys/mmixware/execve.c,
9525 libc/sys/mmixware/fork.c, libc/sys/mmixware/fstat.c,
9526 libc/sys/mmixware/getpid.c, libc/sys/mmixware/gettime.c,
9527 libc/sys/mmixware/isatty.c, libc/sys/mmixware/kill.c,
9528 libc/sys/mmixware/lseek.c, libc/sys/mmixware/open.c,
9529 libc/sys/mmixware/pipe.c, libc/sys/mmixware/read.c,
9530 libc/sys/mmixware/sbrk.c, libc/sys/mmixware/setjmp.S,
9531 libc/sys/mmixware/stat.c, libc/sys/mmixware/sys/syscall.h,
9532 libc/sys/mmixware/time.c, libc/sys/mmixware/times.c,
9533 libc/sys/mmixware/unlink.c, libc/sys/mmixware/utime.c,
9534 libc/sys/mmixware/wait.c, libc/sys/mmixware/write.c: New files.
9535 * libc/sys/mmixware/configure, libc/sys/mmixware/Makefile.in,
9536 libc/sys/mmixware/aclocal.m4: Generate.
9537
9538 2001-11-05 Corinna Vinschen <corinna@vinschen.de>
9539
9540 * libc/include/sys/unistd.h: Add prototypes for endusershell(),
9541 getusershell(), iruserok(), revoke(), ruserok() and setusershell()
9542 when __CYGWIN__ is defined.
9543 * libc/sys/cygwin/sys/utmp.h: Add prototypes for login_tty() and
9544 logwtmp().
9545
9546 2001-11-01 Arati Dikey <aratidikey@hotmail.com>
9547
9548 * libm/mathfp/sf_isinf.c (isinff): Change to use _DEFUN macro.
9549 [_DOUBLE_IS_32BITS](isinf): New function that calls isinff.
9550 * libm/mathfp/sf_isnan.c (isnanf): Change to use _DEFUN macro.
9551 [_DOUBLE_IS_32BITS](isnan): New function that calls isnanf.
9552
9553 2001-10-24 Christopher Faylor <cgf@redhat.com>
9554
9555 * libc/stdio/fseek.c: Reset pointer to buffer base
9556 when forced to seek outside of current buffer contents.
9557 This prevents the code from erroneously thinking there is
9558 anything in the current buffer.
9559
9560 2001-10-22 Geoffrey Keating <geoffk@redhat.com>
9561
9562 * libc/include/math.h: The C++ standard adds the single-precision
9563 versions of the elementary functions.
9564
9565 2001-10-22 Christopher Faylor <cgf@redhat.com>
9566
9567 * libc/posix/execvp.c: Remove obsolete CYGWIN32 considerations
9568 throughout.
9569 * signal.h: Change comment to reflect __CYGWIN__ rather than __CYGWIN32__.
9570 * popen.c (popen): Use __CYGWIN_ rather than __CYGWIN32__.
9571 * system.c (_system_r): Ditto.
9572
9573 2001-10-17 Corinna Vinschen <corinna@vinschen.de>
9574
9575 * libc/include/sys/unistd.h: Add prototype for fchdir() when
9576 __CYGWIN__ or __rtems__ is defined.
9577
9578 2001-10-01 Charles Wilson <cwilson@ece.gatech.edu>
9579
9580 * libc/include/stdlib.h: add declarations for
9581 _strtoull_r, _strtoll_r, strtoull, and strtoll.
9582 * libc/stdio/local.h: remove declarations of
9583 __strtoull_r and __strtoll_r.
9584 * libc/stdio/vfscanf.c(__svfscanf_r): call
9585 _strtoull_r instead of __strtoull_r. Ditto
9586 _strtoll_r vs. __strtoll_r.
9587 * libc/stdlib/Makefile.am: add new files to
9588 .c list and .def list
9589 * libc/stdlib/Makefile.in: regenerate
9590 * libc/stdlib/strtoll_r.c: rename __strtoll_r
9591 as _strtoll_r
9592 * libc/stdlib/strtoull_r.c: rename __strtoull_r
9593 as _strtoull_r
9594 * libc/stdlib/strtoull.c: new file
9595 * libc/stdlib/strtoll.c: new file
9596
9597 Mon Sep 17 17:29:47 2001 Christopher Faylor <cgf@cygnus.com>
9598
9599 * libc/include/process.h: Add getpid() declaration.
9600
9601 2001-09-14 Nick Clifton <nickc@cambridge.redhat.com>
9602
9603 * libc/sys/arm/crt0.S: Add calls to _init and _fini (via atexit)
9604 for new style arm/elf ctor/dtor handling.
9605 Minor formatting tidy up.
9606
9607 2001-09-13 Jeff Johnston <jjohnstn@redhat.com>
9608
9609 * libc/stdlib/Makefile.am: Add support to build strtoll_r.c
9610 and strtoull_r.c.
9611 * libc/stdlib/Makefile.in: Regenerated.
9612 * libc/stdlib/strtoll_r.c: New file.
9613 * libc/stdlib/strtoull_r.c: New file.
9614 * libc/stdio/local.h: Add prototypes for long long string
9615 conversion routines.
9616 * libc/stdio/vfscanf.c (__svfscanf_r): Add optional long long support
9617 tied to %L integer conversion specifier.
9618
9619 Thu Sep 13 08:49:49 2001 Jason Tishler <jason@tishler.net>
9620
9621 * strftime.c (strftime): Fix "%W" implementation to properly handle
9622 Mondays too.
9623
9624 2001-09-07 Jeff Law <law@redhat.com>
9625
9626 * libc/sys/h8300hms/crt0.S: For H8/300H and H8/S, load address of
9627 __fini with "mov.l" instead of "mov.w".
9628
9629 2001-09-05 Corinna Vinschen <corinna@vinschen.de>
9630
9631 * libc/sys/cygwin/include/unistd.h: New file, wrapping sys/unistd.h
9632 and getopt.h.
9633
9634 2001-09-04 Jason Merrill <jason_merrill@redhat.com>
9635
9636 * libc/sys/h8300hms/crt0.S: Support ELF initialization.
9637
9638 2001-09-03 Corinna Vinschen <corinna@vinschen.de>
9639
9640 * libc/sys/cygwin/sys/dirent.h (struct dirent): Add version number
9641 field.
9642 (__DIRENT_VERSION): New define.
9643
9644 2001-09-03 Corinna Vinschen <corinna@vinschen.de>
9645
9646 * libc/sys/cygwin/sys/dirent.h (struct dirent): Add `d_fd' member.
9647 Shrink __d_reserved accordingly to keep structure size.
9648 (dirfd): Declare external.
9649
9650 2001-08-29 Joel Sherrill <joel@OARcorp.com>
9651
9652 * libc/include/sys/unistd.h: Prototype chroot() for RTEMS.
9653
9654 2001-08-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
9655
9656 * libc/machine/i386/f_atan2.S, libc/machine/i386/f_atan2f.S,
9657 libc/machine/i386/f_exp.c, libc/machine/i386/f_expf.c,
9658 libc/machine/i386/f_frexp.S, libc/machine/i386/f_frexpf.S,
9659 libc/machine/i386/f_ldexp.S, libc/machine/i386/f_ldexpf.S,
9660 libc/machine/i386/f_log.S, libc/machine/i386/f_log10.S,
9661 libc/machine/i386/f_log10f.S, libc/machine/i386/f_logf.S,
9662 libc/machine/i386/f_pow.c, libc/machine/i386/f_powf.c,
9663 libc/machine/i386/f_tan.S, libc/machine/i386/f_tanf.S:
9664 Add conditional compilation to avoid HW FPU instructions
9665 when compiled for soft-float.
9666
9667 2001-08-29 Jeff Johnston <jjohnstn@redhat.com>
9668
9669 * Makefile.am: Add check for ln failing when creating libg.a
9670 so that cp gets used as a backup.
9671 * Makefile.in: Regenerated.
9672
9673 2001-08-29 Jeff Johnston <jjohnstn@redhat.com>
9674
9675 * libc/include/sys/reent.h: Add include of <sys/_types.h>.
9676 No longer include time.h. Add struct __tm to use for
9677 _localtime_buf in the reentrant structure. Add a
9678 _NULL definition to use in initializing the reentrant struct.
9679 * libc/include/sys/config.h: For CYGWIN32 and RTEMS, change
9680 the _READ_WRITE_RETURN_TYPE to _ssize_t which is found in
9681 <sys/_types.h>.
9682 * libc/include/sys/unistd.h: Include <sys/_types.h>.
9683 * libc/time/lcltime.c (localtime): Cast the reentrant struct
9684 _localtime_buf to be struct tm *.
9685
9686 Wed Aug 29 14:17:38 2001 J"orn Rennecke <amylaar@redhat.com>
9687
9688 * configure.host (h8300-*-elf*, h8500-*-elf*): New cases.
9689 * libc/sys/h8300hms/crt1.c (__main): Don't reference __ctors /
9690 __ctors_end.
9691 * libc/sys/h8300hms/syscalls.c: Include errno.h.
9692 (_unlink): New stub function.
9693
9694 Sat Aug 25 22:22:25 2001 Christopher Faylor <cgf@cygnus.com>
9695
9696 * libc/include/sys/errno.h: Add a cautionary comment.
9697
9698 2001-08-21 Jeff Johnston <jjohnstn@redhat.com>
9699
9700 * libc/stdlib/mallocr.c [!defined(MALLOC_ALIGNMENT)]: Add conditional
9701 for SIZE_SZ so that alignment ends up a minimum of 8.
9702
9703 Mon Aug 13 22:26:01 2001 Christopher Faylor <cgf@cygnus.com>
9704
9705 * libc/include/machine/setjmp.h: Protect sigsetjmp/siglongjmp macro
9706 arguments.
9707
9708 * libc/include/sys/errno.h: Declare sys_errlist and sys_nerr, under
9709 Cygwin.
9710
9711 2001-08-13 Jeff Johnston <jjohnstn@redhat.com>
9712
9713 * libc/include/malloc.h (M_MXFAST, M_NLBLKS, M_GRAIN, M_KEEP): New
9714 macro constants for mallopt options.
9715 (M_TRIM_THRESHOLD, M_TOP_PAD, M_MMAP_THRESHOLD, M_MMAP_MAX): Ditto.
9716
9717 2001-08-02 Jeff Johnston <jjohnstn@redhat.com>
9718
9719 * libc/include/stdio.h (BUFSIZ): Define to __BUFSIZ__ if provided,
9720 otherwise default.
9721
9722 2001-07-12 Aldy Hernandez <aldyh@redhat.com>
9723
9724 * libc/machine/mips/setjmp.S: Allow mips16 and mips64 to coexist.
9725
9726 2001-06-27 Nick Clifton <nickc@cambridge.redhat.com>
9727
9728 * libc/include/machine/ieeefp.h (__IEEE_BYTES_LITTLE_ENDIAN):
9729 Define for little endian ARMs.
9730
9731 * libc/stdlib/mprec.h (Storeinc): Use little endian version if
9732 __IEEE_BYTES_LITTLE_ENDIAN is defined.
9733
9734 2001-06-11 Danny Smith <dannysmith@users.sourceforge.net>
9735
9736 * /libc/include/ctype.h (is* and to* macros): Do not define if C++.
9737
9738 2001-06-11 Egor Duda <deo@logos-m.ru>
9739
9740 * libc/ctype/ctype_.c: When compiled with gcc on platforms
9741 with signed char, make _ctype_[-128] ... _ctype[-1] refer to
9742 initialized memory region. Platform can define COMPACT_CTYPE
9743 to avoid allocation of the additional 128 bytes of data.
9744 Add pointer to _ctype_ array. Always initialize all _ctype_
9745 array elements.
9746
9747 2001-06-08 Jonathan Larmour <jlarmour@redhat.com>
9748
9749 * libc/stdlib/mbtowc_r.c (_mbtowc_r): Avoid dereferencing
9750 NULL pointer.
9751
9752 2001-05-28 Nick Clifton <nickc@cambridge.redhat.com>
9753
9754 * libc/stdio/vfprintf.c (_VFPRINTF_R): Handle printf ("%#.0o",0)
9755
9756 2001-05-25 Nick Clifton <nickc@cambridge.redhat.com>
9757
9758 * libc/machine/xscale/memcmp.c: Fix bug when both pointers have
9759 matching, non-word alignment, and the length is <= 4 but more than
9760 enough to move them over a word boundary.
9761 Add comments explaining what each instruction does.
9762
9763 Mon May 7 20:39:25 2001 Christopher Faylor <cgf@cygnus.com>
9764
9765 * libc/include/sys/stat.h: Revert March 3, Cygwin change.
9766 * libc/include/sys/unistd.h: Ditto.
9767
9768 2001-05-04 Earnie Boyd <earnie@users.sourceforge.net>
9769
9770 * libc/string/strrchr.c: Use strchr for the speed improvements.
9771
9772 2001-05-01 Jeff Johnston <jjohnstn@redhat.com>
9773
9774 * libc/stdio/findfp (__sinit)[HAVE_FCNTL]: For platforms that have
9775 real file systems, let __smakebuf() determine if line buffering
9776 should be used for stdout.
9777
9778 2001-04-27 Jeff Johnston <jjohnstn@redhat.com>
9779
9780 * libc/stdio/vfscanf.c (__svfscanf_r): Initialize new_exp local var.
9781
9782 2001-04-27 Jeff Johnston <jjohnstn@redhat.com>
9783
9784 * libc/include/stdlib.h: Add prototype for _strtod_r.
9785
9786 2001-04-24 Charles Wilson <cwilson@ece.gatech.edu
9787
9788 * libc/stdio/vprintf.c (vprintf): fix signature to use _DEFUN
9789 * libc/stdio/vprintf.c (_vprintf_r): new function
9790 * libc/stdio/vsnprintf.c (vsnprintf): fix signature to use _DEFUN
9791 * libc/stdio/vsnprintf.c (_vsnprintf_r): fix signature to use
9792 _DEFUN, and call _vfprintf_r, not vfprintf.
9793 * libc/stdio/vsprintf.c (vsprintf.c): fix signature to use _DEFUN
9794 * libc/stdio/vsprintf.c (_vsprintf_r): fix signature to use
9795 _DEFUN, and call _vfprintf_r, not vfprintf.
9796
9797 2001-04-22 Earnie Boyd <earnie@users.sourceforge.net>
9798
9799 * libc/include/sys/unistd.h [X_OK]: Use better protection against
9800 Cygwin X_OK definitions in sys/file.h.
9801
9802 Fri Apr 20 23:17:51 2001 Christopher Faylor <cgf@cygnus.com>
9803
9804 * libc/include/sys/time.h: Define timercmp and other macros for
9805 __CYGWIN__, too.
9806
9807 2001-04-20 Jeff Johnston <jjohnstn@redhat.com>
9808
9809 * acinclude.m4: Added --enable-malloc-debugging configure flag.
9810 * configure.host: For Cygwin specify -DMALLOC_PROVIDED if
9811 --enable-malloc-debugging selected.
9812 * aclocal.m4 configure: Regenerated.
9813 libm/aclocal.m4 libm/configure: Ditto.
9814 * libc/aclocal.m4 libc/configure: Ditto.
9815 * libc/machine/aclocal.m4 libc/machine/configure: Ditto.
9816 * libc/machine/*/aclocal.m4 libc/machine/*/configure: Ditto.
9817 * libc/sys/aclocal.m4 libc/sys/configure: Ditto.
9818 * libc/sys/*/aclocal.m4 libc/sys/*/configure: Ditto.
9819 * doc/aclocal.m4 doc/configure: Ditto.
9820
9821 2001-04-20 Jeff Johnston <jjohnstn@redhat.com>
9822
9823 * libc/include/stdio.h[!_REENT_ONLY]: Moved various functions together
9824 into one list.
9825 [!__STRICT_ANSI__]: Moved non-ANSI I/O functions in this list.
9826 (vfscanf, vscanf, vsscanf, _vfscanf_r, _vscanf_r, _vsscanf_r): New
9827 function prototypes.
9828 (_fscanf_r, _sscanf_r): Ditto.
9829 * libc/include/stdlib.h: Added _strtod_r prototype.
9830 * libc/stdio/Makefile.am: Add new v*scanf functions.
9831 * libc/stdio/Makefile.in: Regenerate.
9832 * libc/stdio/fscanf.c: Reorganized so HAVE_STDC only affects prototype
9833 and code is shared. Added reentrant _fscanf_r which calls __svfscanf_r.
9834 * libc/stdio/scanf.c: Changed to call __svfscanf_r.
9835 * libc/stdio/sscanf.c: Changed documentation to add reentrant routines.
9836 (sscanf): Changed to call __svfscanf_r with _REENT argument.
9837 (_sscanf_r): New routine.
9838 * libc/stdio/local.h: Removed __svfscanf prototype and replaced it
9839 with __svfscanf_r prototype.
9840 * libc/stdio/vfscanf.c (vfscanf, _vfscanf_r: New
9841 routines.
9842 (__svfscanf_r): Reentrant version of __svfscanf which takes reetrancy
9843 structure as argument as calls reentrant versions of helper functions
9844 (e.g. _strtol_r, _strtoul_r). Also replaced calls to atol and atof
9845 to _strtol_r and _strtod_r respectively.
9846 * libc/stdio/vfscanf.c: Also changed __svfscanf to call __svfscanf_r.
9847 * libc/stdlib/strtod.c (strtod): Changed to call _strtod_r with
9848 _REENT argument.
9849 * libc/stdio/vscanf.c: New file.
9850 * libc/stdio/vsscanf.c: Ditto.
9851
9852 2001-04-19 Robert Collins <rbtcollins@hotmail.com>
9853
9854 * include/time.h[__CYGWIN__]: Define tzname to _tzname if not defined.
9855 Define daylight to _daylight if it is not defined
9856 Prepare a variable export of timezone based on timezonevariable.
9857 (Cannot be used with the timezone() function.)
9858
9859 2001-04-17 Stephen L. Moshier <moshier@moshier.ne.mediaone.net>
9860
9861 * newlib/libm/math/ef_asin.c (pio2_hi, pio2_lo, pio4_hi):
9862 Correct the numerical values.
9863
9864 2001-04-13 Robert Collins <rbtcollins@hotmail.com>
9865
9866 * libc/include/sys/unistd.h: Add pthread_atfork (Cygwin only).
9867
9868 Thu Apr 12 23:11:00 2001 Corinna Vinschen <corinna@vinschen.de>
9869
9870 * libc/include/sys/errno.h: Add ECASECLASH to indicate case clash
9871 on case insensitve file systems.
9872
9873 2001-04-12 Robert Collins <rbtcollins@hotmail.com>
9874
9875 * libc/include/sys/features.h: Add appropriate defines for Cygwin
9876 pthread support.
9877 * libc/include/sys/signal.h: Remove unneeded __CYGWIN__ protection.
9878 * libc/include/sys/types.h: Protect __CYGWIN__ from the rtems pthreads
9879 types. Include <cygwin/types.h> for the cygwin specific typedefs.
9880
9881 2001-04-04 Richard Sandiford <rsandifo@redhat.com>
9882
9883 * libc/include/machine/ieeefp.h: Comment about new configuration
9884 macros _FLT_LARGEST_EXPONENT_IS_NORMAL and _FLT_NO_DENORMALS.
9885 * libm/common/fdlib.h: Define new macros for testing floats.
9886 * libm/common/sf_*: Use them.
9887 * libm/math/ef_*: Likewise.
9888 * libm/math/sf_*: Likewise.
9889
9890 2001-03-29 Jeff Johnston <jjohnstn@redhat.com>
9891
9892 * libc/sys/arm/setjmp.S: Added .code 16 specifier for thumb-mode
9893 prolog to by-pass possible assembler error.
9894
9895 2001-03-21 Egor Duda <deo@logos-m.ru>
9896
9897 Allow building internal stubs for non-reentrant syscalls
9898 if target provides its own malloc
9899 * libc/reent/reent.c (errno): Move definition here.
9900 * libc/reent/sbrkr.c: From here.
9901
9902 2001-03-20 Danny Smith <dannysmith@users.sourceforge.net>
9903
9904 * libc/include/sys/types.h (BSD int typedefs): Guard with
9905 _BSDTYPES_DEFINED rather than _WINSOCK_H.
9906 (fd_set): Add !defined __USE_W32_SOCKETS to guard; define
9907 _SYS_TYPES_FD_SET.
9908 * libc/include/sys/unistd.h (gethostname): Don't declare if defined
9909 (_WINSOCK_H) || defined (__USE_W32_SOCKETS).
9910
9911 Sat Mar 17 18:30:00 2001 Corinna Vinschen <corinna@vinschen.de>
9912
9913 * libc/include/sys/unistd.h: Add _PC_POSIX_PERMISSONS and
9914 _PC_POSIX_SECURITY constants for Cygwin.
9915
9916 Wed Mar 14 9:34:00 2001 Corinna Vinschen <corinna@vinschen.de>
9917
9918 * libc/sys/cygwin/crt0.c: Add copyright hint.
9919 * libc/sys/cygwin/sys/dirent.h: Ditto.
9920 * libc/sys/cygwin/sys/param.h: Ditto.
9921 * libc/sys/cygwin/sys/utime.h: Ditto.
9922 * libc/sys/cygwin/sys/utmp.h: Ditto.
9923
9924 2001-03-13 Alexandre Oliva <aoliva@redhat.com>
9925
9926 * libc/stdio/vfprintf.c (QUADINT) [_NO_LONGLONG]: Make it
9927 equivalent to LONGINT.
9928
9929 2001-03-08 Richard Sandiford <rsandifo@redhat.com>
9930
9931 * (libc/include/machine/setjmp.h): Use 23 long long ints for a
9932 jmpbuf on MIPS64 targets.
9933 * (libc/machine/mips/setjmp.S): Add MIPS64 version.
9934
9935 Wed Mar 7 16:02:07 2001 Christopher Faylor <cgf@cygnus.com>
9936
9937 * libc/include/sys/config.h: Use ssize_t for Cygwin read/write
9938 declarations.
9939
9940 Mon Mar 5 21:48:54 2001 J"orn Rennecke <amylaar@redhat.com>
9941
9942 * libc/include/sys/config.h (_READ_WRITE_RETURN_TYPE): Define.
9943 For RTEMS, define to be ssize_t. Default to int if not defined.
9944 * libc/stdio/sscanf.c (eofread): Return _READ_WRITE_RETURN_TYPE.
9945 * libc/stdio/stdio.c (__sread, __swrite): Likewise.
9946 * libc/stdio/local.h (__sread, __swrite): Likewise.
9947 * libc/include/sys/reent.h (_read, _write): Likewise.
9948 * libc/include/sys/unistd.h (read, write, _read, _write): Likewise.
9949 * libc/syscalls/sysread.c (read): Likewise.
9950 * libc/syscalls/syswrite.c (write): Likewise.
9951
9952 2001-03-05 Jeff Johnston <jjohnstn@redhat.com>
9953
9954 * libc/time/mktime.c: Add L suffix to _SEC_IN_xxxx constants.
9955
9956 Sat Mar 3 00:34:14 2001 Christopher Faylor <cgf@cygnus.com>
9957
9958 * libc/include/sys/stat.h: Use special defines for executable stat bits
9959 when compiling for Cygwin.
9960 * libc/include/sys/unistd.h: Use special define for X_OK when compiling
9961 for Cygwin.
9962
9963 2001-03-02 Jeff Johnston <jjohnstn@redhat.com>
9964
9965 * libc/string/strtok.c: Add #undef of __STRICT_ANSI__ so prototype
9966 of strtok_r is always defined.
9967
9968 2001-03-02 Jeff Johnston <jjohnstn@redhat.com>
9969
9970 * libc/include/machine/ansi.h: New dummy header file.
9971
9972 2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9973
9974 * libc/include/machine/setjmp-dj.h: With DJ Delorie's permission,
9975 changed the copyright information to allow free modification of the
9976 file with no reference to "copying.dj".
9977 * libc/include/sys/stat-dj.h: Ditto.
9978 * libc/machine/i386/setjmp.S: Ditto.
9979 * libc/sys/h8300hms/sys/file.h: Ditto.
9980 * libc/sys/sysmec/access.c: Ditto.
9981 * libc/sys/sysnecv850/access.c: Ditto.
9982 * libc/stdio/mktemp.c: Fixed typo for the word copyright.
9983 * libc/stdlib/getenv_r.c: Ditto.
9984 * libc/stdlib/putenv_r.c: Ditto.
9985 * libc/stdlib/setenv_r.c: Ditto.
9986 * libc/stdlib/getenv.c: Removed DJ reference since any possible
9987 modifications will now be in the _r version of this file.
9988 * libc/stdlib/putenv.c: Ditto.
9989 * libc/stdlib/setenv.c: Ditto.
9990 * libc/sys/go32/copying.dj: Removed DJ's address which is no longer
9991 valid. Added a reference to DJ's web page that contains his address.
9992 * libc/sys/go32/*.s: Removed references to DJ's old address.
9993 * libc/sys/go32/*.c: Ditto.
9994 * libc/sys/go32/*.h: Ditto.
9995 * libc/sys/go32/*.S: Ditto.
9996 * libc/sys/go32/sys/*.h: Ditto.
9997
9998 2001-02-21 Jeff Johnston <jjohnstn@redhat.com>
9999
10000 * libc/stdio/fdopen.c (fdopen): Protect calls to _fcntl() with
10001 HAVE_FCNTL flag check.
10002 * configure.host: Define HAVE_FCNTL for Cygwin, go32, RTEMS, sparc64,
10003 powerpcle, x86 netware, x86 sco, x86 Linux and Vxworks.
10004
10005 Thu Feb 15 01:39:51 2001 Christopher Faylor <cgf@cygnus.com>
10006
10007 * libc/include/sys/signal.h: Always include sys/types.h under Cygwin.
10008
10009 2001-02-14 Kazuhiro Fujieda <fujieda@jaist.ac.jp>
10010
10011 * libc/include/stdlib.h: Add declarations of rand48 functions and
10012 their reentrant versions.
10013 * libc/include/sys/reent.h: Move macros from rand48.h. Add
10014 struct _rand48 for shared parameters of rand48 functions.
10015 (struct _reent): Add a variable _r48 of struct _rand48.
10016 (_REENT_INIT): Add _r48 initialization.
10017 * libc/stdlib/Makefile.am (lib_a_SOURCES): Add rand48 functions.
10018 (CHEWOUT_FILES): Add rand48.def.
10019 * libc/stdlib/Makefile.am: Add dependencies for rand48 functions.
10020 * libc/stdlib/Makefile.in: Regenerated.
10021 * libc/stdlib/drand48.c (drand48, _drand48_r): Derived from the
10022 NetBSD C library.
10023 * libc/stdlib/erand48.c (erand48, _erand48_r): Ditto.
10024 * libc/stdlib/jrand48.c (jrand48, _jrand48_r): Ditto.
10025 * libc/stdlib/lcong48.c (lcong48, _lcong48_r): Ditto.
10026 * libc/stdlib/lrand48.c (lrand48, _lrand48_r): Ditto.
10027 * libc/stdlib/mrand48.c (mrand48, _mrand48_r): Ditto.
10028 * libc/stdlib/nrand48.c (nrand48, _nrand48_r): Ditto.
10029 * libc/stdlib/seed48.c (seed48, _seed48_r): Ditto.
10030 * libc/stdlib/srand48.c (srand48, _srand48_r): Ditto.
10031 * libc/stdlib/rand48.c (__dorand48): Ditto.
10032 * libc/stdlib/rand48.h: Ditto, and modify declarations of global
10033 parameters into macros referring them in the reentrant structure.
10034
10035 2001-02-12 Jeff Johnston <jjohnstn@redhat.com>
10036
10037 * libc/include/sys/stat.h: Add mknod for Cygwin now that
10038 Cygwin definition has correct prototype.
10039
10040 2001-02-08 Jeff Johnston <jjohnstn@redhat.com>
10041
10042 * libc/include/sys/stat.h: Must revert change for mknod
10043 for CYGWIN until winsup/cygwin/syscalls.cc changes mknod
10044 prototype.
10045
10046 2001-02-08 Jeff Johnston <jjohnstn@redhat.com>
10047
10048 * libc/include/stdio.h: Revert putw prototype.
10049
10050 2001-02-08 Edward M. Lee <tailbert@yahoo.com>
10051
10052 * libc/include/grp.h: add prototype for initgroups.
10053 * libc/include/stdio.h: fix prototype for putw.
10054 * libc/include/sys/signal.h: add prototype for killpg.
10055 * libc/include/sys/stat.h: enable mknod/lstat for CYGWIN.
10056 * libc/include/sys/unistd.h: add prototypes for getpgid, setpgrp,
10057 vhangup and remove duplicate sysconf prototype.
10058
10059 2001-02-07 Jeff Johnston <jjohnstn@redhat.com>
10060
10061 * libc/sys/rtems/sys/types.h: Removed.
10062
10063 2001-02-05 Charles Wilson <cwilson@ece.gatech.edu>
10064
10065 * libc/include/locale.h: add LC_MESSAGES definition
10066
10067 2001-02-01 Alexandre Oliva <aoliva@redhat.com>
10068
10069 * libc/sys/sh/sys/syscall.h (SYS_get_argc, SYS_get_argN_len,
10070 SYS_get_argN):
10071 * libc/sys/sh/syscalls.c (__setup_argv_for_main,
10072 __setup_argv_and_call_main): New.
10073
10074 2001-01-31 Jeff Johnston <jjohnstn@redhat.com>
10075
10076 * libc/include/stdio.h (FILENAME_MAX): Changed to use __FILENAME_MAX__
10077 if defined.
10078 (FOPEN_MAX): Changed to use __FOPEN_MAX__ if defined.
10079 (L_tmpnam): Changed to use __L_tmpnam__ if defined.
10080 * libc/include/sys/config.h: Changed to set __FILENAME_MAX__
10081 appropriately for Cygwin and RTEMS so not to exceed PATH_MAX.
10082
10083 Mon Jan 29 23:03:06 2001 Christopher Faylor <cgf@cygnus.com>
10084
10085 * libc/stdlib/mallocr.c: Undefine windows preprocessor variables when
10086 compiling under Cygwin.
10087
10088 2001-01-29 Jeff Johnston <jjohnstn@redhat.com>
10089
10090 * libc/include/math.h (signgam): Change to errno-like solution
10091 using a function to return the address of the real signgam.
10092 * libc/reent/signgam.c: New file containing __signgam().
10093 * libc/reent/Makefile.am: Added signgam.c to list of files.
10094 * libc/reent/Makefile.in: Regenerated.
10095
10096 2001-01-25 Alexandre Oliva <aoliva@redhat.com>
10097
10098 * libc/sys/sh/syscalls.c (_times): New.
10099
10100 * configure.host (sh*-*-*): Add -DHAVE_GETTIMEOFDAY to newlib_cflags.
10101 * libc/sys/sh/syscalls.c (_gettimeofday): New.
10102
10103 2001-01-23 Jeff Johnston <jjohnstn@redhat.com>
10104
10105 * libc/include/math.h (signgam): Regress previous fix as
10106 it does not handle programs with extern int signgam in them.
10107
10108 2001-01-23 Jeff Johnston <jjohnstn@redhat.com>
10109
10110 * libc/include/math.h (signgam): Changed to a macro refering to
10111 its location in the reentrant structure.
10112
10113 2001-01-23 Jeff Johnston <jjohnstn@redhat.com>
10114
10115 * libc/stdio/vfprintf.c (_VFPRINTF_R): Modification to fix
10116 that suppressed . for %.0f, 0.1. Check now looks if there
10117 are padding zeroes (expt) in addition to any digits (ndig) to
10118 print.
10119
10120 2001-01-18 Jeff Johnston <jjohnstn@redhat.com>
10121
10122 * libc/sys/arc/Makefile.am: New file.
10123 * libc/sys/arc/Makefile.in: Ditto.
10124 * libc/sys/arc/aclocal.m4: Ditto.
10125 * libc/sys/arc/configure: Ditto.
10126 * libc/sys/arc/configure.in: Ditto.
10127 * libc/sys/arc/crt0.S: Ditto.
10128 * libc/sys/arc/isatty.c: Ditto.
10129 * libc/sys/arc/mem-layout.c: Ditto.
10130 * libc/sys/arc/sbrk.c: Ditto.
10131 * libc/sys/arc/syscalls.c: Ditto.
10132 * libc/sys/arc/sys/syscall.h: Ditto.
10133
10134 Wed Jan 17 23:20:56 2001 Christopher Faylor <cgf@cygnus.com>
10135
10136 * libc/include/sys/unistd.h: Use correct declaration for setdtablesize.
10137
10138 Fri Jan 12 00:34:31 2001 Christopher Faylor <cgf@cygnus.com>
10139
10140 * libc/include/sys/signal.h: Add some SA_* defines for Cygwin.
10141
10142 Thu Jan 11 20:42:06 2001 Earnie Boyd <earnie_boyd@yahoo.com>
10143
10144 * libc/include/sys/features.h: __CYGWIN__ preferred over __CYGWIN32__
10145
10146 2001-01-09 Nick Clifton <nickc@redhat.com>
10147
10148 * configure.host (v859): Remove unsupported compiler options.
10149
10150 Fri Jan 5 19:57:00 EST 2001 Aaron J. Grier <aaron@frye.com>
10151
10152 * src/newlib/configure.host (*-*-rtems*): add printf long long
10153 support for RTEMS.
10154
10155 2000-12-19 Graham Stott <grahams@redhat.com>
10156
10157 * libc/machine/xscale/memcmp.c (memcmp): Add clobber for "lr".
10158
10159 Wed Dec 14 Jeff Johnston <jjohnstn@redhat.com>
10160
10161 * configure.host: Turn on long double I/O for Cygwin.
10162
10163 Wed Dec 14 Jeff Johnston <jjohnstn@redhat.com>
10164
10165 * MAINTAINERS: Removed Ranjith.
10166 * NEWS: Updated for 1.9.0.
10167 * README: Updated.
10168 * acinclude.m4: Updated to release 1.9.0.
10169 * aclocal.m4 configure
10170 doc/aclocal.m4 doc/configure libc/aclocal.m4 libc/configure
10171 libc/machine/aclocal.m4 libc/machine/configure
10172 libc/machine/a29k/aclocal.m4 libc/machine/a29k/configure
10173 libc/machine/arm/aclocal.m4 libc/machine/arm/configure
10174 libc/machine/d10v/aclocal.m4 libc/machine/d10v/configure
10175 libc/machine/d30v/aclocal.m4 libc/machine/d30v/configure
10176 libc/machine/fr30/aclocal.m4 libc/machine/fr30/configure
10177 libc/machine/h8300/aclocal.m4 libc/machine/h8300/configure
10178 libc/machine/h8500/aclocal.m4 libc/machine/h8500/configure
10179 libc/machine/hppa/aclocal.m4 libc/machine/hppa/configure
10180 libc/machine/i386/aclocal.m4 libc/machine/i386/configure
10181 libc/machine/i960/aclocal.m4 libc/machine/i960/configure
10182 libc/machine/m32r/aclocal.m4 libc/machine/m32r/configure
10183 libc/machine/m68k/aclocal.m4 libc/machine/m68k/configure
10184 libc/machine/m88k/aclocal.m4 libc/machine/m88k/configure
10185 libc/machine/mips/aclocal.m4 libc/machine/mips/configure
10186 libc/machine/mn10200/aclocal.m4 libc/machine/mn10200/configure
10187 libc/machine/mn10300/aclocal.m4 libc/machine/mn10300/configure
10188 libc/machine/necv70/aclocal.m4 libc/machine/necv70/configure
10189 libc/machine/powerpc/aclocal.m4 libc/machine/powerpc/configure
10190 libc/machine/sh/aclocal.m4 libc/machine/sh/configure
10191 libc/machine/sparc/aclocal.m4 libc/machine/sparc/configure
10192 libc/machine/tic80/aclocal.m4 libc/machine/tic80/configure
10193 libc/machine/v850/aclocal.m4 libc/machine/v850/configure
10194 libc/machine/w65/aclocal.m4 libc/machine/w65/configure
10195 libc/machine/xscale/aclocal.m4 libc/machine/xscale/configure
10196 libc/machine/z8k/aclocal.m4 libc/machine/z8k/configure
10197 libc/sys/aclocal.m4 libc/sys/configure
10198 libc/sys/a29khif/aclocal.m4 libc/sys/a29khif/configure
10199 libc/sys/arm/aclocal.m4 libc/sys/arm/configure
10200 libc/sys/cygwin/aclocal.m4 libc/sys/cygwin/configure
10201 libc/sys/d10v/aclocal.m4 libc/sys/d10v/configure
10202 libc/sys/decstation/aclocal.m4 libc/sys/decstation/configure
10203 libc/sys/go32/aclocal.m4 libc/sys/go32/configure
10204 libc/sys/h8300hms/aclocal.m4 libc/sys/h8300hms/configure
10205 libc/sys/h8500hms/aclocal.m4 libc/sys/h8500hms/configure
10206 libc/sys/linux/aclocal.m4 libc/sys/linux/configure
10207 libc/sys/m88kbug/aclocal.m4 libc/sys/m88kbug/configure
10208 libc/sys/netware/aclocal.m4 libc/sys/netware/configure
10209 libc/sys/rtems/aclocal.m4 libc/sys/rtems/configure
10210 libc/sys/sh/aclocal.m4 libc/sys/sh/configure
10211 libc/sys/sparc64/aclocal.m4 libc/sys/sparc64/configure
10212 libc/sys/sun4/aclocal.m4 libc/sys/sun4/configure
10213 libc/sys/sysmec/aclocal.m4 libc/sys/sysmec/configure
10214 libc/sys/sysnec810/aclocal.m4 libc/sys/sysnec810/configure
10215 libc/sys/sysnecv850/aclocal.m4 libc/sys/sysnecv850/configure
10216 libc/sys/sysvi386/aclocal.m4 libc/sys/sysvi386/configure
10217 libc/sys/sysvnecv70/aclocal.m4 libc/sys/sysvnecv70/configure
10218 libc/sys/tic80/aclocal.m4 libc/sys/tic80/configure
10219 libc/sys/w65/aclocal.m4 libc/sys/w65/configure
10220 libc/sys/z8ksim/aclocal.m4 libc/sys/z8ksim/configure
10221 libm/aclocal.m4 libm/configure: Regenerated.
10222
10223 Wed Dec 13 11:52:00 2000 Corinna Vinschen <vinschen@cygnus.com>
10224
10225 * libc/include/sys/unistd.h: Add declarations for `chroot' and `getwd'
10226 when __CYGWIN__ is defined.
10227
10228 2000-12-13 Jeff Johnston <jjohnstn@redhat.com>
10229
10230 * libc/stdlib/ldtoa.c (_ldcheck): New routine
10231 that categorizes a long double as NaN, Infinity, or other.
10232 * libc/stdio/vfprintf.c [WANT_IO_LONG_DBL](_VFPRINTF_R): Removed
10233 isinfl and isnanl static routines which were i386-specific. Changed
10234 calls to the two removed routines to a single _ldcheck call.
10235 * libc/stdio/vfieeefp.h (ldieee): Fixed missing semi-colons.
10236
10237 2000-12-13 Jeff Johnston <jjohnstn@redhat.com>
10238
10239 * Makefile.am: Fixed install-data-local target to use
10240 $(mkinstalldirs) for the installed header files to ensure
10241 the directories exist before copying.
10242 * Makefile.in: Regenerated.
10243
10244 2000-12-12 Jeff Johnston <jjohnstn@redhat.com>
10245
10246 * libc/include/sys/unistd.h: Restored Cygwin _SC
10247 constants and moved new constants appropriately
10248 so Cygwin will build.
10249
10250 2000-12-11 Joel Sherrill <joel@OARcorp.com>
10251
10252 * Merge RTEMS specific .h files into main libc/include.
10253 * libc/sys/rtems/include/signal.h: Removed.
10254 * libc/sys/rtems/include/time.h: Removed.
10255 * libc/sys/rtems/sys/features.h: Removed.
10256 * libc/sys/rtems/sys/sched.h: Removed.
10257 * libc/sys/rtems/sys/siginfo.h: Removed.
10258 * libc/sys/rtems/sys/signal.h: Removed.
10259 * libc/sys/rtems/sys/time.h: Removed.
10260 * libc/sys/rtems/sys/times.h: Removed.
10261 definitions for time_t and clock_t since these are
10262 no longer in time.h.
10263 * libc/include/pthread.h: New file.
10264 * libc/include/sys/sched.h: New file.
10265 * libc/include/sys/features.h: New file.
10266 * libc/include/time.h: Removed duplicate definition of clock_t
10267 and time_t, get them from <sys/types.h> instead. Add prototypes
10268 for POSIX clock and timer functionality.
10269 * libc/sys/linux/sys/types.h: Changed to include
10270 * libc/include/machine/types.h: Add _CLOCKID_T_ and _TIMER_T_.
10271 * libc/include/sys/signal.h: Add more complete set of POSIX
10272 signal functionality including real-time and threaded signals.
10273 * libc/include/sys/types.h: Add clock_t, time_t, struct
10274 timespec, and struct itimerspec. Centralizing these makes
10275 things cleaner. RTEMS uses 64-bit dev_t.
10276 Added numerous primitive definitions
10277 for pthreads including macros, pthread_attr_t,
10278 pthread_mutexattr_t, pthread_condattr_t, pthread_key_t,
10279 pthread_once_t, and pthread_t.
10280 * libc/include/sys/unistd.h: Added getlogin_r() prototype.
10281 If RTEMS follow POSIX on read(), write() and sbrk() prototype.
10282 Feature flags removed and moved to new file <sys/features.h>.
10283 Full set of POSIX sysconf() constants
10284
10285 2000-12-08 Werner Almesberger <Werner.Almesberger@epfl.ch>
10286
10287 * configure.host: Added x86 linux target.
10288 * libc/unix/getpass.c (_PATH_PASSWD, _PASSWORD_LEN): Default
10289 definitions provided if not already defined.
10290 * libc/sys/linux/crt0.c: New file.
10291 * libc/sys/linux/Makefile.am: Ditto.
10292 * libc/sys/linux/Makefile.in: Ditto.
10293 * libc/sys/linux/aclocal.m4: Ditto.
10294 * libc/sys/linux/brk.c: Ditto.
10295 * libc/sys/linux/configure: Ditto.
10296 * libc/sys/linux/configure.in: Ditto.
10297 * libc/sys/linux/getoptlong.c: Ditto.
10298 * libc/sys/linux/ids.c: Ditto.
10299 * libc/sys/linux/inode.c: Ditto.
10300 * libc/sys/linux/io.c: Ditto.
10301 * libc/sys/linux/linux.c: Ditto.
10302 * libc/sys/linux/process.c: Ditto.
10303 * libc/sys/linux/realpath.c: Ditto.
10304 * libc/sys/linux/select.c: Ditto.
10305 * libc/sys/linux/signal.c: Ditto.
10306 * libc/sys/linux/systat.c: Ditto.
10307 * libc/sys/linux/termios.c: Ditto.
10308 * libc/sys/linux/time.c: Ditto.
10309 * libc/sys/linux/wait.c: Ditto.
10310 * libc/sys/linux/include/alloca.h: Ditto.
10311 * libc/sys/linux/include/getopt.h: Ditto.
10312 * libc/sys/linux/include/stdint.h: Ditto.
10313 * libc/sys/linux/include/unistd.h: Ditto.
10314 * libc/sys/linux/sys/cdefs.h: Ditto.
10315 * libc/sys/linux/sys/dirent.h: Ditto.
10316 * libc/sys/linux/sys/errno.h: Ditto.
10317 * libc/sys/linux/sys/fcntl.h: Ditto.
10318 * libc/sys/linux/sys/file.h: Ditto.
10319 * libc/sys/linux/sys/ioctl.h: Ditto.
10320 * libc/sys/linux/sys/resource.h: Ditto.
10321 * libc/sys/linux/sys/signal.h: Ditto.
10322 * libc/sys/linux/sys/stat.h: Ditto.
10323 * libc/sys/linux/sys/syscall.h: Ditto.
10324 * libc/sys/linux/sys/termios.h: Ditto.
10325 * libc/sys/linux/sys/time.h: Ditto.
10326 * libc/sys/linux/sys/types.h: Ditto.
10327 * libc/sys/linux/sys/utmp.h: Ditto.
10328 * libc/sys/linux/sys/utsname.h: Ditto.
10329 * libc/sys/linux/sys/wait.h: Ditto.
10330
10331 2000-12-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
10332
10333 * Makefile.am: $(INSTALL), $(INSTALL_DATA), and $(INSTALL_PROGRAM)
10334 can be a relative path to $(top_srcdir)/install.sh so ensure the
10335 autoconf detected settings are properly passed recursively.
10336 Similarly, add AM_MAKEFLAGS to FLAGS_TO_PASS so they also get passed
10337 properly to subdirectories.
10338 * Makefile.in: Regenerated.
10339
10340 2000-12-07 Jay Kulpinski <jskulpin@eng01.gdds.com>
10341
10342 * libc/stdio/vfprintf.c: Minor modification to avoid requiring
10343 a floating point register unless really printing a floating
10344 point number.
10345
10346 2000-12-07 Jeff Johnston <jjohnstn@redhat.com>
10347
10348 * libc/stdlib/ldtoa.c: Removed include of alloca.h.
10349 Also removed \r's.
10350 (asctoeg): Replaced alloca call with stack array and malloc
10351 when storage exceeds reasonable limit.
10352 (e53toe): Fixed einfin calls missing ldp parameter.
10353 (eiisinf): Hide behind check for LDBL_MANT_DIG == 64.
10354
10355 2000-12-06 Jeff Johnston <jjohnstn@redhat.com>
10356
10357
10358 * libc/stdio/vfscanf.c: Fix typo for _NO_LONGDBL macro.
10359
10360 2000-12-06 Jeff Johnston <jjohnstn@redhat.com>
10361
10362 * libc/stdlib/Makefile.am: Added ldtoa.c to list of sources.
10363 * libc/stdlib/Makefile.in: Regenerated.
10364 * libc/stdio/floatio.h: Added suitable MAXEXP for long double.
10365 * libc/stdio/vfieeefp.h: Added long double bit structures.
10366 * libc/stdio/vfprintf.c[WANT_IO_LONG_DBL]: Added long double support.
10367 [WANT_IO_LONG_DBL](isinfl, isnanl): New static long double routines.
10368 (exponent): Changed expbuf to reasonable maximum instead of MAXEXP.
10369 * libc/stdio/vfscanf.c[WANT_IO_LONG_DBL]: Added long double support.
10370 * libc/stdlib/ldtoa.c: New file containing _ldtoa_r and
10371 _strtold routines used for conversions between character
10372 and long double.
10373
10374 Wed Dec 6 12:01:00 2000 Corinna Vinschen <vinschen@cygnus.com>
10375
10376 * libc/include/stdlib.h: Add declarations for `mkstemp' and `mktemp'.
10377
10378 2000-12-04 Joel Sherrill <joel@OARcorp.com>
10379
10380 * libc/include/machine/time.h: RTEMS systems can configure clock
10381 tick rate so use sysconf() to ask.
10382
10383 2000-12-04 Joel Sherrill <joel@OARcorp.com>
10384
10385 * libc/include/sys/times.h: Add reference to POSIX standard.
10386
10387 2000-12-04 Joel Sherrill <joel@OARcorp.com>
10388
10389 * libc/include/sys/time.h: Added BSD timer manipulation macros
10390 used by RTEMS code.
10391
10392 2000-12-04 Joel Sherrill <joel@OARcorp.com>
10393
10394 * libc/sys/rtems/crt0.c: Add stubs for functions implicitly
10395 referenced by code generated by gcc 2.8.1.
10396 (a29k): Add stubs for V_SPILL, V_FILL, V_BSD_OS, V_EPI_OS to
10397 satisfy gcc.
10398
10399 2000-12-04 Joel Sherrill <joel@OARcorp.com>
10400
10401 * libc/stdlib/system.c: Avoid compiling do_system() for RTEMS.
10402
10403 2000-12-04 Joel Sherrill <joel@OARcorp.com>
10404
10405 * libc/include/ieeefp.h: Added entries for OpenCores CPUs.
10406
10407 2000-12-04 Joel Sherrill <joel@OARcorp.com>
10408
10409 * configure.host (or16, or32): New entries for OpenCores
10410 OpenRisc CPUs.
10411 (*-*-rtems*): Add -DNO_EXEC.
10412
10413 2000-12-04 Keith Outwater <vac4050@cae597.rsc.raytheon.com>
10414
10415 * libc/include/sys/errno.h: Added comments on many error numbers.
10416 * libc/string/strerror.c: Added some more strings.
10417
10418 2000-11-30 Jeff Johnston <jjohnstn@redhat.com>
10419
10420 * libc/sys/sh/syscalls.c (_link): New stub.
10421
10422 2000-11-29 Nick Clifton <nickc@redhat.com>
10423
10424 * configure.host: Add xscale target.
10425 * libc/machine/xscale: New directory.
10426 * libc/machine/xscale/Makefile.am: New file.
10427 * libc/machine/xscale/Makefile.in: New file.
10428 * libc/machine/xscale/aclocal.m4: New file.
10429 * libc/machine/xscale/configure: New file.
10430 * libc/machine/xscale/configure.in: New file.
10431 * libc/machine/xscale/memchr.S: New file.
10432 * libc/machine/xscale/memcmp.S: New file.
10433 * libc/machine/xscale/memcpy.S: New file.
10434 * libc/machine/xscale/memmove.S: New file.
10435 * libc/machine/xscale/memset.S: New file.
10436 * libc/machine/xscale/strchr.S: New file.
10437 * libc/machine/xscale/strcmp.S: New file.
10438 * libc/machine/xscale/strcpy.S: New file.
10439 * libc/machine/xscale/strlen.S: New file.
10440
10441 Sat Nov 25 11:24:00 2000 Corinna Vinschen <vinschen@cygnus.com>
10442
10443 * libc/include/sys/types.h: Change i to `__i' in FD_ZERO macro to
10444 avoid compiler warnings.
10445
10446 2000-11-22 Michael Meissner <meissner@redhat.com>
10447
10448 * libc/posix/execl.c (execl): Don't reference environ directly,
10449 reference it only via a static pointer to avoid problems with some
10450 shared library systems and with different uses of small data where
10451 the user specifies his own version of environ.
10452 * libc/posix/execv.c (execv): Ditto.
10453 * libc/stdlib/getenv_r.c (_findenv_r): Ditto.
10454 * libc/stdlib/setenv_r.c (_setenv_r,_unsetenv_r): Ditto.
10455 * libc/stdlib/system.c (system, !cygwin32 case): Ditto.
10456
10457 * libc/stdlib/getenv.c (environ): Delete unused reference to
10458 environ.
10459
10460 * libc/stdlib/getenv_r.c: Make initial comment friendlier to emacs
10461 colorization.
10462 * libc/stdlib/system.c: Ditto.
10463
10464 Tue Nov 21 20:32:21 2000 Christopher Faylor <cgf@cygnus.com>
10465
10466 * libc/sys/cygwin/sys/dirent.h: Change definition to avoid necessity of
10467 including windows headers.
10468
10469 2000-11-20 Jeff Johnston <jjohnstn@redhat.com>
10470
10471 * libc/include/sys/unistd.h: Removed definition of MAXNAMLEN.
10472 * libc/include/dirent.h: Added definition of MAXNAMLEN if
10473 not defined by sys/dirent.h.
10474 * libc/posix/execvp.c: Added include of dirent.h to get
10475 MAXNAMLEN value which used to be in unistd.h.
10476
10477 Mon Nov 6 12:56:00 2000 Corinna Vinschen <vinschen@cygnus.com>
10478
10479 * libc/include/sys/types.h: Change type of i to `size_t' in
10480 FD_ZERO macro to avoid compiler warnings.
10481
10482 Sun Oct 29 20:06:41 2000 Christopher Faylor <cgf@cygnus.com>
10483
10484 * libc/include/stdlib.h: Avoid declaring cfree under Cygwin.
10485 * libc/include/malloc.h: Ditto. Also remove obsolete declaration.
10486
10487 Tue Oct 24 20:16:00 2000 Corinna Vinschen <vinschen@cygnus.com>
10488
10489 * libc/include/sys/unistd.h: Add defines for sysconf values
10490 _SC_NPROCESSORS_CONF, _SC_NPROCESSORS_ONLN, _SC_PHYS_PAGES and
10491 _SC_AVPHYS_PAGES.
10492
10493 Mon Oct 9 20:26:33 2000 Christopher Faylor <cgf@cygnus.com>
10494
10495 * libc/include/sys/unistd.h: Add getdtablesize and setdtablesize
10496 declarations for __CYGWIN__.
10497
10498 2000-09-19 Geoffrey Keating <geoffk@cygnus.com>
10499
10500 * libc/signal/signal.c (__sigtramp_r): ISO C requires
10501 case labels to be integral constant expressions, so
10502 use an if/else tree instead.
10503 (_raise_r): Likewise.
10504
10505 2000-09-13 Jeff Johnston <jjohnstn@redhat.com>
10506
10507 * libc/machine/v850/setjmp.S: Fixed tab problems caused by
10508 clipping patch from e-mail reader.
10509
10510 2000-09-13 Will Cohen <wcohen@redhat.com>
10511
10512 * libc/machine/v850/setjmp.S (_setjmp): Save r1 rather than r0.
10513 Added return value 0.
10514 (_longjmp): Allow longjmp to return value of second argument
10515 passed to it.
10516
10517 2000-09-06 Jeff Johnston <jjohnstn@redhat.com>
10518
10519 * libc/include/sys/types.h (FD_ZERO): Remove call to bzero and
10520 inline code to prevent having to include another header file.
10521
10522 Wed Sep 6 15:06:40 2000 Christopher Faylor <cgf@cygnus.com>
10523
10524 * Makefile.am: Fix space vs. tab problem in install-data-local.
10525 * Makefile.in: Regenerate.
10526
10527 Wed Sep 6 13:49:51 2000 Christopher Faylor <cgf@cygnus.com>
10528
10529 * libc/include/_ansi.h (_EXFUN): Define specially for __CYGWIN__.
10530 (_EXPARM): New macro for defining a function parameter.
10531 * libc/include/stdlib.h: Use _EXPARM.
10532 * libc/stdlib/mallocr.c: Don't build cfree for Cygwin.
10533
10534 2000-09-05 Manfred Hollstein <manfredh@redhat.com>
10535
10536 * Makefile.am (install-data-local): Use optional $(DESTDIR) where
10537 required, as documented in the gnu coding standards.
10538 * Makefile.in: Regenerate.
10539
10540 2000-09-05 Jeff Johnston <jjohnstn@redhat.com>
10541
10542 * libc/include/fcntl.h (_FNDELAY): Changed to be _FNONBLOCK to
10543 make O_NDELAY and O_NONBLOCK have the same value.
10544
10545 2000-08-30 Kazu Hirata <kazu@hxi.com>
10546
10547 * libc/sys/h8300hms/crt0.S: Optimize for both speed and code size.
10548
10549 2000-08-30 Werner Almesberger <Werner.Almesberger@epfl.ch>
10550
10551 * libc/posix/execve.c: included unistd.h for "_execve" prototype.
10552 * libc/misc/unctrl.c libc/sys/sysvi386/crt0.c (sccsid): changed
10553 "#ifndef lint" to "#if defined(LIBC_SCCS) && !defined(lint)" like
10554 everywhere else.
10555
10556 2000-08-30 Geoffrey Keating <geoffk@cygnus.com>
10557
10558 * libc/string/swab.c: Specify that it's defined in <unistd.h>.
10559 * libc/include/string.h: Don't include <sys/types.h>,
10560 as it causes really bad namespace pollution. Don't declare
10561 swab(), it is properly declared in unistd.h.
10562
10563 2000-08-29 Werner Almesberger <Werner.Almesberger@epfl.ch>
10564
10565 * libc/unix/getpwent.c (getpwnam, getpwuid, getpwent): removed
10566 (broken) support for non-existent /etc/passwd field "comment".
10567
10568 2000-08-27 Werner Almesberger <Werner.Almesberger@epfl.ch>
10569
10570 * libc/posix/scandir.c (DIRSIZ, scandir): use struct dirent.d_namlen
10571 only if _DIRENT_HAVE_D_NAMLEN is defined.
10572 (alphasort): aligned prototype with
10573 libc/sys/cygwin/sys/dirent.h and simplified function body.
10574 * libc/posix/telldir.c (telldir): changed "telldir" prototype to
10575 long telldir (DIR *) as mentioned in annex B of POSIX.1
10576
10577 2000-08-27 Werner Almesberger <Werner.Almesberger@epfl.ch>
10578
10579 * libc/machine/i386/i386mach.h: added SOTYPE_FUNCTION to set type
10580 of global entry points if _I386MACH_NEED_SOTYPE_FUNCTION is defined;
10581 Added __CLI and __STI macros (controlled via
10582 _I386MACH_ALLOW_HW_INTERRUPTS macro).
10583 * libc/machine/i386/f_atan2.S libc/machine/i386/f_atan2f.S
10584 libc/machine/i386/f_frexp.S libc/machine/i386/f_frexpf.S
10585 libc/machine/i386/f_ldexp.S libc/machine/i386/f_ldexpf.S
10586 libc/machine/i386/f_log.S libc/machine/i386/f_log10.S
10587 libc/machine/i386/f_log10f.S libc/machine/i386/f_logf.S
10588 libc/machine/i386/f_tan.S libc/machine/i386/f_tanf.S
10589 libc/machine/i386/memchr.S libc/machine/i386/memcmp.S
10590 libc/machine/i386/memcpy.S libc/machine/i386/memmove.S
10591 libc/machine/i386/memset.S libc/machine/i386/setjmp.S
10592 libc/machine/i386/strchr.S libc/machine/i386/strlen.S:
10593 (that's libc/machine/i386/*.S) added SOTYPE_FUNCTION(symbol)
10594 for all global entry points.
10595 * libc/machine/i386/setjmp.S: removed code replicated in
10596 libc/machine/i386/i386mach.h and included i386mach.h instead;
10597 Use __CLI and __STI instead of cli and sti.
10598
10599 2000-08-25 DJ Delorie <dj@redhat.com>
10600
10601 * libc/include/sys/unistd.h (environ): this one isn't from the
10602 DLL, no __IMPORT
10603
10604 Fri Aug 25 13:37:11 2000 Christopher Faylor <cgf@cygnus.com>
10605
10606 * libc/stdlib/system.c (do_system): Eliminate explicit declaration of
10607 environ when compiling under cygwin since it is already declared in
10608 unistd.h.
10609
10610 2000-08-23 Werner Almesberger <Werner.Almesberger@epfl.ch>
10611
10612 * libc/stdlib/mprec.c (ulp, b2d, d2b): changed a few expressions
10613 like x << y-z to the equivalent x << (y-z).
10614 (d2b): changed if statements with assignment to perform the
10615 assignment prior to the if check.
10616 * libc/reent/reent.c: included stdlib.h for "_free_r" prototype.
10617 * libc/unix/getpass.c (getpass): moved "echo" assignment out of if.
10618 * libc/unix/ttyname.c: included string.h for "strcpy" prototype.
10619 * libc/unix/getcwd.c (ISDOT): added parentheses to clarify && and ||
10620 precedence.
10621 * libc/include/sys/unistd.h: added "vfork" prototype (for popen.c).
10622 Added "_execve" prototype (for execl.c, execle.c, execv.c, and
10623 execve.c).
10624 * libc/posix/popen.c (popen): added parentheses to clarify && and ||
10625 precedence.
10626 * libm/math/e_cosh.c (__ieee754_cosh): changed parentheses to
10627 clarify && and || precendence (and to remove pascalism).
10628 * libm/math/e_sinh.c (__ieee754_sinh): Ditto.
10629 * libm/math/s_infconst.c: added another pair of braces to all
10630 initializers for __infinity (need three: for __infinity[1] array,
10631 for union __dmath, and for i[2]).
10632
10633 2000-08-23 Werner Almesberger <Werner.Almesberger@epfl.ch>
10634
10635 * libc/stdlib/abort.c: changed description: uses "raise" instead of
10636 "getpid" and "kill"; added: uses "write" and "_exit".
10637 Also included unistd.h for "_exit" prototype.
10638 * libc/stdlib/system.c: included unistd.h for "execve" prototype,
10639 reent.h for "_fork_r" and "_wait_r" prototypes.
10640 (do_system): changed extern char *environ[] to POSIX-friendly
10641 extern char **environ.
10642 * libc/stdlib/wctomb_r.c: included string.h for "strlen" and "strcmp"
10643 prototypes.
10644 * libc/stdlib/remove.c: included reent.h for "_unlink_r" prototype.
10645 * libc/reent/execr.c: included sys/wait.h for "wait" prototype.
10646 * libc/reent/fstatr.c: included sys/stat.h for "fstat" prototype.
10647 * libc/reent/openr.c: included fcntl.h for "open" prototype.
10648 * libc/reent/signalr.c: included signal.h for "kill" prototype,
10649 unistd.h for "getpid" prototype.
10650 * libc/reent/statr.c: included sys/stat.h for "stat" prototype.
10651 * libc/reent/timer.c: included sys/time.h for "gettimeofday" prototype.
10652 * libc/unix/getut.c (utmpname): removed local, incorrect "strdup"
10653 prototype. Also included stdlib.h for "abort", string.h for
10654 "strdup" and "strncmp" prototypes.
10655 * libc/unix/getlogin.c: included string.h for "strncmp", "memset", and
10656 "strncpy", unistd.h for "read" and "close" prototypes.
10657 * libc/posix/execvp.c: included string.h for "strchr", "strlen", and
10658 "strcat" prototypes.
10659
10660 2000-08-23 Werner Almesberger <Wernen Almesberger@epfl.ch>
10661
10662 * libc/stdio/stdio.c (__swrite): declare "oldmode" only if it's
10663 used later (ifdef __SCLE)
10664 * libc/stdio/vfscanf.c (__svfscanf): declare "state" only if it's
10665 used later (ifdef MB_CAPABLE)
10666 * libc/string/memset.c (memset): removed unused variables "count"
10667 and "unaligned_addr"
10668 * libc/locale/locale.c (_setlocale_r): declare "lc_ctype" and
10669 "last_lc_ctype" only of they're used later (ifdef MB_CAPABLE)
10670 * libc/unix/getpwent.c (getpwnam): removed unused variables "uid"
10671 and "gid"
10672
10673 2000-08-23 Werner Almesberger <Werner.Almesberger@epfl.ch>
10674
10675 * libc/stdlib/envlock.c: changed documented "__env_lock" and
10676 "__env_unlock" prototype from "void *" or "char *" to
10677 "struct _reent *" to match real function. Also added include
10678 of envlock.h.
10679 * libc/stdlib/mlock.c: changed documented "__malloc_lock" and
10680 "__malloc_unlock" prototype from "void *" or "char *" to
10681 "struct _reent *" to match real function.
10682 * libc/stdlib/envlock.h: added "__env_lock" and "__env_unlock"
10683 prototypes (for getenv_r.c and setenv_r.c).
10684
10685 2000-08-22 Werner Almesberger <Werner.Almesberger@epfl.ch>
10686
10687 * libc/unix/getut.c (utmpname): added _CONST to reflect common use
10688 and prototype in cygwin's utmp.h
10689
10690 2000-08-16 Eric Fifer <efifer@sanwaint.com>
10691
10692 * libc/stdio/vfprintf.c (_vfprintf_r): suppress . with "%.0f", 0.1
10693
10694 2000-08-09 Nick Clifton <nickc@cygnus.com>
10695
10696 * libc/sys/arm/setjmp.S: Recode to clean up function prologues and
10697 epilogue and to allow the functions to be used in a Thumb based
10698 toolchain.
10699
10700 2000-08-08 Jeff Johnston <jjohnstn@redhat.com>
10701
10702 * libc/stdio/snprintf.c (snprintf, _snprintf_r): Fixed code
10703 so size of 0 results in nothing being written to string.
10704 Also fixed code so that when size is non-zero, there is only
10705 a maximum of size - 1 characters written to the array and
10706 a nul terminator is appended at the end.
10707 * libc/stdio/vsnprintf.c (vsnprintf, _vsnprintf_r): Ditto.
10708
10709 2000-08-01 DJ Delorie <dj@redhat.com>
10710
10711 * libc/include/sys/config.h: define __IMPORT appropriately
10712 * libc/include/ctype.h (_ctype_): use __IMPORT
10713 * libc/include/math.h (__infinity, signam, _LIB_VERSION): ditto
10714 * libc/include/math.h (__mb_cur_max): ditto
10715 * libc/include/time.h (_timezone, _daylight, _tzname): ditto
10716 * libc/include/unctrl.h (__unctrl, __unctrllen): ditto
10717 * libc/include/errno.h (_sys_errlist, _sys_nerr): ditto
10718 * libc/include/unistd.h (environ): ditto
10719
10720 2000-07-28 Michael Meissner <meissner@redhat.com>
10721
10722 * libc/include/math.h (__infinity): Declare as an array without
10723 bounds to get around small data support. Rewrite Cygwin support
10724 to be more general.
10725 * libm/math/s_infconst.c (__infinity): Ditto.
10726 * libm/mathfp/s_infconst.c (__infinity): Ditto.
10727
10728 Thu Jul 27 10:46:01 2000 Christopher Faylor <cgf@cygnus.com>
10729
10730 * libc/include/math.h: Use appropriate dll import linkage for
10731 __infinity under Cygwin.
10732
10733 2000-07-13 DJ Delorie <dj@cygnus.com>
10734
10735 * libc/stdio/vfprintf.c: pad 0.0 correctly with %e
10736
10737 Wed Jun 28 14:08:00 2000 Keith Walker <keith.walker@arm.com>
10738
10739 * libc/sys/arm/crt0.S (.LC30): Added missing length parameter
10740 to argument list for AngelSWI_Reason_GetCmdLine.
10741
10742 Tue Jun 27 15:49:00 2000 Marek Michalkiewicz <marekm@linux.org.pl>
10743
10744 * configure.host: Add support for AVR target.
10745 * libc/include/machine/ieeefp.h: Likewise.
10746 * libc/include/sys/config.h: Likewise.
10747
10748 Thu Jun 22 18:35:00 2000 Ranjith Kumaran <ranjith@cygnus.com>
10749
10750 * README: Newlib 1.8.2 must be built in a separate directory
10751 than the sources.
10752
10753 Tue Jun 20 14:30:00 2000 Jeff Johnston <jjohnstn@cygnus.com>
10754
10755 * libc/include/sys/reent.h (_rand_next): Added __extension__
10756 qualifier as long long type is not strict ANSI.
10757 * libc/stdlib/rand.c (rand): Added __extension__ qualifier
10758 to long long constant.
10759
10760 Fri Jun 16 23:02:00 2000 Corinna Vinschen <corinna@vinschen.de>
10761
10762 * libc/include/sys/unistd.h: Add prototypes for `seteuid' and
10763 `setegid' provided by Cygwin.
10764
10765 Thu Jun 15 0:21:00 2000 Corinna Vinschen <corinna@vinschen.de>
10766
10767 * libc/stdio/fdopen.c: Take explicit given bin/textmode into
10768 account for Cygwin.
10769
10770 Fri Jun 9 14:28:00 2000 Jeff Johnston <jjohnstn@cygnus.com>
10771
10772 * libc/include/sys/reent.h (_rand_next): Changed to
10773 unsigned long long and moved to end of _reent struct in _new union.
10774 (_REENT_INIT): Changed to move _rand_next initialization.
10775 * libc/stdlib/rand.c (rand): Changed to use unsigned long long
10776 linear congruential algorithm that is used by DJGPP.
10777
10778 Thu Jun 8 21:18:00 2000 Ranjith Kumaran <ranjith@cygnus.com>
10779
10780 * libc/include/stdlib.h: Set RAND_MAX to __RAND_MAX.
10781 * libc/include/sys/config.h: Define __RAND_MAX.
10782
10783 Thu Jun 8 17:54:00 2000 Jeff Johnston <jjohnstn@cygnus.com>
10784
10785 * libc/stdlib/rand_r.c: New algorithm that meets minimal
10786 standard.
10787
10788 Fri Jun 2 23:02:11 2000 Christopher Faylor <cgf@cygnus.com>
10789
10790 * libc/include/string.h: Work around problem with strsignal and gdb.
10791
10792 Tue May 30 13:13:01 2000 Christopher Faylor <cgf@cygnus.com>
10793
10794 * libc/include/ctype.h: __CYGWIN32__ -> __CYGWIN__
10795 * libc/include/malloc.h: Ditto.
10796 * libc/include/process.h: Ditto.
10797 * libc/include/stdio.h: Ditto.
10798 * libc/include/stdlib.h: Ditto.
10799 * libc/include/time.h: Ditto.
10800 * libc/include/machine/setjmp.h: Ditto.
10801 * libc/include/sys/errno.h: Ditto.
10802 * libc/include/sys/signal.h: Ditto.
10803 * libc/include/sys/stat.h: Ditto.
10804 * libc/include/sys/time.h: Ditto.
10805 * libc/include/sys/unistd.h: Ditto.
10806 * libc/include/string.h: Ditto. strsignal should return a const char *.
10807
10808 2000-05-26 Marek Michalkiewicz <marekm@linux.org.pl>
10809
10810 * libm/common/s_expm1.c (expm1): Add curly braces, avoid warnings.
10811 * libm/common/s_log1p.c (log1p): Likewise.
10812 * libm/common/s_scalbn.c (scalbn): Likewise.
10813 * libm/math/e_log.c: Likewise.
10814 * libm/math/e_asin.c: Likewise.
10815 * libm/math/ef_asin.c: Likewise.
10816 * libm/math/e_j0.c (pzero, qzero): Remove redundant test.
10817 * libm/math/e_j1.c (pone, qone): Likewise.
10818 * libm/math/ef_j0.c (pzerof, qzerof): Likewise.
10819 * libm/math/ef_j1.c (ponef, qonef): Likewise.
10820 * libm/mathfp/e_j0.c (pzero, qzero): Likewise.
10821 * libm/mathfp/e_j1.c (pone, qone): Likewise.
10822 * libm/mathfp/ef_j0.c (pzerof, qzerof): Likewise.
10823 * libm/mathfp/ef_j1.c (ponef, qonef): Likewise.
10824
10825 2000-05-19 DJ Delorie <dj@cygnus.com>
10826
10827 * libc/stdio/stdio.c (__stextmode): new, see if file is text mode
10828 (__sread): always read in binary mode
10829 (__swrite): always write in binary mode
10830 * libc/include/stdio.h: no getc/putc macros for cygwin; causes
10831 compatibility issues with different dll versions
10832 * libc/stdio/fopen.c: use __stextmode
10833 * libc/stdio/fdopen.c: ditto
10834 * libc/stdio/freopen.c: ditto
10835 * libc/stdio/findfp.c: set up __SCLE for std{in,out,err}
10836 * libc/stdio/local.h: declare __stextmode
10837
10838 2000-05-18 DJ Delorie <dj@cygnus.com>
10839
10840 * libc/stdio/fgets.c (fgets): perform CRLF conversions if __SCLE
10841
10842 Mon May 15 18:54:00 2000 Jeff Johnston <jjohnstn@cygnus.com>
10843
10844 * libc/include/ctype.h: Changed tolower and toupper macros
10845 to use __extension__ to prevent pedantic warnings.
10846
10847 Mon May 15 14:26:00 2000 Joel Sherrill <joel@oarcorp.com>
10848
10849 * libc/sys/rtems/sys/time.h: Add macros for manipulating timeval
10850 structures.
10851
10852 Wed May 10 19:24:53 2000 Jim Wilson <wilson@cygnus.com>
10853
10854 * libc/include/machine/ieeefp.h: Add ia64 support.
10855 * configure.host: Likewise.
10856
10857 Wed May 10 13:52:24 2000 Egor Duda <deo@logos-m.ru>
10858
10859 * libc/time/asctime_r.c (asctime_r): Change output format. Day of
10860 month is now padded with space, not zero. This now conforms to
10861 ANSI standard.
10862
10863 Wed May 03 17:57:00 2000 Corinna Vinschen <corinna@vinschen.de>
10864
10865 * libc/include/sys/errno.h: Add define for ENOSHARE ("No such
10866 host or network path") used by cygwin. Add some comments.
10867
10868 Tue May 02 23:45:48 2000 DJ Delorie <dj@cygnus.com>
10869
10870 * libc/include/stdio.h (FILE): define __SCLE for "convert line
10871 endings" for Cygwin.
10872 (__sgetc): convert line endings if needed
10873 (__sputc): ditto
10874 * libc/stdio/fdopen.c (_fdopen_r): Remember if we opened in text mode
10875 * libc/stdio/fopen.c (_fopen_r): ditto
10876 * libc/stdio/freopen.c (freopen): ditto
10877 * libc/stdio/fread.c (fread): perform CRLF conversions if __SCLE
10878 * libc/stdio/fvwrite.c (__sfvwrite): ditto
10879
10880 Thu Apr 27 07:45:48 2000 Alexandre Oliva <aoliva@cygnus.com>
10881
10882 * libc/machine/mn10300/setjmp.S (setjmp, longjmp): Use
10883 post-increment when it is worth it, spacewise.
10884
10885 Mon Apr 17 12:46:00 2000 Marek Michalkiewicz <marekm@linux.org.pl>
10886
10887 * libc/signal/signal.c (_signal_r) : Removed unused local variable temp.
10888 * libc/stdio/findfp.c (std): Added declaration of flags and file.
10889 * libc/stdio/mktemp.c (_gettemp, _mkstemp_r, mkstemp): Added int
10890 return type.
10891 * libc/stdio/putchar.c (putchar): Added return statement.
10892 * libc/stdio/refill.c (lflush): Added correct parentheses.
10893 * libc/stdio/vfprintf.c (_VFPRINTF_R): Ditto.
10894 * libc/stdio/vfscanf.c (__svfscanf): Changed sprintf call which
10895 prints long value to use l qualifier.
10896 * libc/stdlib/dtoa.c (_dtoa_r): Added parentheses to remove warning
10897 messages and initialized local values: ilim, ilim1, and spec_case.
10898 * libc/stdlib/ecvtbuf.c (print_e): Removed unused variable dp.
10899 * libc/stdlib/mbctype.h (_issjis1, _issjis2): Added parentheses.
10900 * libc/stdlib/mprec.c: Ditto.
10901 * libc/stdlib/setenv_r.c: Ditto.
10902 * libc/stdlib/strtod.c: Ditto.
10903 * libc/stdlib/strtol.c: Ditto.
10904 * libc/stdlib/strtoul.c: Ditto.
10905 * libm/common/sf_expm1.c: Added curly braces to if else clauses.
10906 * libm/common/sf_log1p.c: Ditto.
10907 * libm/common/sf_scalbn.c: Ditto.
10908 * libm/math/ef_log.c: Ditto.
10909
10910 Sun Apr 16 12:45:00 2000 Corinna Vinschen <corinna@vinschen.de>
10911
10912 * libc/posix/execvp.c (execvp): Check path for
10913 trailing slash.
10914
10915 Fri Mar 31 20:39:00 2000 Corinna Vinschen <corinna@vinschen.de>
10916
10917 * libc/include/sys/unistd.h: Add prototypes for
10918 fchmod, fchown, lchown.
10919
10920 Fri Mar 24 15:34:00 2000 Jeff Johnston <jjohnstn@cygnus.com>
10921
10922 * acinclude.m4: Changed release to 1.8.2.
10923 * aclocal.m4 configure doc/aclocal.m4 doc/configure
10924 libc/aclocal.m4 libc/configure libc/machine/aclocal.m4
10925 libc/machine/configure libc/machine/a29k/aclocal.m4
10926 libc/machine/a29k/configure libc/machine/arm/aclocal.m4
10927 libc/machine/arm/configure libc/machine/d10v/aclocal.m4
10928 libc/machine/d10v/configure libc/machine/d30v/aclocal.m4
10929 libc/machine/d30v/configure libc/machine/fr30/aclocal.m4
10930 libc/machine/fr30/configure libc/machine/h8300/aclocal.m4
10931 libc/machine/h8300/configure libc/machine/h8500/aclocal.m4
10932 libc/machine/h8500/configure libc/machine/hppa/aclocal.m4
10933 libc/machine/hppa/configure libc/machine/i386/aclocal.m4
10934 libc/machine/i386/configure libc/machine/i960/aclocal.m4
10935 libc/machine/i960/configure libc/machine/m32r/aclocal.m4
10936 libc/machine/m32r/configure libc/machine/m68k/aclocal.m4
10937 libc/machine/m68k/configure libc/machine/m88k/aclocal.m4
10938 libc/machine/m88k/configure libc/machine/mips/aclocal.m4
10939 libc/machine/mips/configure libc/machine/mn10200/aclocal.m4
10940 libc/machine/mn10200/configure libc/machine/mn10300/aclocal.m4
10941 libc/machine/mn10300/configure libc/machine/necv70/aclocal.m4
10942 libc/machine/necv70/configure libc/machine/powerpc/aclocal.m4
10943 libc/machine/powerpc/configure libc/machine/sh/aclocal.m4
10944 libc/machine/sh/configure libc/machine/sparc/aclocal.m4
10945 libc/machine/sparc/configure libc/machine/tic80/aclocal.m4
10946 libc/machine/tic80/configure libc/machine/v850/aclocal.m4
10947 libc/machine/v850/configure libc/machine/w65/aclocal.m4
10948 libc/machine/w65/configure libc/machine/z8k/aclocal.m4
10949 libc/machine/z8k/configure libc/sys/aclocal.m4
10950 libc/sys/aclocal.m4 libc/sys/configure
10951 libc/sys/a29khif/aclocal.m4 libc/sys/a29khif/configure
10952 libc/sys/arm/aclocal.m4 libc/sys/arm/configure
10953 libc/sys/cygwin/aclocal.m4 libc/sys/cygwin/configure
10954 libc/sys/d10v/aclocal.m4 libc/sys/d10v/configure
10955 libc/sys/decstation/aclocal.m4 libc/sys/decstation/configure
10956 libc/sys/go32/aclocal.m4 libc/sys/go32/configure
10957 libc/sys/h8300hms/aclocal.m4 libc/sys/h8300hms/configure
10958 libc/sys/h8500hms/aclocal.m4 libc/sys/h8500hms/configure
10959 libc/sys/m88kbug/aclocal.m4 libc/sys/m88kbug/configure
10960 libc/sys/netware/aclocal.m4 libc/sys/netware/configure
10961 libc/sys/rtems/aclocal.m4 libc/sys/rtems/configure
10962 libc/sys/sh/aclocal.m4 libc/sys/sh/configure
10963 libc/sys/sparc64/aclocal.m4 libc/sys/sparc64/configure
10964 libc/sys/sun4/aclocal.m4 libc/sys/sun4/configure
10965 libc/sys/sysmec/aclocal.m4 libc/sys/sysmec/configure
10966 libc/sys/sysnec810/aclocal.m4 libc/sys/sysnec810/configure
10967 libc/sys/sysnecv850/aclocal.m4 libc/sys/sysnecv850/configure
10968 libc/sys/sysvi386/aclocal.m4 libc/sys/sysvi386/configure
10969 libc/sys/sysvnecv70/aclocal.m4 libc/sys/sysvnecv70/configure
10970 libc/sys/tic80/aclocal.m4 libc/sys/tic80/configure
10971 libc/sys/w65/aclocal.m4 libc/sys/w65/configure
10972 libc/sys/z8ksim/aclocal.m4 libc/sys/z8ksim/configure
10973 libm/aclocal.m4 libm/configure: Regenerated.
10974
10975 2000-03-24 Nick Clifton <nickc@cygnus.com>
10976
10977 * libc/sys/arm/syscalls.c: Fix compile time warnings.
10978 (do_AngelSWI): Add "cc" to list o registers clobbered.
10979
10980 Thu Mar 22 14:57:00 2000 Fernando Nasser <fnasser@redhat.com>
10981
10982 * libc/sys/arm/syscalls.c (do_AngelSWI): Prevent registers with valid
10983 information to be clobbered by an Angel C library support syscall.
10984
10985 Tue Mar 21 19:08:00 2000 Jeff Johnston <jjohnstn@cygnus.com>
10986
10987 * libc/stdlib/envlock.c: Fixed comment typo.
10988
10989 Fri Mar 17 15:37:00 2000 Jeff Johnston <jjohnstn@cygnus.com>
10990
10991 * libc/stdio/vfscanf.c (__svfscanf): Fixed floating point
10992 code to update nread as each character is processed instead
10993 of using buffer contents which throw away leading zeroes.
10994
10995 Mon Mar 13 15:22:00 2000 Sergei Organov <osv@javad.ru>
10996
10997 * libm/mathfp/sf_sqrt.c: Change _DOUBLE_IS_32BITS sqrt call to sqrtf.
10998
10999 Fri Mar 10 16:09:20 2000 Jeff Johnston <jjohnstn@cygnus.com>
11000
11001 * libc/include/string.h: Include <sys/types.h>.
11002
11003 Fri Mar 10 14:53:50 2000 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
11004
11005 * libc/stdio/putw.c (putw): Return 0 on success, to be compliant
11006 with XSH5, not SVID.
11007
11008 Thu Mar 9 17:20:41 2000 Jeff Johnston <jjohnstn@cygnus.com>
11009
11010 * libc/include/string.h: Changed last argument back to ssize_t
11011 to make it compatible with XPG4 definition which is
11012 defined in <unistd.h>. There is a conflict in the SVID 3
11013 and XPG4 definitions and newlib will settle with XPG4.
11014 * libc/string/swab.c: Ditto.
11015
11016 Wed Mar 8 17:11:41 2000 Jeff Johnston <jjohnstn@cygnus.com>
11017
11018 * libc/include/string.h: Changed last argument to size_t.
11019 * libc/string/swab.c: Changed last argument to size_t.
11020
11021 Wed Mar 8 00:46:41 2000 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
11022
11023 * libc/reent/Makefile.am (lib_a_SOURCES): Added unlinkr.c.
11024 (CHEWOUT_FILES): Added unlinkr.def.
11025 * libc/reent/Makefile.in: Rebuilt.
11026 * libc/sys.tex: Include unlinkr.def.
11027 * libc/reent/linkr.c (_unlink_r): Moved to...
11028 * libc/reent/unlinkr.c: ... new file.
11029
11030 Wed Mar 8 00:43:07 2000 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
11031
11032 * libc/string/Makefile.am (lib_a_SOURCES): Added swab.c.
11033 (CHEWOUT_FILES): Added swab.def.
11034 * libc/string/Makefile.in: Rebuilt.
11035 * libc/string/string.tex: Include swab.def.
11036 * libc/include/string.h (swab): Declare.
11037 * libc/string/swab.c: New file.
11038
11039 Wed Mar 8 00:38:35 2000 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
11040
11041 * libc/stdio/Makefile.am (lib_a_SOURCES): Added getw.c and putw.c.
11042 (CHEWOUT_FILES): Added getw.def and putw.def.
11043 * libc/stdio/Makefile.in: Rebuilt.
11044 * libc/stdio/stdio.tex: Include getw.def and putw.def.
11045 * libc/stdio/getw.c: New file.
11046 * libc/stdio/putw.c: New file.
11047
11048 Fri Feb 25 14:50:50 2000 Jeff Johnston <jjohnstn@cygnus.com>
11049
11050 * libc/stdio/flags.c (__sflags): Added check that mode[1]
11051 is non-null before looking at mode[2].
11052
11053 Thu Feb 24 11:43:00 2000 Ran Cabell <rcabell@norfolk.infi.net>
11054
11055 * libm/mathfp/sf_atan2.c: Fix atan2 typo for _DOUBLE_IS_32_BITS.
11056 * libm/mathfp/sf_atan.c: Ditto.
11057
11058 Thu Feb 24 11:39:00 2000 Joel Sherrill <joel@OARcorp.com>
11059
11060 * libc/include/sys/stat.h: Add RTEMS prototype for lstat.
11061
11062 Tue Feb 22 14:37:00 2000 Ran Cabell <rcabell@norfolk.infi.net>
11063
11064 * libm/mathfp/sf_exp.c: Corrected _DOUBLE_IS_32_BITS to be
11065 _DOUBLE_IS_32BITS.
11066
11067 Mon Feb 21 11:43:50 2000 Jeff Johnston <jjohnstn@cygnus.com>
11068
11069 * libc/stdio/vfprintf.c (VFPRINTF): Added CHECK_INIT
11070 call prior to calling _VFPRINTF_R so reentrant data area is set.
11071 (_VFPRINTF_R): Removed now extraneous CHECK_INIT call.
11072
11073 Thu Feb 17 01:42:50 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
11074
11075 * libc/stdio/vfscanf.c (limits.h): #include.
11076 (MAX_LONG_LEN): #define.
11077 (__svfscanf): Handle floating point numbers with arbitrary amounts
11078 of leading zeroes.
11079
11080 2000-02-15 Nick Clifton <nickc@cygnus.com>
11081
11082 * libc/sys/arm/syscalls.c (_fstat): Initialise all fields to
11083 zero. Set the blocksize to 1024/
11084
11085 Thu Jan 20 18:57:00 2000 Fernando Nasser <fnasser@redhat.com>
11086
11087 * setvbuf.c (setvbuf): Set size to BUFSIZ when passed a zero size
11088 with line buffering.
11089
11090 Mon Jan 10 18:43:00 2000 Jeff Johnston <jjohnstn@cygnus.com>
11091
11092 * acinclude.m4: Changed include directory for winsup headers.
11093 * aclocal.m4 configure libc/aclocal.m4
11094 libc/configure libc/ctype/Makefile.in libc/errno/Makefile.in
11095 libc/locale/Makefile.in libc/machine/aclocal.m4
11096 libc/machine/configure libc/machine/a29k/aclocal.m4
11097 libc/machine/a29k/configure libc/machine/arm/aclocal.m4
11098 libc/machine/arm/configure libc/machine/d10v/aclocal.m4
11099 libc/machine/d10v/configure libc/machine/d30v/aclocal.m4
11100 libc/machine/d30v/configure libc/machine/fr30/aclocal.m4
11101 libc/machine/fr30/configure
11102 libc/machine/h8300/aclocal.m4
11103 libc/machine/h8300/configure libc/machine/h8500/aclocal.m4
11104 libc/machine/h8500/configure libc/machine/hppa/aclocal.m4
11105 libc/machine/hppa/configure libc/machine/i386/aclocal.m4
11106 libc/machine/i386/configure libc/machine/i960/aclocal.m4
11107 libc/machine/i960/configure libc/machine/m32r/aclocal.m4
11108 libc/machine/m32r/configure libc/machine/m68k/aclocal.m4
11109 libc/machine/m68k/configure libc/machine/m88k/aclocal.m4
11110 libc/machine/m88k/configure libc/machine/mips/aclocal.m4
11111 libc/machine/mips/configure libc/machine/mn10200/aclocal.m4
11112 libc/machine/mn10200/configure libc/machine/mn10300/aclocal.m4
11113 libc/machine/mn10300/configure libc/machine/necv70/aclocal.m4
11114 libc/machine/necv70/configure libc/machine/powerpc/aclocal.m4
11115 libc/machine/powerpc/configure
11116 libc/machine/sh/aclocal.m4
11117 libc/machine/sh/configure libc/machine/sparc/aclocal.m4
11118 libc/machine/sparc/configure
11119 libc/machine/tic80/aclocal.m4 libc/machine/tic80/configure
11120 libc/machine/v850/aclocal.m4 libc/machine/v850/configure
11121 libc/machine/w65/aclocal.m4 libc/machine/w65/configure
11122 libc/machine/z8k/aclocal.m4 libc/machine/z8k/configure
11123 libc/misc/Makefile.in libc/posix/Makefile.in
11124 libc/reent/Makefile.in
11125 libc/signal/Makefile.in
11126 libc/string/Makefile.in libc/sys/aclocal.m4 libc/sys/configure
11127 libc/sys/a29khif/aclocal.m4 libc/sys/a29khif/configure
11128 libc/sys/arm/Makefile.in libc/sys/arm/aclocal.m4
11129 libc/sys/arm/configure libc/sys/cygwin/aclocal.m4
11130 libc/sys/cygwin/configure libc/sys/d10v/Makefile.in
11131 libc/sys/d10v/aclocal.m4 libc/sys/d10v/configure
11132 libc/sys/decstation/aclocal.m4 libc/sys/decstation/configure
11133 libc/sys/go32/aclocal.m4 libc/sys/go32/configure
11134 libc/sys/h8300hms/aclocal.m4 libc/sys/h8300hms/configure
11135 libc/sys/h8500hms/aclocal.m4 libc/sys/h8500hms/configure
11136 libc/sys/m88kbug/aclocal.m4 libc/sys/m88kbug/configure
11137 libc/sys/netware/aclocal.m4 libc/sys/netware/configure
11138 libc/sys/rtems/aclocal.m4 libc/sys/rtems/configure
11139 libc/sys/sh/Makefile.in libc/sys/sh/aclocal.m4
11140 libc/sys/sh/configure libc/sys/sparc64/aclocal.m4
11141 libc/sys/sparc64/configure libc/sys/sun4/aclocal.m4
11142 libc/sys/sun4/configure libc/sys/sysmec/aclocal.m4
11143 libc/sys/sysmec/configure libc/sys/sysnec810/aclocal.m4
11144 libc/sys/sysnec810/configure libc/sys/sysnecv850/aclocal.m4
11145 libc/sys/sysnecv850/configure libc/sys/sysvi386/aclocal.m4
11146 libc/sys/sysvi386/configure libc/sys/sysvnecv70/aclocal.m4
11147 libc/sys/sysvnecv70/configure libc/sys/tic80/aclocal.m4
11148 libc/sys/tic80/configure libc/sys/w65/aclocal.m4
11149 libc/sys/w65/configure libc/sys/z8ksim/aclocal.m4
11150 libc/sys/z8ksim/configure libc/syscalls/Makefile.in
11151 libc/time/Makefile.in libc/unix/Makefile.in libm/aclocal.m4
11152 libm/configure: Regenerated.
11153
11154 Mon Jan 10 18:43:46 2000 Jeff Johnston <jjohnstn@cygnus.com>
11155
11156 * libc/stdlib/putenv_r.c (_putenv_r): New file.
11157 * libc/stdlib/strdup_r.c (_strdup_r): New file.
11158 * libc/include/string.h: Added _strdup_r.
11159 * libc/stdlib/putenv.c: Added call to reentrant version.
11160 * libc/stdlib/strdup.c: Ditto.
11161 * libc/stdlib/Makefile.am: Added _putenv_r and _unsetenv_r.
11162 * libc/include/stdlib.h: Ditto.
11163 * libc/stdlib/Makefile.in: Regenerated.
11164 * libc/string/Makefile.in: Regenerated.
11165 * libc/stdlib/setenv.c: Added reentrant version of unsetenv.
11166 * libc/stdlib/setenv_r.c: Added unsetenv_r and changed memory
11167 management calls to reentrant versions.
11168 * libc/stdlib/wcstombs.c: Added #ifndef _REENT_ONLY wrapper.
11169 * libc/stdlib/wctomb.c: Ditto.
11170 * libc/stdlib/mblen.c: Ditto.
11171 * libc/stdlib/mbstowcs.c: Ditto.
11172 * libc/stdlib/mbtowc.c: Ditto.
11173 * libc/stdlib/getenv.c: Ditto.
11174 * libc/reent/reent.tex: Added references to _putenv_r, _setenv_r,
11175 and _strdup_r.
11176
11177 Thu Jan 6 15:33:46 2000 Christopher Faylor <cgf@cygnus.com>
11178
11179 patch from Corinna Vinschen <corinna@vinschen.de>
11180 * libc/sys/cygwin/sys/param.h: Define NGROUP_MAX as 16.
11181
11182 Mon Jan 03 14:36:00 2000 Sergei Organov <osv@javad.ru>
11183
11184 * libm/mathfp/s_atangent.c: Fix exponent calculation.
11185 * libm/mathfp/s_ldexp.c: Ditto.
11186 * libm/mathfp/sf_atangent.c: Ditto.
11187 * libm/mathfp/sf_ldexp.c: Ditto.
11188
11189 Tue Dec 14 5:42:00 1999 Ranjith Kumaran <ranjith@cygnus.com>
11190
11191 * libc/machine/i960/setjmp.S: fix typo leaving .link_pix uncommented
11192 * libc/include/locale.h: define NULL to be 0.
11193
11194 Tue Dec 7 15:41:45 1999 Jim Wilson <wilson@cygnus.com>
11195
11196 * libc/sys/sh/syscalls.c (stack_ptr): Move definition before first
11197 function.
11198
11199 Wed Dec 1 17:39:29 1999 Jeffrey A Law (law@cygnus.com)
11200
11201 * libc/machine/mn10300/setjmp.S: Handle am33.
11202
11203 1999-11-26 Nick Clifton <nickc@cygnus.com>
11204
11205 * libc/sys/arm/syscalls.c: Add function prototypes.
11206 (stack_ptr): Move declaration before function definitions.
11207
11208 Sat Nov 20 17:13:00 1999 Ranjith Kumaran <ranjith@cygnus.com>
11209
11210 * NEWS: Updated version information.
11211 * README: Ditto.
11212
11213 Tue Nov 09 12:19:21 1999 Jeff Johnston <jjohnstn@cygnus.com>
11214
11215 * libc/machine/i386/strchr.S: Fixed alignment test.
11216
11217 Thu Oct 28 05:30:46 1999 Andrew Cagney <cagney@makita.cygnus.com>
11218
11219 * libc/sys/d10v/crt0.S (_start): Construct a real stack frame.
11220
11221 Thu Oct 28 15:29:11 1999 Andrew Cagney <cagney@b1.cygnus.com>
11222
11223 * libc/sys/d10v/crt0.S (_start): Initialize both SPI and SPU
11224 ensuring that there is space between the two.
11225
11226 Thu Oct 14 13:39:21 1999 Christopher Faylor <cgf@cygnus.com>
11227
11228 * libc/stdio/flags.c: Conditionalize check for 't' for cygwin case
11229 only.
11230
11231 1999-10-08 Vadim Egorov <egorovv@1c.ru>
11232
11233 * libc/include/stdlib.h: add ptsname, grantpt, unlockpt to cygwin
11234 section
11235
11236 Sat Oct 2 02:02:00 MEST 1999 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
11237
11238 * libc/machine/sh/asm.h: Added __SH4_SINGLE__ to DELAYED_BRANCHES
11239 * libc/machine/sh/memcpy.S: Fix line wrapping in SL macro
11240
11241 Fri Oct 1 13:17:59 CDT 1999 <joel@OARcorp.com>
11242 * libc/include/grp.h: Added getgrnam_r and getgrgid_r prototypes
11243 per POSIX 1003.1b.
11244 * libc/include/pwd.h: Added getpwnam_r and getpwuid_r prototypes
11245 per POSIX 1003.1b.
11246
11247 1999-09-13 DJ Delorie <dj@cygnus.com>
11248
11249 * libc/stdio/mktemp.c (_gettemp): on cygwin, check for EACCESS
11250 also.
11251
11252 Thu Sep 9 15:31:00 1999 Jeff Johnston <jjohnstn@cygnus.com>
11253
11254 * setvbuf.c (setvbuf): When mallocing a buffer of size BUFSIZ,
11255 also note BUFSIZ as its size.
11256
11257 Tue Sep 7 17:15:00 1999 Joel Sherrill <joel@OARcorp.com>
11258
11259 * configure.host: Corrected feature defines for RTEMS.
11260 * libc/include/sys/stat.h: Added protototype for RTEMS mknod.
11261 * libc/include/sys/stat.h: mkfifo() should take const path arg.
11262 * libc/include/sys/unistd.h: pathconf() should take const path arg.
11263 Enabled usleep(), ftruncate(), and truncate() prototypes for RTEMS.
11264 Added defines for _POSIX_JOB_CONTROL, _POSIX_SAVED_IDS, and
11265 _POSIX_VERSION for RTEMS. Added defines for _PC_ASYNC_IO,
11266 _PC_PRIO_IO, and _PC_SYNC_IO.
11267 * libc/machine/m68k/Makefile.am: Added strcpy.c and strlen.c.
11268 * libc/machine/m68k/Makefile.in: Regenerated.
11269 * libc/machine/m68k/strcpy.c: New file.
11270 * libc/machine/m68k/strlen.c: New file.
11271 * libc/stdio/tmpnam.c: Always make the returned name usable.
11272 * libc/sys/rtems/crt0.c: New version that passes all autoconf tests.
11273 * libc/sys/rtems/sys/dirent.h: New file.
11274 * libc/sys/rtems/sys/types.h: Added dev_t.
11275
11276 Tue Sep 7 17:15:00 1999 Jay Kulpinski <jskulpin@eng01.gdds.com>
11277
11278 * libc/stdlib/mprec.c: Fixed unitialized variable problem.
11279
11280 Fri Sep 3 12:35:20 1999 Jeff Johnston <jjohnstn@cygnus.com>
11281
11282 * libc/stdio/ftell.c (ftell): Backing off Joern's fix and
11283 my patch.
11284
11285 Thu Sep 2 22:05:20 1999 Christopher Faylor <cgf@cygnus.com>
11286
11287 patch from Jeff Johnston <jjohnstn@cygnus.com>
11288 * libc/stdio/ftell.c (ftell): Avoid using buffer position when the
11289 buffer is not in a useful state.
11290
11291 1999-09-01 Nick Clifton <nickc@cygnus.com>
11292
11293 * libc/sys/arm/syscalls.c (_link): Add stub.
11294
11295 Fri Aug 27 23:09:09 1999 J"orn Rennecke <amylaar@cygnus.co.uk>
11296
11297 * ftell.c (ftell): Use actual position within buffer for text mode.
11298 * findfp.c (std): Initialize ptr->_bf._size.
11299
11300 Wed Aug 18 18:48:02 1999 Christopher Faylor <cgf@cygnus.com>
11301
11302 * libc/include/sys/unistd.h: Add nice() declaration.
11303
11304 1999-08-09 Nick Clifton <nickc@cygnus.com>
11305
11306 * libc/sys/arm/crt0.S (change_mode): Rename to __change_mode and
11307 declare as a thumb function so that the disassembler will see the
11308 mode change.
11309
11310 Thu Aug 5 17:37:00 1999 Ranjith Kumaran <ranjith@cygnus.com>
11311
11312 * libc/reent/reent.tex: Updated list of reentrant functions.
11313
11314 1999-07-09 Michael Meissner <meissner@cygnus.com>
11315
11316 * libc/include/stdlib.h (_findenv{,_r}): Add prototypes.
11317
11318 Tue Jul 6 10:46:24 1999 Jeff Johnston <jjohnstn@cygnus.com>
11319
11320 * libc/stdio/sprintf.c: Moved snprintf and _snprintf_r to
11321 separate file.
11322 * libc/stdio/snprintf.c: New file.
11323 * libc/stdio/vsprintf.c: Moved vsnprintf and _vsnprintf_r to
11324 separate file.
11325 * libc/stdio/vsnprintf.c: New file.
11326 * libc/stdio/Makefile.am: Added snprintf.c and vsnprintf.c.
11327 * libc/stdio/Makefile.in: Regenerated.
11328
11329 Mon Jul 5 14:43:24 1999 Christopher Faylor <cgf@cygnus.com>
11330
11331 Patch submitted by Egor Duda <deo@logos-m.ru>:
11332 * libc/include/stdio.h: Add declarations for *nprintf.
11333 * libc/stdio/sprintf.c (snprintf): New function.
11334 (_snprintf_r): New function.
11335 * libc/stdio/vsprintf.c (vsnprintf): New function.
11336 (_vnsprintf_r): New function.
11337
11338 Wed Jun 30 16:36:27 1999 Jeff Johnston <jjohnstn@cygnus.com>
11339
11340 * libc/Makefile.am (stmp-targetdep): Remove extraneous blank.
11341 * libm/Makefile.am (stmp-targetdep): Ditto.
11342 * libc/Makefile.in: Regenerated.
11343 * libm/Makefile.in: Ditto.
11344
11345 Fri Jun 25 10:49:27 1999 Jeff Johnston <jjohnstn@cygnus.com>
11346
11347 * libc/Makefile.am (stmp-targetdep): Ignore "." in SUBDIRS.
11348 * libm/Makefile.am (stmp-targetdep): Ditto.
11349 * libc/Makefile.in: Regenerated.
11350 * libm/Makefile.in: Ditto.
11351
11352 Thu June 03 16:25:00 1999 Jeff Johnston <jjohnstn@cygnus.com>
11353
11354 * Makefile.am: Removed dependencies on all-recursive and added "."
11355 to the SUBDIRS list to prevent infinite recursion from occurring.
11356 Also removed any references to EXTRA_DATA.
11357 * libc/Makefile.am: Ditto.
11358 * libc/machine/Makefile.am: Ditto.
11359 * libc/machine/i386/Makefile.am: Ditto.
11360 * libm/Makefile.am: Ditto.
11361 * libc/sys/Makefile.am: Ditto.
11362 * Makefile.in: Regenerated.
11363 * aclocal.m4: Ditto.
11364 * configure: Ditto.
11365 * doc/Makefile.in: Ditto.
11366 * doc/aclocal.m4: Ditto.
11367 * doc/configure: Ditto.
11368 * libc/Makefile.in: Ditto.
11369 * libc/aclocal.m4: Ditto.
11370 * libc/configure: Ditto.
11371 * libc/machine/Makefile.in: Ditto.
11372 * libc/machine/aclocal.m4: Ditto.
11373 * libc/machine/configure: Ditto.
11374 * libc/machine/mn10300/Makefile.in: Ditto.
11375 * libc/machine/mn10300/aclocal.m4: Ditto.
11376 * libc/machine/mn10300/configure: Ditto.
11377 * libc/sys/Makefile.in: Ditto.
11378 * libc/sys/aclocal.m4: Ditto.
11379 * libc/sys/configure: Ditto.
11380 * libm/Makefile.in: Ditto.
11381 * libm/aclocal.m4: Ditto.
11382 * libm/configure: Ditto.
11383
11384 Thu June 03 16:20:00 1999 Ranjith Kumaran <ranjith@cygnus.com>
11385
11386 * libc/include/stdlib/stdlib.tex: Add link to env_lock.
11387
11388 Fri May 28 17:09:00 1999 Ranjith Kumaran <ranjith@cygnus.com>
11389
11390 * libc/include/stdlib.h: Add reentrant routines.
11391 * libc/stdlib/Makefile.am: Add reentrant routines.
11392 * libc/stdlib/Makefile.in: Ditto.
11393 * libc/stdlib/envlock.c: New file.
11394 * libc/stdlib/envlock.h: New file.
11395 * libc/stdlib/getenv.c: Modify to call reentrant routine.
11396 * libc/stdlib/getenv_r.c: New file.
11397 * libc/stdlib/mblen.c: Modify to call reentrant routine.
11398 * libc/stdlib/mblen_r.c: New file.
11399 * libc/stdlib/setenv.c: Modify to call reentrant routine.
11400 * libc/stdlib/setenv_r.c: New file.
11401 * libc/stdlib/stdlib.tex: Add reentrant routines.
11402
11403 Mon May 17 22:01:38 1999 Christopher Faylor <cgf@cygnus.com>
11404
11405 * libc/include/sys/types.h: Define __MS_types__ whenever
11406 cygwin or win32.
11407
11408 Sun May 16 16:02:41 1999 Christopher Faylor <cgf@cygnus.com>
11409
11410 * libc/include/machine/ieeefp.h: Always default to little
11411 endian if Windows, regardless of architecture.
11412 * libc/include/machine/sethmp.h: Define JBLEN if CYGWIN
11413 regardless of architecture.
11414
11415 Mon May 3 11:49:18 1999 Geoffrey Noer <noer@cygnus.com>
11416
11417 * libc/include/machine/setjmp.h: Accept CYGWIN define, even if
11418 _WIN32 isn't defined.
11419
11420 Mon May 3 11:41:51 1999 Jeff Johnston <jjohnstn@cygnus.com>
11421
11422 * libm/common/s_rint.c (rint): Add volatile qualifier for
11423 intermediate value w.
11424 * libm/common/sf_rint.c (rintf): Ditto.
11425
11426 Thu Apr 29 20:34:27 1999 Jeff Johnston <jjohnstn@cygnus.com>
11427
11428 * libc/sys/arm/syscalls.c (remap_handle): Added check to
11429 ensure that std streams are initialized before being referenced.
11430
11431 1999-04-27 Jason Molenda (jsm@bugshack.cygnus.com)
11432
11433 * README: Update reference to newlib@cygnus.com new
11434 newlib@sourceware.cygnus.com address.
11435
11436 Mon Apr 26 18:17:33 1999 Geoffrey Noer <noer@cygnus.com>
11437
11438 * libc/include/sys/types.h: Define MS_types if CYGWIN is defined.
11439 * libc/include/sys/fcntl.h: Define _O_BINARY et al if CYGWIN is
11440 defined, even if _WIN32 isn't defined.
11441
11442 Sat Apr 24 19:59:55 1999 Christopher Faylor <cgf@cygnus.com>
11443
11444 * libc/include/sys/fcntl.h: Correct _O_CREATE to _O_CREAT.
11445
11446 Wed Apr 21 18:01:00 1999 Ranjith Kumaran <ranjith@cygnus.com>
11447
11448 * libc/include/sys/reent.h: Change Long and ULong to __Long and
11449 __ULong.
11450 * libc/stdlib/dtoa.c: Ditto.
11451 * libc/stdlib/mprec.c: Ditto.
11452 * libc/stdlib/mprec.h: Ditto.
11453 * libc/stdlib/strtod.c: Ditto.
11454
11455 1999-04-21 Nick Clifton <nickc@cygnus.com>
11456
11457 * configure.host (mcore): Remove mcore machine directory.
11458
11459 1999-04-18 Nick Clifton <nickc@cygnus.com>
11460
11461 * libc/include/machine/ieeefp.h: Add support for mcore target.
11462 * libc/include/machine/setjmp.h: Add support for mcore target.
11463 * configure.host: Add support for mcore target.
11464
11465 1999-04-13 Mark Salter <msalter@cygnus.com>
11466
11467 * libc/sys/arm/libcfunc.c: Moved isatty to syscall.c
11468 * libc/sys/arm/syscalls.c: Added isatty.
11469
11470 Wed Apr 07 16:06:04 1999 Jeff Johnston <jjohnstn@cygnus.com>
11471
11472 * libc/stdlib/ecvtbuf.c (fcvtbuf): Fixed code to properly
11473 insert zeroes after significant digits.
11474
11475 Wed Mar 17 22:06:04 1999 Jeff Johnston <jjohnstn@cygnus.com>
11476
11477 * libc/stdio/vfprintf.c (cvt): Changed floating point
11478 cvt routine to use union used by dtoa to properly determine
11479 if the sign bit is on or not.
11480 * libc/stdio/vfieeefp.h: New file
11481
11482 Wed Mar 17 17:35:04 1999 Jeff Johnston <jjohnstn@cygnus.com>
11483
11484 * aclocal.m4: Regenerated.
11485 * configure: Regenerated.
11486
11487 Wed Mar 17 16:35:04 1999 Jeff Johnston <jjohnstn@cygnus.com>
11488
11489 * libc/machine/i386/Makefile.am (lib_a_SOURCES): Added missing
11490 f_tanf reference.
11491 * libc/machine/i386/Makefile.in: Regenerated.
11492
11493 Tue Mar 16 14:56:36 1999 Jeff Johnston <jjohnstn@cygnus.com>
11494
11495 * acinclude.m4: Changed to work with new automake.
11496 * configure: Regenerated.
11497 * libc/machine/i386/aclocal.m4: Regenerated.
11498 * libc/machine/i386/configure: Regenerated.
11499
11500 Tue Mar 16 13:55:36 1999 Corinna Vinschen <corinna.vinschen@cityweb.de>
11501
11502 * libc/sys/cygwin/sys/dirent.h: Add additional prototypes
11503 for telldir() and seekdir(). Rename unused structure element
11504 for use with these two routines.
11505
11506 Fri Mar 12 19:11:58 1999 Jeff Johnston <jjohnstn@cygnus.com>
11507
11508 * libc/time/mktime.c (validate_structure): Multiple fixes to
11509 code to handle cases where input fields are outside valid ranges.
11510 * libc/stdlib/div.c (div): Modified invalid rounding check.
11511 * libc/stdlib/ldiv.c (ldiv): Ditto.
11512
11513 Thu Mar 11 21:32:13 1999 Jeff Johnston <jjohnstn@cygnus.com>
11514
11515 * libc/machine/i386/memcpy.S: Performance rewrite.
11516 * libc/machine/i386/memmove.S: Ditto.
11517 * libc/machine/i386/i386mach.h: Added more register definitions.
11518 * libc/include/math.h: Include <machine/fastmath.h> if -ffast-math
11519 option used.
11520 * libc/include/machine/fastmath.h: Add definitions for x86
11521 fast-math routines.
11522
11523 Wed Mar 10 17:56:00 1999 Ranjith Kumaran <ranjith@cygnus.com>
11524
11525 * libc/stdlib/strtod.c: Change from unsigned long to ULong.
11526
11527 Tue Mar 9 14:31:58 1999 Geoffrey Noer <noer@cygnus.com>
11528
11529 Adjust newlib headers for new Cygwin Win32 API header files:
11530 * libc/include/sys/time.h: Check _WINSOCK_H rather than
11531 _GNU_H_WINDOWS32_SOCKETS.
11532 * libc/include/sys/types.h: Ditto.
11533
11534 Tue Mar 09 15:55:00 1999 Ranjith Kumaran <ranjith@cygnus.com>
11535
11536 *include/sys/reent.h: Add checks for size of Bigint element Long.
11537 *libc/dtoa.c: Change routines to use generic Long type.
11538 *libc/mprec.c: Change routines to use generic Long type.
11539 *libc/mprec.h: Change routines to use generic Long type.
11540
11541 Tue Mar 02 18:07:49 1999 Ranjith Kumaran <ranjith@cygnus.com>
11542
11543 * libc/Makefile.am: Add .def files.
11544 * libc/Makefile.in: Regenerate.
11545 * libc/e_acosh.c: Documentation update.
11546 * libc/e_atanh.c: Documentation update.
11547 * libc/e_hypot.c: Documentation update.
11548 * libc/e_remainder.c: Documentation update.
11549 * libc/er_lgamma.c: Documentation update.
11550 * libc/mathfp.tex: Documentation update.
11551 * libc/s_acos.c: Documentation update.
11552 * libc/s_atan.c: Documentation update.
11553 * libc/s_atan2.c: Documentation update.
11554 * libc/s_cosh.c: Documentation update.
11555 * libc/s_fmod.c: Documentation update.
11556 * libc/s_isnan.c: Documentation update.
11557 * libc/s_log10.c: Documentation update.
11558 * libc/s_pow.c: Documentation update.
11559 * libc/w_jn.c: Documentation update.
11560
11561 Sun Feb 28 23:18:49 1999 Geoffrey Noer <noer@cygnus.com>
11562
11563 * aclocal.m4: Regenerate.
11564 * configure: Regenerate.
11565
11566 Tue Feb 23 13:57:26 1999 Jeff Johnston <jjohnstn@cygnus.com>
11567
11568 * libc/machine/mn10300/setjmp.S (_longjmp): Fixed longjmp
11569 to return 1 if user specified return code is 0.
11570 * libc/machine/mn10200/setjmp.S (_longjmp): Ditto.
11571
11572 Thu Feb 18 11:13:28 1999 Jeff Johnston <jjohnstn@cygnus.com>
11573
11574 * libc/machine/mn10200/setjmp.S (_setjmp/_longjmp): Fixed setjmp
11575 to save the return address. Fixed longjmp to return to the original
11576 calling address of setjmp and to return the user specified return code
11577 rather than default to 1.
11578 * libc/machine/mn10300/setjmp.S (_setjmp/_longjmp): Ditto.
11579
11580 Mon Feb 15 17:48:17 1999 Jeff Johnston <jjohnstn@cygnus.com>
11581
11582 * libc/stdlib/mprec.h (mult): Define mult to be _multiply instead of _mult.
11583
11584 1999-02-10 Nick Clifton <nickc@cygnus.com>
11585
11586 * libc/sys/arm/syscalls.c (initialise_monitor_handles): Make block
11587 volatile so that its assignments will not be discarded.
11588
11589 Wed Feb 10 17:19:40 1999 Jeff Johnston <jjohnstn@cygnus.com>
11590
11591 * libc/include/_ansi.h: Corrected _STRICT_ANSI reference to
11592 be __STRICT_ANSI__ which is generated by compiler.
11593 * libc/include/ctype.h: Ditto.
11594 * libc/include/math.h: Ditto.
11595 * libc/include/stdio.h: Ditto.
11596 * libc/include/stdlib.h: Ditto.
11597 * libc/include/string.h: Ditto.
11598 * libc/include/sys/signal.h: Ditto.
11599
11600 1999-02-08 Nick Clifton <nickc@cygnus.com>
11601
11602 * configure.host: Add support for StrongARM target.
11603
11604 Fri Feb 5 11:13:14 1999 Jeff Johnston <jjohnstn@cygnus.com>
11605
11606 * libc/string/strncpy.c (strncpy): Removed redundant code
11607 that was copying bytes if data unaligned.
11608
11609 1999-02-02 Brendan Kehoe <brendan@cygnus.com>
11610
11611 * libc/stdlib/Makefile.{am,in} (CHEWOUT_FILES): Add mblen.def,
11612 mbstowcs.def, and wcstombs.def.
11613
11614 Sat Jan 30 02:36:33 1999 Christopher Faylor <cgf@cygnus.com>
11615
11616 * libc/include/sys/errno.h: Add Cygwin errno.
11617 * libc/stdio/flags.c: Don't default to O_TEXT if no other flag
11618 is specified.
11619
11620 1999-01-29 Nick Clifton <nickc@cygnus.com>
11621
11622 * libc/sys/arm/syscalls.c: Move C library functions into seperate
11623 file.
11624
11625 * libc/sys/arm/libcfunc.c: New file containing C library functions
11626 from syscalls.c
11627
11628 * libc/sys/arm/Makefile.am (lib_a_SOURCES): Add libcfuncs.c
11629 * libc/sys/arm/Makefile.in (lib_a_SOURCES): Regenerate.
11630
11631
11632 1999-01-27 Michael Meissner <meissner@cygnus.com>
11633
11634 * libc/include/machine/setjmp.h (D30V _JBLEN/_JBTYPE): Use double
11635 type, and cut size in half so that the jmp_buf array is guaranteed
11636 to be aligned on a 64-bit boundary.
11637
11638 Mon Jan 25 12:05:38 1999 Jeff Johnston <jjohnstn@cygnus.com>
11639
11640 * libc/string/strings.tex: Added information about
11641 strcasecmp and strncasecmp.
11642 * libc/stdlib/stdlib.tex: Added missing information
11643 about mblen, mbstowcs, and wcstombs.
11644 * libc/string/strchr.c: Changed how mask is built to use
11645 shift operators so register will be used instead of storage.
11646
11647 1999-01-22 DJ Delorie <dj@cygnus.com>
11648
11649 * libc/include/stdlib.h: don't use dllimport if we're building
11650 newlib, since it's inside cygwin.dll
11651
11652 Fri Jan 22 14:57:18 1999 Christopher Faylor <cgf@cygnus.com>
11653
11654 * libc/ctype/ctype_.c: Need to use __declspec(dllexport) for
11655 _ctype_ under cygwin.
11656
11657 Fri Jan 22 09:50:19 1999 Christopher Faylor <cgf@cygnus.com>
11658
11659 * include/stdlib.h: Fix typo from previous checkin.
11660
11661 Thu Jan 21 22:42:21 1999 Christopher Faylor <cgf@cygnus.com>
11662
11663 * include/ctype.h: Use __declspec(dllimport) method for exporting
11664 variable from cygwin DLL.
11665 * include/time.h: Ditto.
11666 * sys/errno.h: Ditto.
11667 * include/stdlib.h: Export __mb_cur_max from cygwin DLL.
11668 * libc/locale/locale.c: Use __declspec(dllexport) method for
11669 exporting variable from cygwin DLL.
11670
11671 Sat Jan 16 13:29:54 1999 Christopher Faylor <cgf@cygnus.com>
11672
11673 * libc/stdio/setvbuf.c: Always clean up when _IONBF or possible
11674 access of bogus pointer will result in SIGSEGV.
11675
11676 1999-01-07 Nick Clifton <nickc@cygnus.com>
11677
11678 * libc/sys/arm/setjmp.S: Use C macros to cope with the possibility
11679 of an underscore prefix to function names.
11680
11681 Fri Jan 8 19:00:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
11682
11683 * libc/machine/i386/i386mach.h (__REG_PREFIX__): Create new
11684 define __REG_PREFIX__ instead of using __REGISTER_PREFIX__.
11685
11686 1998-12-31 Michael Meissner <meissner@cygnus.com>
11687
11688 * libc/machine/i386/i386mach.h (__REGISTER_PREFIX__): Only define
11689 to `%' if not already defined.
11690
11691 1998-12-30 Michael Meissner <meissner@cygnus.com>
11692
11693 * libc/stdio/tmpnam.c (_tempnam_r): Make directory and prefix
11694 arguments const char *, not char *.
11695 * libc/include/stdio.h (_tempnam_r): Ditto.
11696
11697 * libc/include/sys/reent.h (struct _reent): The _sig_func type
11698 points to a function taking an integer, not void.
11699
11700 Tue Dec 29 14:35:53 1998 Christopher Faylor <cgf@cygnus.com>
11701
11702 * configure.host: Add a define for Cygwin builds.
11703 * libc/include/ctype.h: Don't use dll imported variables in newlib.
11704
11705 Mon Dec 28 09:19:56 1998 Christopher Faylor <cgf@cygnus.com>
11706
11707 * libc/include/ctype.h: Define _ctype_ as dll imported variable
11708 for use with Cygwin.
11709 * libc/include/sys/errno.h: Define _sys_errlist and _sys_nerr as
11710 dll imported variables for use with Cygwin.
11711 * libc/ctype/ctype_.c: Undefine _ctype_ in case it has been defined
11712 as a dll imported variable for Cygwin.
11713
11714 Sat Dec 26 00:13:53 1998 Christopher Faylor <cgf@cygnus.com>
11715
11716 * libc/include/sys/unistd.h: Add proto for getpass.
11717
11718 Fri Dec 18 19:28:19 1998 Geoffrey Noer <noer@cygnus.com>
11719
11720 * libc/sys/cygwin/sys/dirent.h: add protos for scandir and
11721 alphasort.
11722
11723 Fri Dec 18 16:33:25 1998 Geoffrey Noer <noer@cygnus.com>
11724
11725 * libc/posix/execvp.c (execvp): call cygwin_posix_path_list_p,
11726 not posix_path_list_p.
11727
11728 1998-12-15 Nick Clifton <nickc@cygnus.com>
11729
11730 * libc/string/memchr.c: Treat 'c' argument as an unsigned byte not
11731 a signed int.
11732
11733 1998-12-13 Nick Clifton <nickc@cygnus.com>
11734
11735 * libc/include/machine/setjmp.h (_JBLEN): Set to 10.
11736
11737 1998-12-12 Nick Clifton <nickc@cygnus.com>
11738
11739 * libc/machine/fr30/setjmp.S: New file, supplied by Mark Slater
11740 <msalter@cygnus.com>
11741 * libc/machine/fr30/Makefile.am: Add build of setjmp.S
11742 * libc/machine/fr30/Makefile.in: Regenerated.
11743
11744 1998-12-11 Nick Clifton <nickc@cygnus.com>
11745
11746 * configure.host: Remove use of libc/sys for FR30 port.
11747 * libc/sys/fr30: Remove directory (replaced by libgloss).
11748
11749 1998-12-10 Ken Raeburn <raeburn@cygnus.com>
11750
11751 * libc/string/strcat.c (ALIGNED): Sense of result was reversed.
11752 * libc/string/strncat.c (ALIGNED): Ditto.
11753
11754 Wed Dec 9 14:37:57 1998 Geoffrey Noer <noer@cygnus.com>
11755
11756 * libc/include/sys/time.h: include sys/types.h
11757
11758 Tue Dec 8 15:53:18 1998 Jeff Johnston <jjohnstn@cygnus.com>
11759
11760 * libc/machine/i386/memcmp.S (memcmp): Fix for unequal
11761 comparison found when checking word at a time.
11762
11763 1998-12-04 Nick Clifton <nickc@cygnus.com>
11764
11765 * libc/sys/fr30/crt0.s (_start): Initialise frame pointer.
11766
11767 1998-12-03 Nick Clifton <nickc@cygnus.com>
11768
11769 * libc/sys/fr30/syscalls.c (_times): New function stub.
11770
11771 Thu Dec 3 15:59:19 1998 Jeff Johnston <jjohnstn@cygnus.com>
11772
11773 * configure.host (mach_add_setjmp): Replaced mach_add_objs
11774 with mach_add_setjmp flag which indicates if setjmp should
11775 be added to the machine directory objects.
11776 * acinclude.m4: Removed reference to mach_add_objs.
11777 * aclocal.m4: Regenerated.
11778 * Makefile.in: Regenerated.
11779 * configure: Regenerated.
11780 * libc/aclocal.m4: Regenerated.
11781 * libc/Makefile.in: Regenerated.
11782 * libc/configure: Regenerated.
11783 * libc/machine/aclocal.m4: Regenerated.
11784 * libc/machine/Makefile.in: Regenerated.
11785 * libc/machine/configure: Regenerated.
11786 * libc/machine/i386/aclocal.m4: Regenerated.
11787 * libc/machine/i386/Makefile.am: Altered to selectively add
11788 setjmp.S to the src files list.
11789 * libc/machine/i386/Makefile.in: Regenerated.
11790 * libc/machine/i386/configure.in: Altered to test mach_add_setjmp.
11791 * libc/machine/i386/configure: Regenerated.
11792
11793 1998-12-02 Nick Clifton <nickc@cygnus.com>
11794
11795 * libc/sys/fr30/crt0.s (_start): Fix function names.
11796
11797 * libc/machine/fr30: New directory
11798 * libc/machine/fr30/Makefile.am: New file.
11799 * libc/machine/fr30/Makefile.in: New generated file.
11800 * libc/machine/fr30/configure.in: New file.
11801 * libc/machine/fr30/configure: New generated file.
11802 * libc/machine/fr30/aclocal.m4: New generated file.
11803 * libc/sys/fr30/Makefile.am: New file.
11804 * libc/sys/fr30/Makefile.in: New generated file.
11805 * libc/sys/fr30/configure.in: New file.
11806 * libc/sys/fr30/configure: New generated file.
11807 * libc/sys/fr30/syscalls.c: New file.
11808
11809 Tue Dec 1 16:28:56 1998 Geoffrey Noer <noer@cygnus.com>
11810
11811 * libc/sys/cygwin/sys/utmp.h: new file, moved from winsup/include.
11812
11813 1998-12-01 Ken Raeburn <raeburn@cygnus.com>
11814
11815 * libc/time/strftime.c (strftime): Also handle %y for years before
11816 1900.
11817
11818 Tue Dec 1 13:26:07 1998 Christopher Faylor <cgf@cygnus.com>
11819
11820 * libc/string/strcasecmp.c (strcasecmp): Adhere to standard
11821 UNIX convention. Perform tolower on characters before comparing
11822 them rather than use toupper.
11823 * libc/string/strncasecmp.c (strncasecmp): Ditto.
11824
11825 Mon Nov 30 16:24:19 1998 Jeff Johnston <jjohnstn@cygnus.com>
11826
11827 * configure.host: Added using i386 machine directory
11828 for all x86 cross-compiler and configuring
11829 which added object files to use via new "mach_add_objs" variable.
11830 * configure: Regenerated.
11831 * libc/configure: Regenerated.
11832 * libc/Makefile.in: Regenerated.
11833 * libc/aclocal.m4: Regenerated.
11834 * libc/ctype/Makefile.in: Regenerated.
11835 * libc/errno/Makefile.in: Regenerated.
11836 * libc/locale/Makefile.in: Regenerated.
11837 * libc/machine/Makefile.in: Regenerated.
11838 * libc/machine/aclocal.m4: Regenerated.
11839 * libc/machine/configure: Regenerated.
11840 * libc/posix/Makefile.in: Regenerated.
11841 * libc/reent/Makefile.in: Regenerated.
11842 * libc/signal/Makefile.in: Regenerated.
11843 * libc/stdio/Makefile.in: Regenerated.
11844 * libc/stdlib/Makefile.in: Regenerated.
11845 * libc/string/Makefile.in: Regenerated.
11846 * libc/string/memmove.c: Optimized code to use memcpy
11847 logic when performing a non-destructive copy.
11848 * libc/string/strncmp.c: Altered code to allow building
11849 optimized for size or speed.
11850 * libc/syscalls/Makefile.in: Regenerated.
11851 * libc/time/Makefile.in: Regenerated.
11852 * libc/unix/Makefile.in: Regenerated.
11853 * libc/machine/i386/Makefile.am: Added new files and reference
11854 to "mach_add_objs" to indicate optional object files.
11855 * libc/machine/i386/Makefile.in: Regenerated.
11856 * libc/machine/i386/aclocal.m4: Regenerated.
11857 * libc/machine/i386/configure: Regenerated.
11858 * libc/machine/i386/memchr.S: New file that implements
11859 function in Intel assembler.
11860 * libc/machine/i386/memcmp.S: ditto.
11861 * libc/machine/i386/memcpy.S: ditto.
11862 * libc/machine/i386/memmove.S: ditto.
11863 * libc/machine/i386/memset.S: ditto.
11864 * libc/machine/i386/strchr.S: ditto.
11865 * libc/machine/i386/strlen.S: ditto.
11866 * libc/machine/i386/f_atan2.S: New file that implements
11867 fast version of math function to be used by compiler when
11868 --ffast_math compile option is used.
11869 * libc/machine/i386/f_atan2f.S: ditto.
11870 * libc/machine/i386/f_exp.c: ditto.
11871 * libc/machine/i386/f_expf.c: ditto.
11872 * libc/machine/i386/f_frexp.S: ditto.
11873 * libc/machine/i386/f_frexpf.S: ditto.
11874 * libc/machine/i386/f_ldexp.S: ditto.
11875 * libc/machine/i386/f_ldexpf.S: ditto.
11876 * libc/machine/i386/f_log.S: ditto.
11877 * libc/machine/i386/f_logf.S: ditto.
11878 * libc/machine/i386/f_log10.S: ditto.
11879 * libc/machine/i386/f_log10f.S: ditto.
11880 * libc/machine/i386/f_math.h: New file.
11881 * libc/machine/i386/f_pow.c: ditto.
11882 * libc/machine/i386/f_powf.S: ditto.
11883 * libc/machine/i386/f_tan.S: ditto.
11884 * libc/machine/i386/f_tan.S: ditto.
11885 * libc/machine/i386/i386mach.h: New file.
11886
11887 Mon Nov 30 13:02:17 1998 Christopher Faylor <cgf@cygnus.com>
11888
11889 patch from Mumit Khan <khan@xraylith.wisc.edu>
11890 * libc/include/stdio.h (tempnam): Add prototype.
11891 * libc/stdio/tmpnam.c (_tempnam_r): Handle NULL prefix.
11892 (tempnam): Adhere to prototype.
11893
11894 Thu Nov 26 00:21:32 1998 Christopher Faylor <cgf@cygnus.com>
11895
11896 * Makefile.am: Add default for AR_FLAGS.
11897 * Makefile.in: Regenerate.
11898
11899 Tue Nov 24 18:48:56 1998 Geoffrey Noer <noer@cygnus.com>
11900
11901 * libc/include/time.h: move __cplusplus wrapper after includes
11902 * libc/include/sys/time.h: ditto. If Cygwin, include
11903 sys/select.h.
11904 * libc/include/sys/types.h: lose "32" in comment about Cygwin.
11905
11906 1998-11-23 Ken Raeburn <raeburn@cygnus.com>
11907
11908 * libc/time/strftime.c (strftime): Handle %y after year 2000.
11909
11910 Wed Nov 18 12:22:41 1998 Nick Clifton <nickc@cygnus.com>
11911
11912 * libc/sys/fr30/crt0.s (_start): Switch over to using int #9 as
11913 abnormnal end-of-crt0 marker.
11914
11915 Tue Nov 17 16:27:58 1998 Nick Clifton <nickc@cygnus.com>
11916
11917 * libc/sys/fr30/crt0.s: New file/directory.
11918 * libc/include/machine/setjmp.h: Add FR30 target.
11919 * libc/include/machine/ieeefp.h: Add FR30 target.
11920 * configure.host: Add FR30 target.
11921
11922 Mon Nov 16 23:15:00 1998 Ranjith Kumaran <ranjith@cygnus.com>
11923
11924 * libm/math: Files that are duplicated in common directory removed.
11925 * libm/math/fdlibm.h: Removed.
11926 * libm/math/s_cbrt.c: Removed.
11927 * libm/math/s_copysign.c: Removed.
11928 * libm/math/s_expm1.c: Removed.
11929 * libm/math/s_finite.c: Removed.
11930 * libm/math/s_ilogb.c: Removed.
11931 * libm/math/s_infinity.c: Removed.
11932 * libm/math/s_lib_ver.c: Removed.
11933 * libm/math/s_log1p.c: Removed.
11934 * libm/math/s_logb.c: Removed.
11935 * libm/math/s_matherr.c: Removed.
11936 * libm/math/s_modf.c: Removed.
11937 * libm/math/s_nan.c: Removed.
11938 * libm/math/s_nextafter.c: Removed.
11939 * libm/math/s_rint.c: Removed.
11940 * libm/math/s_scalbn.c: Removed.
11941 * libm/math/sf_cbrt.c: Removed.
11942 * libm/math/sf_copysign.c: Removed.
11943 * libm/math/sf_expm1.c: Removed.
11944 * libm/math/sf_finite.c: Removed.
11945 * libm/math/sf_ilogb.c: Removed.
11946 * libm/math/sf_infinity.c: Removed.
11947 * libm/math/sf_log1p.c: Removed.
11948 * libm/math/sf_logb.c: Removed.
11949 * libm/math/sf_modf.c: Removed.
11950 * libm/math/sf_nan.c: Removed.
11951 * libm/math/sf_nextafter.c: Removed.
11952 * libm/math/sf_rint.c: Removed.
11953 * libm/math/sf_scalbn.c: Removed.
11954 * libm/math/Makefile.am: Removed references to deleted files (above).
11955 * libm/math/Makefile.in: Regenerated.
11956 * libm/Makefile.am: Added common directory to math.
11957 * libm/Makefile.in: Regenerated.
11958
11959 Mon Nov 2 23:12:00 1998 Ranjith Kumaran <ranjith@cygnus.com>
11960
11961 * libm/mathfp: Add non-ANSI functions.
11962 * libm/mathfp/e_acosh.c acosh(): New file.
11963 * libm/mathfp/e_atanh.c atanh(): New file.
11964 * libm/mathfp/e_hypot.c hypot(): New file.
11965 * libm/mathfp/e_j0.c j0(): New file.
11966 * libm/mathfp/e_j1.c j1(): New file.
11967 * libm/mathfp/e_remainder.c remainder(): New file.
11968 * libm/mathfp/e_scalb.c scalb(): New file.
11969 * libm/mathfp/ef_acosh.c acoshf(): New file.
11970 * libm/mathfp/ef_atanh.c atanhf(): New file.
11971 * libm/mathfp/ef_hypot.c hypotf(): New file.
11972 * libm/mathfp/ef_j0.c j0f(): New file.
11973 * libm/mathfp/ef_j1.c j1f(): New file.
11974 * libm/mathfp/ef_remainder.c remainderf(): New file.
11975 * libm/mathfp/ef_scalb.c scalbf(): New file.
11976 * libm/mathfp/er_gamma.c gamma_r: New file.
11977 * libm/mathfp/er_lgamma.c lgamma_r(): New file.
11978 * libm/mathfp/erf_gamma.c gamma_rf(): New file.
11979 * libm/mathfp/erf_lgamma.c lgamma_rf(): New file.
11980 * libm/mathfp/w_cabs.c cabs(): New file.
11981 * libm/mathfp/w_drem.c drem(): New file.
11982 * libm/mathfp/w_jn.c jn(): New file.
11983 * libm/mathfp/wf_cabs.c cabsf(): New file.
11984 * libm/mathfp/wf_drem.c dremf(): New file.
11985 * libm/mathfp/wf_jn.c jnf(): New file.
11986
11987 Mon Nov 2 16:43:18 1998 Geoffrey Noer <noer@cygnus.com>
11988
11989 * libc/sys/cygwin32: remove directory and contents
11990 * libc/sys/cygwin: and add back, losing the "32".
11991 * configure.host: check for cygwin* instead of cygwin32.
11992 * acinclude.m4: ditto.
11993 * aclocal.m4: regenerate with aclocal
11994 * configure: regenerate with autoconf
11995
11996 Tue Oct 20 17:28:28 1998 Geoffrey Noer <noer@cygnus.com>
11997
11998 * libc/stdio/tmpnam.c (_tempnam_r): not enough memory allocated
11999 for length
12000
12001 Tue Oct 20 18:49:05 1998 Jeff Johnston <jjohnstn@cygnus.com>
12002
12003 * libc/include/sys/reent.h (struct _reent): Added variables _rand_next, _strtok_last,
12004 _asctime_buf, _localtime_buf and _gamma_signgam to struct reent
12005 to make rand/srand, strtok, asctime, localtime, w_gamma,
12006 w_lgamma, wf_gamma, and wf_lgamma reentrant. Included
12007 time.h to bring in struct tm definition.
12008 * libc/stdlib/rand.c (rand, srand): Don't emit functions 'rand' and 'srand' if
12009 '_REENT_ONLY' is set. Used variable '_rand_next' from struct reent.
12010 * libc/stdlib/strtok.c (strtok): Used variable '_strtok_last' from struct reent
12011 instead of static variable.
12012 * libc/stdlib/asctime.c (asctime): Used variable '_asctime_buf' from
12013 struct reent instead of static variable.
12014 * libc/stdlib/lcltime.c (localtime): Used variable '_localtime_buf' from
12015 struct reent instead of static variable.
12016 * libm/math/Makefile.am: Removed s_signgam.o.
12017 * libm/math/Makefile.in: Regenerated.
12018 * libm/math/w_gamma.c (gamma): Used variable '_gamma_signgam' from
12019 struct reent instead of global variable 'signgam'.
12020 * libm/math/w_lgamma.c (lgamma): Likewise.
12021 * libm/math/wf_gamma.c (gammaf): Likewise.
12022 * libm/math/wf_lgamma.c (lgammaf): Likewise.
12023 * libm/math/s_signgam.c: Removed.
12024 * libc/include/unctrl.h: Defined arrays __unctrl and __unctrllen
12025 to be const.
12026 * libc/misc/unctrl.c: Defined arrays __unctrl and __unctrllen
12027 to be const.
12028 * libc/reent/Makefile.am: Added dependence for impure.o on impure.c and
12029 libc/include/reent.h.
12030 * libc/reent/Makefile.in: Regenerated.
12031 * libc/stdio/vfprintf.c (_vfprintf_r): Defined arrays 'blanks' and 'zeroes'
12032 to be const.
12033 * libc/stdlib/mbtowc_r.c (_mbtowc_r): Defined arrays 'JIS_state_table' and
12034 'JIS_action_table' to be const.
12035 * libm/math/s_lib_ver.c: define variable _LIB_VERSION to be const.
12036
12037 Mon Oct 12 00:26:33 1998 Christopher Faylor <cgf@cygnus.com>
12038
12039 * acinclude.m4: $with_target_subdir should default to '.'
12040 or confusion results when configuring in same directory as sources.
12041 * Regenerate all aclocal.m4 and configure files.
12042
12043 Fri Oct 9 16:27:36 1998 Jeff Johnston <jjohnstn@cygnus.com>
12044
12045 * libc/stdlib/mallocr.c: Added 16 byte alignment support which
12046 can be set by defining MALLOC_ALIGNMENT=16. Also added support
12047 for platforms where sizeof(size_t) < sizeof(long) via
12048 SIZE_T_SMALLER_THAN_LONG macro.
12049
12050 Wed Oct 7 14:02:40 1998 Jeff Johnston <jjohnstn@cygnus.com>
12051
12052 * libc/include/time.h (CLOCKS_PER_SEC): Change CLOCKS_PER_SEC
12053 to refer to _CLOCKS_PER_SEC_ and added including <machine/time.h>
12054 which sets _CLOCKS_PER_SEC_ for selected machines.
12055 * libc/include/machine/time.h: New file.
12056
12057 Tue Oct 6 16:08:05 1998 Jeff Johnston <jjohnstn@cygnus.com>
12058
12059 * libc/syscalls/sysexecve.c: New file.
12060 * libc/syscalls/sysgettod.c: New file.
12061 * libc/syscalls/systimes.c: New file.
12062 * libc/syscalls/Makefile.am: Added new objects.
12063 * libc/syscalls/Makefile.in: Regenerated.
12064 * libc/include/_syslist.h (_execve): Moved define in file.
12065 * libc/include/reent.h: Added _execve_r declaration.
12066 * libc/Makefile.in: Regenerated.
12067 * libc/ctype/Makefile.in: Regenerated.
12068 * libc/errno/Makefile.in: Regenerated.
12069 * libc/locale/Makefile.in: Regenerated.
12070 * libc/machine/Makefile.in: Regenerated.
12071 * libc/misc/Makefile.in: Regenerated.
12072 * libc/posix/Makefile.in: Regenerated.
12073 * libc/reent/Makefile.in: Regenerated.
12074 * libc/reent/execr.c (_execve_r): Added _execve_r function.
12075 * libc/signal/Makefile.in: Regenerated.
12076 * libc/stdio/Makefile.in: Regenerated.
12077 * libc/time/Makefile.in: Regenerated.
12078 * libc/unix/Makefile.in: Regenerated.
12079 * libm/mathfp/Makefile.in: Regenerated.
12080
12081 Tue Oct 6 14:14:05 1998 Jeff Johnston <jjohnstn@cygnus.com>
12082
12083 * libc/string/Makefile.in: Regenerated.
12084 * libc/string/memchr.c (memchr): Moved code to reduce object size.
12085 * libc/string/memcpy.c (memcpy): Ditto.
12086 * libc/string/memcmp.c (memcmp): Ditto.
12087 * libc/string/memset.c (memset): Ditto.
12088 * libc/string/strchr.c (strchr): Ditto.
12089 * libc/string/strcmp.c (strcmp): Ditto.
12090 * libc/string/strcpy.c (strcpy): Ditto.
12091 * libc/string/strlen.c (strlen): Ditto.
12092
12093 Tue Oct 6 13:58:05 1998 Jeff Johnston <jjohnstn@cygnus.com>
12094
12095 * libm/acinclude.m4: Removed since newlib/acinclude.m4 can be used
12096 to generate aclocal.m4.
12097 * libm/Makefile.in: Regenerated.
12098 * libm/aclocal.m4: Regenerated.
12099 * libm/configure: Regenerated.
12100 * libm/math/Makefile.in: Regenerated.
12101 * libm/mathfp/Makefile.in: Regenerated.
12102
12103 1998-09-25 Mark Salter <msalter@cygnus.com>
12104
12105 * libc/include/machine/setjmp.h: Fixed test for mn10300 and mn10200
12106 by adding leading and trailing underscores to symbol names.
12107
12108 Tue Sep 22 15:33:41 1998 Christopher Faylor <cgf@cygnus.com>
12109
12110 * Makefile.in: Add default for AR_FLAGS.
12111
12112 Tue Sep 22 15:02:49 1998 Christopher Faylor <cgf@cygnus.com>
12113
12114 patch from ian@airs.com (Ian Taylor):
12115 * acinclude.m4: Run AC_CANONICAL_BUILD explicitly before
12116 NEWLIB_CONFIGURE so AC_CANONICAL_HOST will be run before it
12117 is needed for detecting the build machine. Required for
12118 cygwin native builds.
12119
12120 * Regenerate all aclocal.m4 and configure files.
12121
12122 Mon Sep 21 14:44:16 1998 Nick Clifton <nickc@cygnus.com>
12123
12124 * libc/sys/arm/crt0.S: Prepend a period to all local labels that
12125 used to start with LC.
12126
12127 Thu Sep 17 18:18:11 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
12128
12129 * libc/machine/sh/setjmp.S (setjmp): Handle __SH4* like __SH3E__ .
12130 (longjmp): Likewise.
12131
12132 Thu Sep 17 16:25:33 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
12133
12134 * libc/machine/sh/memset.S (memset): Move copy from r4 to r4 before
12135 the test for small number of bytes.
12136
12137 Thu Sep 10 11:40:00 1998 Ranjith Kumaran <ranjith@cygnus.com>
12138
12139 * Makefile.am: Add --enable-newlib-hw-fp check. This builds the new
12140 math library that uses floating point algorithms instead of the old
12141 libm.
12142 * Makefile.in: Regenerate with automake version 1.3b.
12143 * configure: Rebuild.
12144 * libm/Makefile.in: Regenerate with automake version 1.3b.
12145 * libm/aclocal.m4: Regenerate.
12146 * libm/configure: Rebuild.
12147 * libm/configure.in: Add newlib_hw_fp definition and mathfp directory.
12148 * libm/acinclude.m4: Define macros for configure.in.
12149 * libm/config.h.in: Generate.
12150 * libm/mathfp/Makefile.am: New file.
12151 * libm/mathfp/Makefile.in: Generate.
12152 * libm/mathfp/s_acos.c (acos): New file.
12153 * libm/mathfp/s_asin.c (asin): New file.
12154 * libm/mathfp/s_asine.c (asine): New file.
12155 * libm/mathfp/s_atan.c (atan): New file.
12156 * libm/mathfp/s_atan2.c (atan2): New file.
12157 * libm/mathfp/s_atangent.c (atangent): New file.
12158 * libm/mathfp/s_ceil.c (ceil): New file.
12159 * libm/mathfp/s_copysign.c (copysign): New file.
12160 * libm/mathfp/s_cos.c (cos): New file.
12161 * libm/mathfp/s_cosh.c (cosh): New file.
12162 * libm/mathfp/s_exp.c (exp): New file.
12163 * libm/mathfp/s_fabs.c (fabs): New file.
12164 * libm/mathfp/s_finite.c (finite): New file.
12165 * libm/mathfp/s_floor.c (floor): New file.
12166 * libm/mathfp/s_fmod.c (fmod): New file.
12167 * libm/mathfp/s_frexp.c (frexp): New file.
12168 * libm/mathfp/s_infconst.c: New file.
12169 * libm/mathfp/s_isinf (isinf).c: New file.
12170 * libm/mathfp/s_isnan.c (isnan): New file.
12171 * libm/mathfp/s_ispos.c (ispos): New file.
12172 * libm/mathfp/s_ldexp.c (ldexp): New file.
12173 * libm/mathfp/s_log.c (log): New file.
12174 * libm/mathfp/s_log10.c (log10): New file.
12175 * libm/mathfp/s_logarithm.c (logarithm): New file.
12176 * libm/mathfp/s_mathcnst.c: New file.
12177 * libm/mathfp/s_modf (modf).c: New file.
12178 * libm/mathfp/s_numtest.c (numtest): New file.
12179 * libm/mathfp/s_pow.c (pow): New file.
12180 * libm/mathfp/s_scalbn.c (scalbn): New file.
12181 * libm/mathfp/s_sin (sin).c: New file.
12182 * libm/mathfp/s_sine.c (sine): New file.
12183 * libm/mathfp/s_sineh.c (sineh): New file.
12184 * libm/mathfp/s_sinf.c (sinf): New file.
12185 * libm/mathfp/s_sinh.c (sinh): New file.
12186 * libm/mathfp/s_sqrt.c (sqrt): New file.
12187 * libm/mathfp/s_tan.c (tan): New file.
12188 * libm/mathfp/s_tanh.c (tanh): New file.
12189 * libm/mathfp/sf_acos.c (acosf): New file.
12190 * libm/mathfp/sf_asin.c (asinf): New file.
12191 * libm/mathfp/sf_asine.c (asinef): New file.
12192 * libm/mathfp/sf_atan.c (atanf): New file.
12193 * libm/mathfp/sf_atan2.c (atan2f): New file.
12194 * libm/mathfp/sf_atangent.c (atangent): New file.
12195 * libm/mathfp/sf_ceil.c (ceilf): New file.
12196 * libm/mathfp/sf_copysign.c (copysignf): New file.
12197 * libm/mathfp/sf_cos.c (cosf): New file.
12198 * libm/mathfp/sf_cosh.c (coshf): New file.
12199 * libm/mathfp/sf_exp.c (expf): New file.
12200 * libm/mathfp/sf_fabs.c (fabsf): New file.
12201 * libm/mathfp/sf_finite.c (finitef): New file.
12202 * libm/mathfp/sf_floor.c (floorf): New file.
12203 * libm/mathfp/sf_fmod.c (fmodf): New file.
12204 * libm/mathfp/sf_frexp.c (frexpf): New file.
12205 * libm/mathfp/sf_isinf.c (isinff): New file.
12206 * libm/mathfp/sf_isnan.c (isnanf): New file.
12207 * libm/mathfp/sf_ispos.c (isposf): New file.
12208 * libm/mathfp/sf_ldexp.c (ldexpf): New file.
12209 * libm/mathfp/sf_log.c (logf): New file.
12210 * libm/mathfp/sf_log10.c (log10f): New file.
12211 * libm/mathfp/sf_logarithm.c (logarithmf): New file.
12212 * libm/mathfp/sf_modf.c (modff): New file.
12213 * libm/mathfp/sf_numtest.c (numtestf): New file.
12214 * libm/mathfp/sf_pow.c (powf): New file.
12215 * libm/mathfp/sf_scalbn.c (scalbnf): New file.
12216 * libm/mathfp/sf_sin.c (sinf): New file.
12217 * libm/mathfp/sf_sine.c (sinef): New file.
12218 * libm/mathfp/sf_sineh.c (sinehf): New file.
12219 * libm/mathfp/sf_sinh.c (sinhf): New file.
12220 * libm/mathfp/sf_sqrt.c (sqrtf): New file.
12221 * libm/mathfp/sf_tan.c (tanf): New file.
12222 * libm/mathfp/sf_tanh.c (tanhf): New file.
12223 * libm/mathfp/zmath.h: New file.
12224
12225 Wed Sep 2 02:49:03 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
12226
12227 * libc/machine/sh/strcmp.S (L_char_loop): Re-load r0 at loop
12228 exit if it has been overwritten by pre-fetching in delay slot.
12229
12230 1998-09-01 Michael Meissner <meissner@cygnus.com>
12231
12232 * Makefile.am (tooldir): Add in host_alias, so that multilib
12233 libraries are installed in the directory the compiler looks in.
12234 * Makefile.in: Regenerate.
12235
12236 * libc/stdlib/Makefile.in: Regenerate with automake version 1.3b.
12237
12238 Mon Aug 31 11:39:31 1998 Jeff Johnston <jjohnstn@cygnus.com>
12239
12240 * libc/machine/mn10300/memcpy.S (_memcpy): Move alignment test
12241 ahead of test for number of bytes being moved.
12242
12243 Thu Aug 27 14:07:53 1998 Christopher Faylor <cgf@cygnus.com>
12244
12245 * libc/include/sys/unistd.h: Nothing special needed for
12246 _exit under cygwin.
12247
12248 Wed Aug 26 15:05:21 1998 Nick Clifton <nickc@cygnus.com>
12249
12250 * libc/sys/arm/syscalls.c (_sbrk): Rename '_end' to 'end' to
12251 conform to user label naming conventions.
12252
12253 Mon Aug 24 14:46:19 1998 Geoffrey Noer <noer@cygnus.com>
12254
12255 * libc/sys/cygwin32/sys/utime.h: variable names in
12256 protos should start with two leading underscores
12257 * libc/include/string.h: ditto
12258 * libc/include/sys/signal.h: ditto
12259 * libc/include/sys/stat.h: ditto
12260 * libc/include/sys/time.h: ditto
12261 * libc/include/sys/unistd.h: ditto
12262 * libc/include/ctype.h: ditto
12263 * libc/include/stdlib.h: ditto
12264 * libc/include/sys/reent.h: struct _atexit function ptr takes a
12265 void, same with _sig_func.
12266
12267 Fri Aug 21 14:44:14 1998 Jeff Johnston <jjohnstn@cygnus.com>
12268
12269 * libc/stdlib/mbtowc_r.c (_mbtowc_r): Added preprocessor checks
12270 for MB_CAPABLE to reduce code size when newlib is not configured
12271 with --enable-newlib-mb.
12272 * libc/stdlib/Makefile.am: Specified -fshort-enums when building
12273 mbtowc_r.o to minimize size.
12274 * libc/stdlib/Makefile.in: Rebuild.
12275
12276 Wed Aug 19 16:20:13 1998 Jim Wilson <wilson@cygnus.com>
12277
12278 * libc/sys/sparc64/Makefile.am (.S_r.o, .c_r.o): Change -DREENTRANT
12279 to -DREENT.
12280 * libc/sys/sparc64/Makefile.in: Rebuild.
12281
12282 Tue Aug 18 22:38:29 1998 Ian Lance Taylor <ian@cygnus.com>
12283
12284 * Makefile.am (MAKEOVERRIDES): Define.
12285 * Makefile.in: Rebuild.
12286
12287 Tue Aug 18 12:38:47 1998 Jim Wilson <wilson@cygnus.com>
12288
12289 * libc/sys/sparc64/sys/stat.h (stat): Add const.
12290
12291 Mon Aug 17 22:27:06 1998 Ian Lance Taylor <ian@cygnus.com>
12292
12293 * acinclude.m4 (NEWLIB_CONFIGURE): Use top_builddir in
12294 newlib_cflags when looking for targ-include.
12295 * */aclocal.m4, */configure: Rebuild.
12296
12297 Fri Jul 31 10:57:42 1998 Catherine Moore <clm@cygnus.com>
12298
12299 * libc/sys/arm/syscalls.c (_sbrk): Change "__end__"
12300 to "_end".
12301
12302 Wed Jul 29 00:02:01 1998 Mark Alexander <marka@cygnus.com>
12303
12304 * libc/include/sys/config.h: Define __IEEE_LITTLE_ENDIAN
12305 on SPARCs with little-endian data.
12306 * libc/include/machine/ieeefp.h: Ditto.
12307
12308 Wed Jul 22 18:00:10 1998 Ian Lance Taylor <ian@cygnus.com>
12309
12310 * acinclude.m4: Handle a relative srcdir correctly when setting
12311 newlib_cflags.
12312 * */aclocal.m4, */configure: Rebuild.
12313
12314 Wed Jul 22 17:11:33 1998 Jeff Johnston <jjohnstn@cygnus.com>
12315
12316 * libm/math/wrf_lgamma.c (lgammaf_r): Initialize exc.err to 0 and
12317 also set exc.arg1, exc.arg2 appropriately in case matherr is supplied.
12318 * libm/math/wrf_gamma.c (gammaf_r): ditto
12319 * libm/math/wr_lgamma.c (lgamma_r): ditto
12320 * libm/math/wr_gamma.c (gamma_r): ditto
12321 * libm/math/wf_sqrt.c (sqrtf): ditto
12322 * libm/math/wf_sinh.c (sinhf): ditto
12323 * libm/math/wf_scalb.c (scalbf): ditto
12324 * libm/math/wf_remainder.c (remainderf): ditto
12325 * libm/math/wf_pow.c (powf): ditto
12326 * libm/math/wf_log10.c (log10f): ditto
12327 * libm/math/wf_log.c (logf): ditto
12328 * libm/math/wf_lgamma.c (lgammaf): ditto
12329 * libm/math/wf_jn.c (jnf, ynf): ditto
12330 * libm/math/wf_j1.c (j1f, y1f): ditto
12331 * libm/math/wf_j0.c (j0f, y0f): ditto
12332 * libm/math/wf_hypot.c (hypotf): ditto
12333 * libm/math/wf_gamma.c (gammaf): ditto
12334 * libm/math/wf_fmod.c (fmodf): ditto
12335 * libm/math/wf_exp.c (expf): ditto
12336 * libm/math/wf_cosh.c (coshf): ditto
12337 * libm/math/wf_atanh.c (atanhf): ditto
12338 * libm/math/wf_atan2f.c (atan2f): ditto
12339 * libm/math/wf_asin.c (asinf): ditto
12340 * libm/math/wf_acosh.c (acoshf): ditto
12341 * libm/math/wf_acos.c (acosf): ditto
12342 * libm/math/w_sqrt.c (sqrt): ditto
12343 * libm/math/w_sinh.c (sinh): ditto
12344 * libm/math/w_scalb.c (scalb): ditto
12345 * libm/math/w_remainder.c (remainder): ditto
12346 * libm/math/w_pow.c (pow): ditto
12347 * libm/math/w_log10.c (log10): ditto
12348 * libm/math/w_log.c (log): ditto
12349 * libm/math/w_lgamma.c (lgamma): ditto
12350 * libm/math/w_jn.c (jn, yn): ditto
12351 * libm/math/w_j1.c (j1, y1): ditto
12352 * libm/math/w_j0.c (j0, y0): ditto
12353 * libm/math/w_hypot.c (hypot): ditto
12354 * libm/math/w_gamma.c (gamma): ditto
12355 * libm/math/w_fmod.c (fmod): ditto
12356 * libm/math/w_exp.c (exp): ditto
12357 * libm/math/w_cosh.c (cosh): ditto
12358 * libm/math/w_atanh.c (atanh): ditto
12359 * libm/math/w_atan2f.c (atan2): ditto
12360 * libm/math/w_asin.c (asin): ditto
12361 * libm/math/w_acosh.c (acosh): ditto
12362 * libm/math/w_acos.c (acos): ditto
12363
12364 Tue Jul 21 12:34:54 1998 Ian Lance Taylor <ian@cygnus.com>
12365
12366 * libm/math/Makefile.am (src): Add w_cabs.c and w_drem.c.
12367 (fsrc): Add wf_cabs.c and wf_drem.c.
12368 * libm/math/Makefile.in: Rebuild.
12369
12370 * Makefile.am (AM_MAKEFLAGS): Add CFLAGS_FOR_BUILD. Remove some
12371 unused directory variables. Remove duplicate CFLAGS.
12372 * Makefile.in: Rebuild.
12373
12374 * doc/Makefile.am ($(MKDOC)): Don't use $(CFLAGS) when building
12375 with $(CC_FOR_BUILD).
12376 (makedoc.o): Likewise.
12377 * doc/Makefile.in: Rebuild.
12378
12379 * libc/sys/cygwin32/Makefile.am (EXTRA_LIBRARIES): Define, to
12380 force a definition of COMPILE.
12381 (libfoo_a_SOURCES): Define.
12382 * libc/sys/cygwin32/Makefile.in: Rebuild.
12383 * libc/sys/tic80/Makefile.am (EXTRA_LIBRARIES): Define, to
12384 force a definition of COMPILE.
12385 (libfoo_a_SOURCES): Define.
12386 * libc/sys/tic80/Makefile.in: Rebuild.
12387
12388 Mon Jul 20 20:49:24 1998 Christopher Faylor <cgf@cygnus.com>
12389
12390 * libc/include/sys/fcntl.h: Add O_NOINHERIT, Win32-specific
12391 flag.
12392
12393 Fri Jul 17 16:13:16 1998 Ian Lance Taylor <ian@cygnus.com>
12394
12395 * Build using autoconf and automake. Added many Makefile.am and
12396 configure.in files, plus generated files. Old configure.in files
12397 and all old Makefile.in files completely replaced. Removed
12398 host/any. Added acinclude.m4 and configure.host.
12399
12400 Sat Jul 11 18:14:49 1998 Felix Lee <flee@cygnus.com>
12401
12402 * libc/stdio/vfprintf.c: enable long long support, sometimes.
12403 * configure.in (*-*-cygwin32): add -DWANT_PRINTF_LONG_LONG.
12404
12405 Tue Jul 7 01:51:55 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
12406
12407 * libc/machine/sh/strcmp.S, libc/machine/sh/strcpy.S: New files.
12408 * libc/machine/sh/Makefile.in: Add rules for new files.
12409
12410 Tue Jul 7 01:40:55 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
12411
12412 * libc/machine/sh/asm.h (SL, DELAYED_BRANCHES): Define.
12413 * libc/machine/sh/memset.S (memset): Remove uses of dt; shorten code.
12414 * libc/machine/sh/memcpy.S (SL, DELAYED_BRANCHES): Don't define.
12415
12416 Thu Jul 2 10:33:16 1998 Nick Clifton <nickc@cygnus.com>
12417
12418 * libc/sys/arm/syscalls.c (_exit): Add comment, noting that exit
12419 code is ignored.
12420
12421 Wed Jun 24 13:56:54 1998 Jeff Johnston <jjohnstn@cygnus.com>
12422
12423 * libc/stdio/tmpnam.c (_tmpnam_r): Changed routine to use
12424 internal static buffer when s is NULL, as prescribed by ANSI.
12425
12426 1998-06-22 Vladimir N. Makarov <vmakarov@cygnus.com>
12427
12428 * libc/sys/h8300hms/Makefile.in (OFILES): malloc.o has been
12429 removed.
12430 * libc/sys/h8300hms/malloc.c: has been removed. Now malloc.c from
12431 libc/stdlib will be used for h8300hms.
12432
12433 Thu Jun 18 16:56:05 1998 Jeff Johnston <jjohnstn@cygnus.com>
12434
12435 * libc/machine/mn10300/strlen.S (_strlen): New optimized assembler
12436 version that can be built either for speed or size.
12437 * libc/machine/mn10300/memset.S (_memset): ditto
12438 * libc/machine/mn10300/memchr.S (_memchr): ditto
12439 * libc/machine/mn10300/memcpy.S (_memcpy): ditto
12440 * libc/machine/mn10300/memcmp.S (_memcmp): ditto
12441 * libc/machine/mn10300/strchr.S (_strchr): ditto
12442 * libc/machine/mn10300/strcmp.S (_strcmp): ditto
12443 * libc/machine/mn10300/strcpy.S (_strcpy): ditto
12444 * libc/machine/mn10300/Makefile.in: Added entries for
12445 memchr.o, memcmp.o, memcpy.o, memset.o, strchr.o,
12446 strcmp.o, strcpy.o, and strlen.o.
12447
12448 Wed Jun 17 12:50:26 1998 Mark Alexander <marka@cygnus.com>
12449
12450 * configure.in: Don't use libc/sys/sysmec for MN10200; it's
12451 been replaced with libgloss/mn10200.
12452
12453 Fri Jun 12 14:34:39 1998 Michael Meissner <meissner@cygnus.com>
12454
12455 * libc/string/strchr.c (strchr): Make s a constant pointer to
12456 avoid warning.
12457
12458 Tue Jun 9 16:29:30 1998 Jason Molenda (crash@bugshack.cygnus.com)
12459
12460 * configure.in (target == arm* or thumb*): Define ARM_RDI_MONITOR
12461 instead of ARM_RDP_MONITOR (sys/libc/arm/crt0.S to assume Angel
12462 board SWIs instead of Demon board SWIs).
12463
12464 Thu Jun 4 12:16:46 1998 Michael Meissner <meissner@cygnus.com>
12465
12466 * libc/string/strncat.c (strncat): Make -Os act the same as
12467 PREFER_SIZE_OVER_SPEED being defined.
12468
12469 Wed Jun 3 17:52:33 1998 Michael Meissner <meissner@cygnus.com>
12470
12471 * libc/string/memchr.c (memchr): Make -Os act the same as
12472 PREFER_SIZE_OVER_SPEED being defined.
12473 * libc/string/memcmp.c (memcmp): Ditto.
12474 * libc/string/memcpy.c (memcpy): Ditto.
12475 * libc/string/memset.c (memset): Ditto.
12476 * libc/string/strcat.c (strcat): Ditto.
12477 * libc/string/strchr.c (strchr): Ditto.
12478 * libc/string/strcmp.c (strcmp): Ditto.
12479 * libc/string/strcpy.c (strcpy): Ditto.
12480 * libc/string/strlen.c (strlen): Ditto.
12481 * libc/string/strncat.c (strncat): Ditto.
12482 * libc/string/strncmp.c (strncmp): Ditto.
12483 * libc/string/strncpy.c (strncpy): Ditto.
12484
12485 Mon Jun 1 15:25:07 1998 Geoffrey Noer <noer@cygnus.com>
12486
12487 * libc/include/sys/itimer.h: remove
12488 * libc/include/sys/time.h: itimer stuff should be here
12489
12490 Mon Jun 1 16:31:29 1998 Jeff Johnston <jjohnstn@cygnus.com>
12491
12492 * libc/stdio/vfprintf.c (cvt): Changed code to look at sign
12493 bit instead of comparing to 0 so -0.0 can be printed correctly.
12494
12495 Sat May 30 09:33:51 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
12496
12497 * libc/stdlib/mprec.c (b2d): Inilialize d in non-VAX case too.
12498
12499 Fri May 29 22:25:10 1998 Geoffrey Noer <noer@cygnus.com>
12500
12501 * libc/include/sys/unistd.h: fix sync() proto
12502 * libc/include/sys/fcntl.h: remove _close which is already
12503 defined in unistd.h.
12504 * libc/include/sys/time.h: add getitimer proto
12505
12506 Fri May 29 16:10:28 1998 Geoffrey Noer <noer@cygnus.com>
12507
12508 * libc/string/strchr.c: convert arg to unsigned char
12509 * libc/include/stdlib.h: add protos for random, srandom
12510 * libc/include/sys/stat.h: add lstat proto
12511 * libc/include/sys/time.h: add setitimer proto
12512 * libc/include/sys/unistd.h: add readlink, symlink protos
12513 * libc/include/process.h: instead of including windows.h and using
12514 HANDLEs in sexec protos, just use void *s. Need to include
12515 sys/types.h.
12516
12517 Fri May 29 03:04:29 1998 Geoffrey Noer <noer@cygnus.com>
12518
12519 * libc/include/sys/fcntl.h: add _close proto for Cygwin32
12520
12521 Thu May 28 16:34:21 1998 Geoffrey Noer <noer@cygnus.com>
12522
12523 * libc/include/process.h: add secure exec protos
12524
12525 Wed May 27 13:54:51 1998 Jeffrey A Law (law@cygnus.com)
12526
12527 * libc/stdlib/dtoa.c (_dtoa_r): Use "double_union" for variables
12528 which are accessed as both doubles and integers.
12529 * libc/stdlib/mprec.c (ulp, b2d, ratio): Likewise.
12530 * libc/stdlib/strtod.c (_strtod_r): Likewise.
12531 * libc/stdlib/mprec.h: Add "union double_union" and change
12532 word0/word1 macros to use it.
12533
12534 Tue May 26 18:04:21 1998 Geoffrey Noer <noer@cygnus.com>
12535
12536 * libc/include/sys/signal.h: add __cplusplus wrapper
12537
12538 Tue May 26 15:10:22 1998 Geoffrey Noer <noer@cygnus.com>
12539
12540 * libc/include/sys/utime.h: new generic file that gets replaced by
12541 libc/sys/SYSDIR/sys/utime.h on systems that support the utime
12542 function.
12543 * sys/cygwin32/sys/utime.h: use _EXFUN in utime proto
12544 * libc/include/time.h: remove duplicate utime proto
12545 * libc/include/utime.h: add comment
12546
12547 Sun May 24 23:56:20 1998 Christopher Faylor <cgf@cygnus.com>
12548
12549 * libc/include/sys/time.h: Add missing include to
12550 allow use of _EXFUN. Remove times function that is
12551 already defined in times.h.
12552
12553 Sun May 24 01:32:14 1998 Christopher Faylor <cgf@cygnus.com>
12554
12555 * libc/include/time.h: Fix typo in tzset.
12556
12557 Fri May 22 17:00:48 1998 Geoffrey Noer <noer@cygnus.com>
12558
12559 * libc/include/sys/time.h: add missing Cygwin32 function protos
12560 * libc/include/sys/unistd.h: ditto
12561 * libc/include/time.h: ditto
12562
12563 Wed May 20 20:35:11 1998 Geoffrey Noer <noer@cygnus.com>
12564
12565 * libc/sys/cygwin32/sys/param.h: add protected NULL def, remove
12566 FIXME.
12567 * libc/include/sys/types.h: add a new __MS_types__ section
12568 to define vm_offset_t, vm_size_t, int32_t et al, register_t,
12569 __BIT_TYPES_DEFINED__.
12570
12571 Wed May 20 18:49:21 1998 Geoffrey Noer <noer@cygnus.com>
12572
12573 * libc/sys/cygwin32/sys/param.h: move here from winsup/include/sys
12574 since it overrides the one in libc/include/sys. Also, start
12575 including types.h.
12576
12577 Wed May 20 14:45:40 1998 Geoffrey Noer <noer@cygnus.com>
12578
12579 * libm/math/Makefile.in: add s_signgam.o to obj list
12580
12581 Tue May 19 11:57:11 1998 Jeff Johnston <jjohnstn@cygnus.com>
12582
12583 * libc/include/sys/reent.h (_REENT_INIT): Initialize current locale to "C".
12584
12585 Mon May 18 22:36:12 1998 Christopher Faylor <cgf@cygnus.com>
12586
12587 * libc/include/sys/signal.h: cygwin32 exports sig{empty,add}set,
12588 so don't use defines.
12589
12590 Mon May 18 19:01:02 1998 Michael Meissner <meissner@cygnus.com>
12591
12592 * libc/sys/d10v/crt0.S: Use correct stab for 16-bit ints.
12593
12594 Sun May 17 18:40:32 1998 Frank Ch. Eigler <fche@cygnus.com>
12595
12596 * libc/stdlib/mbtowc_r.c (_mbtowc_r): Accept a NULL
12597 _current_locale as default locale.
12598
12599 Sat May 16 21:59:59 1998 Bob Manson <manson@charmed.cygnus.com>
12600
12601 * libc/stdlib/mallocr.c (mALLOc): Add explicit tests for
12602 insufficient space in a chunk.
12603
12604 Tue May 12 14:41:01 1998 Jeff Johnston <jjohnstn@cygnus.com>
12605
12606 * configure.in (links): Added check for --enable-newlib-mb configure
12607 option which defines the MB_CAPABLE macro.
12608 * libc/locale/locale.c (_setlocale_r): Added support for setting
12609 LC_CTYPE to "C-JIS", "C-SJIS" or "C-EUCJP", when MB_CAPABLE is
12610 defined.
12611 * libc/stdlib/mbtowc_r.c (_mbtowc_r): New function _mbtowc_r that
12612 implements mbtowc() with multibyte support for JIS, SJIS, and EUC-JP.
12613 * libc/stdlib/wctomb_r.c (_wctomb_r): New function _wctomb_r that
12614 implements wctomb() with multibyte support for JIS, SJIS, and EUC-JP.
12615 * libc/stdlib/mbstowcs_r.c (_mbstowcs_r): New function _mbstowcs_r that
12616 implements mbstowcs() with multibyte support for JIS, SJIS, and EUC-JP.
12617 * libc/stdlib/wcstombs_r.c (_wcstombs_r): New function _wcstomb_r that implements
12618 wcstombs() with multibyte support for JIS, SJIS, and EUC-JP.
12619 * libc/stdlib/Makefile.in: Added new multibyte
12620 routines: _mbtowc_r(), _wctomb_r(), _mbstowcs_r(), and _wcstombs_r().
12621 * libc/include/stdlib.h: Added declarations of _mbtowc_r(), _wctomb_r(),
12622 _mbstowcs_r(), and _wcstombs_r().
12623 * libc/stdlib/mbctype.h: New internal header file that contains macros to test
12624 for JIS, SJIS, and EUC-JP characters.
12625 * libc/stdlib/mblen.c (mblen): Added code to call _mbtowc_r() if
12626 MB_CAPABLE defined.
12627 * libc/stdlib/mbtowc.c (mbtowc): Added code to call _mbtowc_r() if
12628 MB_CAPABLE defined.
12629 * libc/stdlib/wctomb.c (wctomb): Added code to call _wctomb_r() if
12630 MB_CAPABLE defined.
12631 * libc/stdlib/mbstowcs.c (mbstowcs): Added code to call _mbstowcs_r()
12632 if MB_CAPABLE defined.
12633 * libc/stdlib/wcstombs.c (wcstombs): Added code to call _wcstombs_r()
12634 if MB_CAPABLE defined.
12635 * libc/stdio/vfscanf.c (__svfscanf): Added multibyte tolerance
12636 to the format string processing when MB_CAPABLE.
12637 * libc/stdio/vfprintf.c (_VFPRINTF_R): Changed mbtowc() call to
12638 call _mbtowc_r().
12639
12640 Tue May 5 16:07:23 1998 Nick Clifton <nickc@cygnus.com>
12641
12642 The following modifications are courtesy of Anthony Thompson,
12643 athompson@cambridge.arm.com:
12644 * libc/sys/arm/syscalls.c: Initialise and track stdin/out/err for
12645 boith RDI and RDP monitors.
12646 * libc/sys/arm/crt0.S: Call initialise_monitor_handles() for both
12647 RDI and RDP monitors.
12648
12649 Wed Apr 29 15:22:15 1998 Jeff Johnston <jjohnstn@cygnus.com>
12650
12651 * configure.in (links): Added -DHAVE_GETTIMEOFDAY for arm and thumb.
12652 * libc/sys/arm/syscalls.c (_gettimeofday _times): Added functions.
12653 (_swiopen): Fixed open flags to treat write with append as just append.
12654 (_swilseek): Fixed lseek support to properly handle offsets from SEEK_END.
12655 * libc/sys/arm/sys/param.h: New file to override param.h for ARM.
12656
12657 Fri Apr 24 18:00:09 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
12658
12659 * libc/machine/sh/memcpy.S (L_odddst, big endian version):
12660 When needing to transfer an initial 2-byte-word, store as
12661 two single bytes.
12662
12663 Wed Apr 22 17:56:03 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
12664
12665 * libc/sys/sh/crt0.S (start): Handle __SH4_SINGLE_ONLY__ like
12666 __SH3E__ .
12667 * libc/machine/sh/memcpy.S (DELAYED_BRANCHES, SL): Likewise.
12668 * libc/include/machine/ieeefp.h (_DOUBLE_IS_32BITS): Likewise.
12669
12670 Wed Apr 22 12:28:03 1998 Michael Meissner <meissner@cygnus.com>
12671
12672 * configure.in (target_cflags): If --enable-target-optspace, use
12673 -Os to compile newlib rather than -O2. Default to using -Os for
12674 d10v, d30v and m32r if --{enable,disable}-target-optspace is not
12675 used.
12676
12677 Tue Apr 21 23:13:34 1998 Geoffrey Noer <noer@cygnus.com>
12678
12679 * libc/include/machine/setjmp.h: change sigsetjmp and
12680 siglongjmp definitions to use an array instead of a struct
12681 for __CYGWIN32__
12682
12683 Tue Apr 14 11:47:47 1998 Doug Evans <devans@canuck.cygnus.com>
12684
12685 * libc/reent/impure.c (__ATTRIBUTE_IMPURE_DATA__): Fix spelling.
12686
12687 Mon Apr 6 15:05:08 1998 Jonathan Larmour <jlarmour@cygnus.co.uk>
12688
12689 * libc/string/strxfrm.c: fix to get correct return value
12690
12691 Wed Apr 1 16:09:05 1998 Nick Clifton <nickc@cygnus.com>
12692
12693 * libc/sys/arm/crt0.S: Set top of RAM to be 0x800000 for PE
12694 builds. Make mode change labels global so that they will be seen
12695 by the debugger.
12696
12697 Wed Mar 18 09:45:10 1998 Nick Clifton <nickc@cygnus.com>
12698
12699 * configure.in (links): Do not use ARM debiugging protocols for PE
12700 builds.
12701
12702 * libc/sys/arm/syscalls.c (_sbrk): Add "_sbrk: " to error
12703 message.
12704
12705 Fri Mar 13 11:24:34 1998 Jeff Johnston <jjohnstn@cygnus.com>
12706
12707 * libc/stdio/findfp.c (__sinit): Made stdout default to
12708 line buffered mode as defined by ANSI.
12709
12710 Tue Mar 10 11:41:26 1997 Bob Manson <manson@charmed.cygnus.com>
12711
12712 * libc/include/sys/itimer.h: New file.
12713
12714 * libc/signal/signal.c (__sigtramp_r,__sigtramp): New functions.
12715
12716 Mon Mar 9 14:19:26 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
12717
12718 * libc/machine/sh/memcpy.S: (_memcpy): Fix for execute/memcpy-1.c
12719 failure.
12720
12721 Fri Feb 27 13:56:10 1998 Michael Meissner <meissner@cygnus.com>
12722
12723 * libc/machine/d30v/setjmp.S (longjmp): Fix order of parallel
12724 insns.
12725
12726 Wed Feb 25 09:29:54 1998 Nick Clifton <nickc@cygnus.com>
12727
12728 * libc/sys/arm/syscalls.c (_open): Add varags to conform to prototype.
12729
12730 Tue Feb 24 18:00:13 1998 Michael Meissner <meissner@cygnus.com>
12731
12732 * libc/machine/d30v/{setjmp.S,Makefile.in}: New files for D30V
12733 support.
12734
12735 * libc/include/machine/setjmp.h: Add D30V support.
12736
12737 * configure.in (d30v-*): Add d30v machine directory.
12738
12739 Mon Feb 23 09:32:58 1998 Mark Alexander <marka@cygnus.com>
12740
12741 * configure.in: Don't use libc/sys/sysmec for MN10300; it's
12742 been replaced with libgloss/mn10300.
12743
12744 Sat Feb 21 17:44:43 1998 Geoffrey Noer <noer@cygnus.com>
12745
12746 * libc/stdlib/mallocr.c: remove __malloc_copy routine now that
12747 it is no longer needed.
12748
12749 Thu Feb 19 16:15:10 1998 Geoffrey Noer <noer@cygnus.com>
12750
12751 * libc/include/sys/signal.h: add sigpause proto for Cygwin32
12752
12753 Wed Feb 18 23:51:08 1998 Geoffrey Noer <noer@cygnus.com>
12754
12755 * libc/stdio/fdopen.c (fdopen): Make all writes go to the end of
12756 the file when O_APPEND is set, wherever the EOF happens to be at
12757 that time.
12758
12759 Wed Feb 18 23:25:02 1998 Geoffrey Noer <noer@cygnus.com>
12760
12761 patch from cgf@bbc.com (Christopher Faylor):
12762 * libc/stdio/freopen.c (freopen): Conform to standard UNIX
12763 convention of closing fp prior to attempting to open the file
12764 argument. This allows correct operation when reopening
12765 stdin/stdout/stderr. Replaces last freopen.c patch.
12766
12767 Wed Feb 18 16:27:40 1998 Geoffrey Noer <noer@cygnus.com>
12768
12769 patch from cgf@bbc.com (Christopher Faylor):
12770 * libc/stdio/freopen.c: freopen was not preserving the fd
12771 of the stream being operated on. This confuses programs that
12772 expect that the handles for stdout and stderr will be 1 and 2.
12773
12774 Mon Feb 16 23:34:07 1998 Andrew Cagney <cagney@b1.cygnus.com>
12775
12776 * libc/sys/d10v/crt0.S (_start): Set PSW{SW} - select SPU.
12777
12778 Thu Feb 12 15:09:20 1998 Ranjith Kumaran <ranjith@cygnus.com>
12779
12780 * libc/sys/go32/longjmp.S: Fix longjmp to not return 0.
12781
12782 Wed Feb 11 17:50:45 1998 Jeff Johnston <jjohnstn@cygnus.com>
12783
12784 * libc/machine/powerpc/setjmp.S (setjmp, longjmp): Alignment code
12785 altered to not use a branch. Also added hint that last
12786 bclr in longjmp will likely result in branch.
12787
12788
12789 Mon Feb 9 03:44:02 1998 Geoffrey Noer <noer@cygnus.com>
12790
12791 * libc/sys/cygwin32/crt0.c: add missing args to main() extern
12792
12793 Fri Feb 6 16:32:32 1998 Nick Clifton <nickc@cygnus.com>
12794
12795 * libc/sys/sysnecv850/crt0.S (_start): Initialise _ctbp even for
12796 v850 builds.
12797
12798 * configure.in: Add -msmall-sld to target_cflags for v850 builds.
12799
12800 Wed Feb 4 16:56:20 1998 Jeff Johnston <jjohnstn@cygnus.com>
12801
12802 * libc/machine/powerpc/setjmp.S (longjmp): Fixed code
12803 that loads FR14 to specify offset of 8 rather than 4
12804 so it loads from offset 96 (where setjmp stored it).
12805
12806 Tue Feb 3 18:08:34 1998 Jeff Johnston <jjohnstn@cygnus.com>
12807
12808 * libc/machine/sh/memcpy.S: (_memcpy): Update to
12809 latest version supplied by customer.
12810 * libc/machine/sh/memset.S (_memset): Ditto.
12811
12812 Mon Feb 2 16:20:39 1998 Nick Clifton <nickc@cygnus.com>
12813
12814 * libc/sys/sysnecv850/Makefile.in (OFILES): Add link.o (for
12815 PR14730).
12816
12817 Mon Feb 2 15:13:26 1998 Geoffrey Noer <noer@cygnus.com>
12818
12819 * libc/include/string.h: remove redefinition of ffs
12820
12821 Wed Jan 28 13:30:14 1998 Geoffrey Noer <noer@cygnus.com>
12822
12823 * libc/include/sys/signal.h: include _ansi.h so _EXFUN is
12824 defined
12825
12826 Wed Jan 28 10:38:34 1998 Jeff Johnston <jjohnstn@cygnus.com>
12827
12828 * libc/machine/tic80/setjmp.S: Adding _setjmp to allow
12829 TI Libraries to link to libc.a
12830
12831 Sat Jan 24 10:15:56 1998 Michael Meissner <meissner@cygnus.com>
12832
12833 * libc/include/sys/fcntl.h (_open,_fcntl): Add prototypes.
12834 * libc/include/sys/stat.h (_{,f}stat): Ditto.
12835 * libc/include/sys/wait.h (_wait): Ditto.
12836 * libc/include/sys/unistd.h (_close,_fork,_getpid): Ditto.
12837 (_link,_lseek,_read,_sbrk,_unlink,_write): Ditto.
12838
12839 Fri Jan 23 11:32:10 1998 Michael Meissner <meissner@cygnus.com>
12840
12841 * libc/machine/d10v/setjmp.S: Change to new ABI. Add simple
12842 minded stabs so function name shows up when running the simulator
12843 with -t.
12844 * libc/sys/d10v/{crt0,trap}.S: Ditto.
12845
12846 Thu Jan 22 15:57:14 1998 Fred Fish <fnf@cygnus.com>
12847
12848 * libc/sys/d10v/trap.S: Change syscalls to use trap 15.
12849 * libc/sys/d10v/crt0.S: Use R6 where we used to use R2.
12850 Use R5 where we used to use R3.
12851
12852 Wed Jan 21 14:22:23 1998 Bill Moyer <billm@cygnus.com>
12853
12854 * libc/stdlib/getopt.c (getopt): replaced __progname
12855 with nargv[0] to improve portability to imbedded systems.
12856
12857 Thu Jan 15 12:32:38 1998 Nick Clifton <nickc@cygnus.com>
12858
12859 * libc/sys/arm/syscalls.c (initialise_angel_handles): Applied
12860 patch supplied by Tont.Thompson@arm.com to fix the creation of the
12861 stdout file.
12862
12863 Wed Jan 14 13:00:19 1998 Ian Lance Taylor <ian@cygnus.com>
12864
12865 * libc/stdio/tmpnam.c (worker): Generate a different file name
12866 each time.
12867
12868 * libc/posix/popen.c (popen): If __CYGWIN32__, and execing /bin/sh
12869 fails, try an execlp for sh.
12870
12871 * host/any (INCLUDES): If target_os is cygwin32, then add a -I
12872 option for the winsup include directory.
12873
12874 Wed Jan 7 17:02:58 1998 Nick Clifton <nickc@cygnus.com>
12875
12876 * libc/sys/arm/syscalls.c: Applied patches for Angel based remote
12877 debugging interface from Tony.Thompson@arm.com.
12878
12879 * libc/sys/arm/crt0.S (_mainCRTStartup): ditto.
12880 * libc/sys/arm/swi.h: ditto.
12881
12882 Tue Jan 6 14:15:10 1998 Geoffrey Noer <noer@cygnus.com>
12883
12884 * libc/sys/cygwin32/sys/dirent.h: add __d_dirhash field to
12885 DIR struct used for readdir hashes.
12886
12887 Thu Jan 1 11:22:22 1998 Jeffrey A Law (law@cygnus.com)
12888
12889 * libc/string/strchr.c: Use "unsigned chars" as necessary.
12890
12891 Wed Dec 31 04:25:30 1997 Jeffrey A Law (law@cygnus.com)
12892
12893 * libc/stdlib/mallocr.c (idx2binblock): Don't lose on 16bit
12894 integer targets.
12895
12896 Sat Dec 13 15:11:06 1997 Ian Lance Taylor <ian@cygnus.com>
12897
12898 * libc/stdlib/mallocr.c (__malloc_copy): New function, compiled if
12899 INTERNAL_NEWLIB and __CYGWIN32__ and DEFINE_MALLOC.
12900 * libc/include/malloc.h: Add extern "C" if __cplusplus.
12901 (__malloc_copy): Declare.
12902
12903 Wed Dec 10 12:15:54 1997 Ian Lance Taylor <ian@cygnus.com>
12904
12905 * libc/stdlib/mallocr.c: If INTERNAL_NEWLIB, include
12906 <sys/config.h>.
12907 (POINTER_UINT): Define.
12908 (DEFAULT_TRIM_THRESHOLD): Mark constants as long.
12909 (MALLOC_ALIGNMENT): Don't define if already defined.
12910 (malloc_extend_top): Cast pointers to POINTER_UINT, not unsigned
12911 long.
12912
12913 Tue Dec 9 19:23:42 1997 Michael Meissner <meissner@cygnus.com>
12914
12915 * libc/string/memset.c (memset): Fiddle with code so that the long
12916 value being stored is not a stack value. Unroll storing longs 4
12917 times.
12918
12919 Tue Dec 9 14:13:18 1997 Jeff Johnston <jjohnstn@cygnus.com>
12920
12921 * Reduce code size for libm modules.
12922 * libm/math/w_sqrt.c (sqrt): Remove call to kernel_standard
12923 and simply move code into sqrt.
12924 * libm/math/wrf_lgamma.c (lgammaf_r): Likewise.
12925 * libm/math/wr_lgamma.c (lgamma_r): Likewise.
12926 * libm/math/wrf_gamma.c (gammaf_r): Likewise.
12927 * libm/math/wr_gamma.c (gamma_r): Likewise.
12928 * libm/math/wf_sinh.c (sinfh): Likewise.
12929 * libm/math/w_sinh.c (sinh): Likewise.
12930 * libm/math/wf_scalb.c (scalbf): Likewise.
12931 * libm/math/w_scalb.c (scalb): Likewise.
12932 * libm/math/wf_remainder.c (remainderf): Likewise.
12933 * libm/math/w_remainder.c (remainder): Likewise.
12934 * libm/math/wf_pow.c (powf): Likewise.
12935 * libm/math/w_pow.c (pow): Likewise.
12936 * libm/math/wf_log10.c (log10f): Likewise.
12937 * libm/math/w_log10.c (log10): Likewise.
12938 * libm/math/wf_log.c (logf): Likewise.
12939 * libm/math/w_log.c (log): Likewise.
12940 * libm/math/w_lgamma.c (lgamma): Likewise.
12941 * libm/math/wf_lgamma.c (lgammaf): Likewise.
12942 * libm/math/wf_jn.c (jnf): Likewise.
12943 * libm/math/w_jn.c (jn): Likewise.
12944 * libm/math/wf_j1.c (j1f): Likewise.
12945 * libm/math/w_j1.c (j1): Likewise.
12946 * libm/math/wf_j0.c (j0f): Likewise.
12947 * libm/math/w_j0.c (j0): Likewise.
12948 * libm/math/wf_hypot.c (hypotf): Likewise.
12949 * libm/math/w_hypot.c (hypot): Likewise.
12950 * libm/math/wf_gamma.c (gammaf): Likewise.
12951 * libm/math/w_gamma.c (gamma): Likewise.
12952 * libm/math/wf_fmod.c (fmodf): Likewise.
12953 * libm/math/w_fmod.c (fmod): Likewise.
12954 * libm/math/wf_exp.c (expf): Likewise.
12955 * libm/math/w_exp.c (exp): Likewise.
12956 * libm/math/wf_cosh.c (coshf): Likewise.
12957 * libm/math/w_cosh.c (cosh): Likewise.
12958 * libm/math/wf_atanh.c (atanhf): Likewise.
12959 * libm/math/w_atanh.c (atanh): Likewise.
12960 * libm/math/wf_atan2.c (atan2f): Likewise.
12961 * libm/math/w_atan2.c (atan2): Likewise.
12962 * libm/math/wf_asin.c (asinf): Likewise.
12963 * libm/math/w_asin.c (asin): Likewise.
12964 * libm/math/wf_acosh.c (acoshf): Likewise.
12965 * libm/math/w_acosh.c (acosh): Likewise.
12966 * libm/math/wf_acos.c (asocf): Likewise.
12967 * libm/math/w_acos.c (acos): Likewise.
12968 * libm/math/wf_sqrt.c (sqrtf): Likewise.
12969 * libm/math/k_standard.c (_k_standard): Don't require SVID behavior
12970 for embedded systems.
12971
12972 Mon Dec 8 12:12:58 1997 Ian Lance Taylor <ian@cygnus.com>
12973
12974 * libc/stdlib/mallocr.c (malloc_extend_top): Add patch from Doug
12975 Lea in case of a foreign sbrk.
12976
12977 Fri Dec 5 23:27:28 1997 Ian Lance Taylor <ian@cygnus.com>
12978
12979 Incorporate Doug Lea's malloc:
12980 * libc/stdlib/mallocr.c: Completely replaced.
12981 * libc/stdlib/malloc.c: Document malloc_usable_size and memalign.
12982 (realloc): Remove.
12983 * libc/stdlib/calloc.c (calloc): Just call _calloc_r.
12984 * libc/stdlib/mstats.c: Document mallinfo, malloc_stats, and
12985 mallopt.
12986 (mallinfo, malloc_stats, mallopt): New functions.
12987 (_mstats_r): Just call _malloc_stats_r.
12988 * libc/stdlib/malign.c: New file.
12989 * libc/stdlib/mlock.c: New file.
12990 * libc/stdlib/msize.c: New file.
12991 * libc/stdlib/mtrim.c: New file.
12992 * libc/stdlib/realloc.c: New file.
12993 * libc/stdlib/valloc.c: New file.
12994 * libc/stdlib/malloc.h: Remove.
12995 * libc/stdlib/callocr.c: Remove.
12996 * libc/stdlib/Makefile.in (OFILES): Add cfreer.o, freer.o,
12997 malign.o, malignr.o, mallinfor.o, malloptr.o, mallstatsr.o,
12998 mlock.o, msize.o, msizer.o, mtrim.o, pvallocr.o, realloc.o,
12999 reallocr.o, valloc.o, vallocr.o.
13000 (CHEWOUT_FILES): Add mlock.def, mstats.def.
13001 (MALLOC_CFLAGS): New variable.
13002 (mallocr.o): New target, build from mallocr.c.
13003 (freer.o, reallocr.o, callocr.o, cfreer.o, malignr.o): Likewise.
13004 (vallocr.o, pvallocr.o, mallinfor.o, mallstatsr.o): Likewise.
13005 (msizer.o, malloptr.o): Likewise.
13006 (malign.o, mlock.o, msize.o, mtrim.o, realloc.o): New targets.
13007 (valloc.o): New target.
13008 * libc/stdlib/stdlib.tex: Include mlock.def and mstats.def.
13009 * libc/include/malloc.h: Declare struct mallinfo, and new
13010 routines.
13011 * libc/include/stdlib.h (cfree): Correct declaration.
13012
13013 Tue Dec 2 10:12:16 1997 Nick Clifton <nickc@cygnus.com>
13014
13015 * libc/include/machine/setjmp.h: Add support for Thumb target.
13016
13017 * libc/include/machine/ieeefp.h: Add support for Thumb target.
13018
13019 * configure.in (links): Add support for Thumb target.
13020
13021 Wed Nov 26 09:56:17 1997 Nick Clifton <nickc@cygnus.com>
13022
13023 * libc/sys/arm/setjmp.S: Updated with version from branch.
13024
13025 Thu Nov 20 01:21:43 1997 Geoffrey Noer <noer@cygnus.com>
13026
13027 * libc/include/stdio.h: add POSIX-required define L_ctermid
13028 for ctermid
13029
13030 Wed Nov 19 16:11:40 1997 Michael Meissner <meissner@cygnus.com>
13031
13032 * configure.in (d30v-*-*): Define ABORT_MESSAGE, SMALL_MEMORY, in
13033 addition to MISSING_SYSCALL_NAMES.
13034
13035 Mon Nov 17 20:05:05 1997 J"orn Rennecke <amylaar@cygnus.co.uk>
13036
13037 * libc/include/sys/config.h: (UINT_MAX, for D10V): Make unsigned.
13038
13039 Mon Nov 10 22:26:55 1997 Geoffrey Noer <noer@cygnus.com>
13040
13041 * libc/include/string.h: change strsignal proto to return
13042 a char *. This eliminates compile problems in gdb resulting
13043 from gdb's definition of strsignal in defs.h.
13044
13045 Mon Nov 10 17:11:08 1997 Geoffrey Noer <noer@cygnus.com>
13046
13047 * libc/sys/cygwin32/sys/utime.h: new (moved here from
13048 winsup/include) so as not to conflict with the one in
13049 libc/include.
13050 * libc/include/string.h: add protos for strsignal, strtosigno
13051
13052 Mon Nov 10 13:49:54 1997 Michael Meissner <meissner@cygnus.com>
13053
13054 * libc/include/sys/config.h: Define __IEEE_BIG_ENDIAN if d30v.
13055
13056 * configure.in (d30v-*-*): Add configuration.
13057
13058 Thu Oct 30 14:01:23 1997 Nick Clifton <nickc@cygnus.com>
13059
13060 * configure.in (links): Add -DARM_RD[P|I]_MONITOR to target_cflags
13061 to select which kind of debug monitor is in use for an ARM target.
13062
13063 * libc/sys/arm/crt0.S: New version: Supports Thumb startups and
13064 Angel and Demon debug monitors. Part of this code was supplied by
13065 Tony Thompson at ARM: athompso@arm.com.
13066
13067 Fri Oct 24 18:57:05 1997 Jeffrey A Law (law@cygnus.com)
13068
13069 * strncat.c (strncat): Don't call strncpy; strncay has the wrong
13070 semantics when the count is greater than the length of the second
13071 source string.
13072
13073 Thu Oct 23 01:37:41 1997 Geoffrey Noer <noer@cygnus.com>
13074
13075 * libc/include/sys/signal.h: reorder CYGWIN32 signal numbers
13076 * libc/include/sys/unistd.h: add protos for usleep, truncate,
13077 truncate and ftruncate take off_t, not size_t
13078
13079 Tue Oct 21 18:42:00 1997 Jim Wilson <wilson@cygnus.com>
13080
13081 * libc/string/strcat.c (strcat): Add missing comment end.
13082 * libc/string/strncat.c (strncat): Likewise.
13083
13084 Tue Oct 21 17:23:34 1997 Nick Clifton <nickc@cygnus.com>
13085
13086 * configure.in (links): Define PREFER_SIZE_OVER_SPEED for v850
13087 targets.
13088 * libc/string/{memchr.c, memcmp.c, memcpy.c}: Add space
13089 optimised version which is selected if PREFER_SIZE_OVER_SPEED is
13090 defined.
13091 * libc/string/{memset.c, strcat.c, strchr.c}: Likewise.
13092 * libc/string/{strcmp.c, strcpy.c, strlen.c}: Likewise.
13093 * libc/string/{strncat.c, strncmp.c, strncpy.c}: Likewise.
13094
13095 Mon Oct 13 15:12:35 1997 Ian Lance Taylor <ian@cygnus.com>
13096
13097 * libc/include/sys/param.h (BIG_ENDIAN): Define if __i386__.
13098 (LITTLE_ENDIAN, BYTE_ORDER): Likewise.
13099
13100 Thu Oct 9 13:54:44 1997 Doug Evans <dje@canuck.cygnus.com>
13101
13102 * libc/machine/i386/setjmp.S: New file.
13103 * libc/machine/i386/Makefile.in: Delete COPYOFILES.
13104 (OFILES): Add setjmp.o.
13105 (setjmp.o): Add rule for.
13106 * configure.in: Don't set machine_dir for *-*-{go32,sco*,cygwin32}.
13107
13108 Tue Oct 7 14:01:29 1997 Bill Moyer (billm@cygnus.com)
13109 Jeffrey A Law (law@cygnus.com)
13110
13111 * libc/string/{memchr.c, memcmp.c, memcpy.c}: Reimplement to run faster.
13112 * libc/string/{memset.c, strcat.c, strchr.c}: Likewise.
13113 * libc/string/{strcmp.c, strcpy.c, strlen.c}: Likewise.
13114 * libc/string/{strncat.c, strncmp.c, strncpy.c}: Likewise.
13115
13116 Mon Oct 6 14:07:59 1997 Nick Clifton <nickc@cygnus.com>
13117
13118 * libc/sys/sysnecv850/Makefile.in (crt0.o trap.o): Explicit
13119 rules.
13120
13121 * libc/include/sys/config.h: Use __v850 to select v850
13122 endianness.
13123
13124 * libc/include/machine/setjmp.h: Use __v850 to select v850 jump
13125 buffer size.
13126
13127 * libc/include/machine/ieeefp.h: Use __v850 to select v850
13128 endianness.
13129
13130 Thu Sep 25 14:11:37 1997 Geoffrey Noer <noer@cygnus.com>
13131
13132 * libc/stdlib/setenv.c: change unsetenv definition to match
13133 style of setenv (with _DEFUN). The string should be a const.
13134 * libc/include/stdlib.h: unsetenv proto should return void.
13135
13136 Tue Sep 23 18:17:20 1997 Geoffrey Noer <noer@cygnus.com>
13137
13138 * libc/include/stdlib.h: define unsetenv proto for __CYGWIN32__
13139
13140 Thu Sep 18 12:50:15 1997 Angela Marie Thomas (angela@cygnus.com)
13141
13142 * libc/stdio/glue.h: remove.
13143 * libc/stdio/findfp.c, libc/stdio/fwalk.c: remove #include "glue.h"
13144 * libc/stdio/Makefile.in: remove glue.h dependencies
13145
13146 Wed Sep 17 17:42:27 1997 Nick Clifton <nickc@cygnus.com>
13147
13148 * libc/sys/sysnecv850/crt0.S: Created V850e version.
13149
13150 Tue Sep 9 10:40:57 1997 Doug Evans <dje@canuck.cygnus.com>
13151
13152 * configure.in (target_cpu): Add `arc'.
13153
13154 Tue Sep 9 10:40:42 1997 Joel Sherrill <joel@OARcorp.com>
13155
13156 * newlib/configure.in (*-*-rtems*): Add -DSIGNAL_PROVIDED and
13157 -DREENTRANT_SYSCALLS_PROVIDED to the target_cflags.
13158 * newlib/libc/include/sys/errno.h: Add ENOTSUP.
13159 * newlib/libc/reent/reent.c: Add _wrapup_reent.
13160 * newlib/libc/sys/rtems/sys/types.h: Avoid redefinitions for go32.
13161
13162 Sun Sep 7 16:41:41 1997 Gavin Koch <gavin@cygnus.com>
13163
13164 * libc/machine/mips/setjmp.S: Handle mips16 builds.
13165
13166 Thu Aug 21 20:05:38 1997 Ian Lance Taylor <ian@cygnus.com>
13167
13168 * libc/include/stdio.h (siprintf): Declare.
13169
13170 Mon Aug 18 11:19:13 1997 Nick Clifton <nickc@cygnus.com>
13171
13172 * libc/sys/sysnecv850/Makefile.in (.c.o): Add rule that includes
13173 TARGET_CFLAGS and NEWLIB_FLAGS.
13174
13175 Mon Aug 18 11:15:43 1997 Nick Clifton <nickc@cygnus.com>
13176
13177 * configure.in (links): Add support for v850ea target.
13178
13179 Mon Aug 18 11:15:43 1997 Nick Clifton <nickc@cygnus.com>
13180
13181 * configure.in (links): Add support for v850e target.
13182
13183 Wed Aug 13 19:16:54 1997 Nick Clifton <nickc@cygnus.com>
13184
13185 * libc/sys/sysnecv850/crt0.S: Remove initial setting of r0 to 0.
13186
13187 Mon Aug 11 15:49:54 1997 Doug Evans <dje@canuck.cygnus.com>
13188
13189 * configure.in (arc-*-*): Add support for.
13190 * libc/include/machine/ieeefp.h (__arc__): Add support for the ARC.
13191
13192 Fri Jul 25 17:37:41 1997 J"orn Rennecke <amylaar@cygnus.co.uk>
13193
13194 * libc/sys/sh/crt0.S (start): Add fpscr initialization for SH4.
13195
13196 Thu Jul 24 18:32:17 1997 Geoffrey Noer <noer@cygnus.com>
13197
13198 * libc/stdlib/bsearch.c (bsearch): remove last unneeded
13199 comparison which accesses invalid memory when the key is
13200 larger than the last member of the array.
13201 * libc/include/machine/setjmp.h: add sigsetjmp, siglongjmp
13202 for CYGWIN32
13203 * libc/include/sys/unistd.h: add _POSIX defines for CYGWIN32
13204
13205 Tue Jul 22 16:03:06 1997 Ian Lance Taylor <ian@cygnus.com>
13206
13207 * libc/include/stdlib.h (realpath): Declare if __CYGWIN32__ and
13208 not _STRICT_ANSI.
13209
13210 Thu Jul 10 15:11:52 1997 Doug Evans <dje@canuck.cygnus.com>
13211
13212 * libm/math/k_standard.c (__kernel_standard): Call fflush(stdout)
13213 ifndef _USE_WRITE, instead of ifdef _USE_WRITE.
13214
13215 Thu Jul 10 16:00:09 1997 Mike Meissner <meissner@cygnus.com>
13216
13217 * libc/machine/tic80/setjmp.S (setjmp,longjmp): Use ld.d and st.d
13218 to load/store memory.
13219
13220 Mon Jul 7 17:38:17 1997 Ian Lance Taylor <ian@cygnus.com>
13221
13222 * libc/include/sys/fcntl.h: Define _O_* symbols with leading
13223 underscores if _WIN32.
13224
13225 Wed Jul 2 10:07:20 1997 Doug Evans <dje@canuck.cygnus.com>
13226
13227 * libm/math/k_standard.c (__kernel_standard): Delete reentrancy
13228 support ifdef _USE_WRITE missed in last change.
13229 From Anders Blomdell <anders.blomdell@control.lth.se>.
13230
13231 Wed Jun 25 10:18:49 1997 Doug Evans <dje@canuck.cygnus.com>
13232
13233 * libc/stdio/tmpnam.c (worker): Handle _open_r being stubbed out.
13234 (_tmpnam_r, _tempnam_r): Update.
13235
13236 Wed Jun 25 00:16:55 1997 Mark Alexander <marka@cygnus.com>
13237
13238 * libc/machine/sparc/setjmp.S: New file.
13239 * libc/machine/sparc/Makefile.in: Add setjmp.
13240 * libc/include/machine/setjmp.h: Increase jmpbuf size for sparc.
13241
13242 Tue Jun 24 23:27:38 1997 Mark Alexander <marka@cygnus.com>
13243
13244 * libc/include/machine/setjmp.h: Use __TIC80__ instead of __tic80__.
13245
13246 Tue Jun 24 14:53:40 1997 Doug Evans <dje@canuck.cygnus.com>
13247
13248 From Joel Sherrill <joel@oarcorp.com>.
13249 * libc/stdlib/getenv.c (_findenv): Avoid dereferencing null `environ'.
13250
13251 Add rtems support. From Joel Sherrill <joel@oarcorp.com>.
13252 * configure.in: Recognize *-*-rtems*.
13253 * libc/sys/rtems/{Makefile.in,crt0.c,dummysys.c}: New files.
13254 * libc/sys/rtems/sys/{features.h,sched.h,siginfo.h,signal.h,
13255 time.h,times.h,types.h}: New files.
13256 * libc/sys/rtems/include/{limits.h,signal.h,time.h}. New files.
13257
13258 Fri Jun 20 11:13:16 1997 Geoffrey Noer <noer@cygnus.com>
13259
13260 patch from sos@prospect.com.ru (Sergey Okhapkin):
13261 * include/sys/wait.h: correct operator precidence bug
13262 in WIFSIGNALED
13263
13264 Wed Jun 18 22:08:27 1997 Geoffrey Noer <noer@cygnus.com>
13265
13266 * libc/include/stdlib.h: remove unsetenv proto since it conflicts
13267 with newlib's unsetenv function
13268 * libc/sys/cygwin32/sys: new directory for includes
13269 * libc/sys/cygwin32/sys/dirent.h: move cygwin32's dirent.h
13270 here from winsup/include/sys
13271
13272 Mon Jun 16 21:02:22 1997 Geoffrey Noer <noer@cygnus.com>
13273
13274 * libc/include/sys/unistd.h: _exit should only be
13275 labelled noreturn when not __CYGWIN32__
13276 * libc/include/stdlib.h: for __CYGWIN32__, add proto for unsetenv
13277 * libc/include/sys/signal.h: add SIGIO to _WIN32 list and
13278 increment NSIG
13279
13280 Thu Jun 12 18:52:41 1997 Ian Lance Taylor <ian@cygnus.com>
13281
13282 * libc/include/sys/time.h: Only define timeval and timezone if
13283 _GNU_H_WINDOWS32_SOCKETS is not defined.
13284 * libc/include/sys/stat.h: If _WIN32, define _S_IFMT, etc.
13285
13286 Wed Jun 11 09:46:26 1997 Jeffrey A Law (law@cygnus.com)
13287
13288 * libc/machine/mn10200/setjmp.S: Implement setjmp/longjmp
13289 * libc/machine/mn10300/setjmp.S: Likewise.
13290
13291 * libc/sys/sysmec/crt0.S: Use "call" instead of "calls" for
13292 the mn10300 (more relaxing opportunities).
13293
13294 Tue Jun 10 17:24:45 1997 Mike Meissner <meissner@cygnus.com>
13295
13296 * configure.in (powerpc*-*-{eabi,elf,linux,rtems,sysv,solaris}):
13297 Build libraries with -mstrict-align.
13298
13299 Fri Jun 6 14:07:59 1997 Ian Lance Taylor <ian@cygnus.com>
13300
13301 * libc/string/strlwr.c: New file.
13302 * libc/string/strupr.c: New file.
13303 * libc/include/string.h: Declare strlwr and strupr.
13304 * libc/string/Makefile.in (OFILES): Add strlwr.o and strupr.o.
13305 (CHEWOUT_FILES): Add strlwr.def and strupr.def.
13306 (strlwr.o, strupr.o): New targets.
13307 * libc/string/strings.tex: Include strlwr and strupr docs.
13308
13309 * libc/include/sys/types.h: Don't define u_char, et. al., if
13310 _GNU_H_WINDOWS32_SOCKETS is defined. Likewise for fd_set,
13311 et. al. Make FD_SETSIZE default 64 rather than 60. Define
13312 _types_fd_set rather than fd_set, and define fd_set as a macro.
13313
13314 * libc/include/malloc.h: New file.
13315
13316 * libc/include/string.h: Define strcmpi, stricmp, strncmpi, and
13317 strnicmp if they are not already defined.
13318
13319 * libc/include/time.h: If __CYGWIN32__, declare tzset and define
13320 _timezone, _daylight, and _tzname.
13321
13322 Wed Jun 4 12:51:16 1997 Doug Evans <dje@canuck.cygnus.com>
13323
13324 * configure.in: Sort all configuration tables.
13325
13326 From Joel Sherrill <joel@oarcorp.com>
13327 * Makefile.in (stmp-targ-include): Copy $(sys_dir)/include/*.h.
13328
13329 Tue Jun 3 14:47:46 1997 Ian Lance Taylor <ian@cygnus.com>
13330
13331 * libc/include/sys/signal.h: Don't include <sys/types.h>. Just
13332 use int when declaring kill.
13333
13334 * libc/include/sys/timeb.h: New file.
13335
13336 Mon Jun 2 12:06:58 1997 Geoffrey Noer <noer@cirdan.cygnus.com>
13337
13338 * libc/include/sys/time.h: add itimer support for Cygwin32
13339
13340 Mon May 19 11:56:46 1997 Mike Meissner <meissner@cygnus.com>
13341
13342 * libc/stdlib/abort.c (abort): If ABORT_MESSAGE is defined, write
13343 out a message that abort was called to stderr.
13344
13345 Fri May 16 15:02:59 1997 Bob Manson <manson@charmed.cygnus.com>
13346
13347 * libc/sys/sysmec/fstat.c (_fstat): Set st_blksize to 4096
13348 so that libio doesn't freak.
13349
13350 * libc/sys/sysmec/sbrk.c (_sbrk): The argument is a size_t, not
13351 int.
13352
13353 * libc/stdlib/mallocr.c (_morecore_r): Use size_t for
13354 memory sizes, not int.
13355
13356 Wed May 14 21:16:58 1997 Bob Manson <manson@charmed.cygnus.com>
13357
13358 * libm/math/ef_hypot.c: Use long constants where
13359 appropriate.
13360 * libm/math/ef_sqrt.c: Ditto.
13361
13362 * libc/sys/sysmec/times.c(_times): Change to times.
13363
13364 * libc/sys/sysmec/read.c(_read): The third argument is
13365 size_t.
13366 * libc/sys/sysmec/write.c (_write): Ditto.
13367
13368 * libc/sys/sysmec/lseek.c: Include unistd.h for off_t.
13369 (_lseek): It's off_t for the second argument.
13370
13371 Wed May 14 15:23:36 1997 Mike Meissner <meissner@cygnus.com>
13372
13373 * libc/include/sys/config.h (__IEEE_LITTLE_ENDIAN): Define here,
13374 as well as machine/ieeefp.h.
13375
13376 Thu May 8 15:47:25 1997 Geoffrey Noer <noer@cygnus.com>
13377
13378 * libc/include/sys/signal.h: add signal protos for winsup
13379 functions (when __CYGWIN32__), include types.h
13380 * libc/include/sys/types.h: Change __go32_types__ internal
13381 define to __MS_types__ since it's used for more than just
13382 GO32 configs. Define this if GO32, __MSDOS__, or _WIN32 are
13383 defined.
13384 * libc/include/sys/unistd.h: add ftruncate proto for
13385 winsup functions (when __CYGWIN32__)
13386
13387 Fri Apr 25 10:10:16 1997 Doug Evans <dje@canuck.cygnus.com>
13388
13389 * libc/sys/h8300hms/sbrk.c (stack_ptr): Add definition.
13390
13391 Thu Apr 24 15:46:51 1997 Mike Stump <mrs@cygnus.com>
13392
13393 * libc/include/machine/setjmp.h: Add tic80 support.
13394 * libc/machine/tic80/setjmp.S: Likewise.
13395
13396 Tue Apr 22 16:54:40 1997 Geoffrey Noer <noer@pizza.cygnus.com>
13397
13398 * libc/sys/cygwin32/crt0.c: Add reference to main() so we can
13399 link programs from libraries only (such as in the X11
13400 distribution)
13401
13402 Mon Apr 21 15:02:12 1997 Fred Fish <fnf@cygnus.com>
13403
13404 * libc/sys/arm/syscalls.c (signal): Remove stub, signal()
13405 supplied elsewhere in newlib.
13406
13407 Mon Apr 14 16:25:55 1997 Ian Lance Taylor <ian@cygnus.com>
13408
13409 * Makefile.in (INSTALL): Change install.sh to install-sh.
13410
13411 Fri Apr 11 17:04:02 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
13412
13413 * README: update WWW address for on-line documentation.
13414
13415 Wed Apr 9 00:38:13 1997 Geoffrey Noer <noer@cygnus.com>
13416
13417 * libc/include/sys/signal.h: for _WIN32, define SIGCONT and
13418 increment NSIG
13419
13420 Mon Apr 7 23:54:00 1997 Jeffrey A Law (law@cygnus.com)
13421
13422 * libc/sys/sysmec/crt0.S: Update for new calling conventions on the
13423 mn10300.
13424 * libc/sys/sysmec/trap.S: Don't compare a register to itself.
13425
13426 Tue Mar 25 08:47:43 1997 Jeffrey A Law (law@cygnus.com)
13427
13428 * libc/sys/arm/syscalls.c: Fix/add stack/heap collision detection.
13429 * libc/sys/d10v/syscalls.c: Likewise.
13430 * libc/sys/h8300hms/sbrk.c: Likewise.
13431 * libc/sys/h8500hms/syscalls.c: Likewise.
13432 * libc/sys/m88kbug/syscalls.c: Likewise.
13433 * libc/sys/sh/syscalls.c: Likewise.
13434 * libc/sys/sysmec/sbrk.c: Likewise.
13435 * libc/sys/sysnecv850/sbrk.c: Likewise.
13436 * libc/sys/w65/syscalls.c: Likewise.
13437 * libc/sys.tex: Update sbrk sample code to include stack/heap collision.
13438
13439 Tue Mar 18 14:14:34 1997 Jeffrey A Law (law@cygnus.com)
13440
13441 * libc/sys/sysmec/trap.S: Use "syscall" to trigger an
13442 emulated syscall instead of "trap".
13443
13444 Fri Mar 14 11:26:13 1997 Michael Meissner <meissner@cygnus.com>
13445
13446 * libc/sys/d10v/trap.S (__trap0): Use trap 15 for system calls,
13447 not trap 0.
13448
13449 Sun Mar 9 23:27:04 1997 Doug Evans <dje@seba.cygnus.com>
13450
13451 * configure.in (m32r-*-*): Add -msdata=sdata to target_cflags.
13452
13453 Sat Mar 8 09:05:01 1997 Fred Fish <fnf@cygnus.com>
13454
13455 * libc/machine/arm/Makefile.in: Fix comment, is for "arm"
13456 not "sh".
13457 * libc/machine/m32r/Makefile.in: Fix comment, is for "m32r"
13458 not "d10v".
13459 * libc/sys/tic80/crt0.c: New file for TIc80.
13460 * libc/sys/tic80/Makefile.in: New file for TIc80.
13461 * libc/machine/tic80/Makefile.in: New file for TIc80.
13462
13463 Wed Mar 5 11:32:12 1997 J.T. Conklin <jtc@cygnus.com>
13464
13465 * libc/machine/sh/memcpy.S: New file.
13466 * libc/machine/sh/memset.S: New file.
13467 * libc/machine/sh/Makefile.in (OFILES): Add memcpy.o and memset.o
13468
13469 Thu Feb 27 16:27:55 1997 Fred Fish <fnf@cygnus.com>
13470
13471 * libc/include/machine/ieeefp.h (_IEEE_LITTLE_ENDIAN): Define
13472 for TIc80.
13473
13474 Wed Feb 26 13:43:39 1997 Jeffrey A Law (law@cygnus.com)
13475
13476 * libc/sys/sysmec/crt0.S: Handle new calling conventions for
13477 the mn10200.
13478
13479 Wed Feb 26 07:11:03 1997 Michael Meissner <meissner@cygnus.com>
13480
13481 * libc/machine/powerpc/setjmp.S (longjmp): Correct return status
13482 (patch from andrew@pogo.WV.TEK.COM).
13483
13484 Fri Feb 14 11:49:28 1997 Doug Evans <dje@canuck.cygnus.com>
13485
13486 * libc/machine/m32r/setjmp.S (setjmp): Save r12.
13487 (longjmp): Restore r12. Fix code that handles returning 1 if passed 0.
13488
13489 Mon Feb 10 10:02:34 1997 Fred Fish <fnf@cygnus.com>
13490
13491 * configure.in: Add cases for "tic80" to set machine_dir,
13492 sys_dir, and syscall_dir.
13493
13494 Sun Feb 2 17:57:15 1997 Geoffrey Noer <noer@cygnus.com>
13495
13496 * libc/sys/cygwin32/crt0.c: initialize floating pt registers
13497
13498 Wed Jan 29 15:57:38 1997 Geoffrey Noer <noer@cygnus.com>
13499
13500 * libc/include/math.h: avoid conflicts with ANSI C++ <exception>
13501
13502 Mon Jan 27 12:50:01 1997 Doug Evans <dje@seba.cygnus.com>
13503
13504 * libc/machine/m32r/setjmp.S: Use proper comment delimiter.
13505 Use proper constant prefix.
13506
13507 Fri Jan 24 10:59:04 1997 Jeffrey A Law (law@cygnus.com)
13508
13509 * libc/sys/sysmec/*.c: Don't cast args to syscall to integers,
13510 that loses on the mn10200 where ints and pointers are different
13511 sizes.
13512
13513 Tue Jan 14 13:29:55 PST 1997 Jeremy Allison <jra@cygnus.com>
13514
13515 * configure.in: Added -DSIGNAL_PROVIDED to cygwin32
13516 target as signal is provided in winsup.
13517
13518 Tue Jan 14 11:10:13 1997 Jeremy Allison <jra@cygnus.com>
13519
13520 * libc/include/sys/process.h: Corrected const definitions
13521 in spawn functions. Added cwait.
13522
13523 Thu Jan 2 12:22:41 1997 Jeffrey A Law (law@cygnus.com)
13524
13525 * libc/include/machine/ieeefp.h: mn10200 uses 16bit ints and 32bit
13526 doubles.
13527 * libc/include/sys/config.h: Similarly.
13528
13529 Tue Dec 31 18:36:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13530
13531 * configure.in (sparc-sun-sunos*): Add -DSIGNAL_PROVIDED to the
13532 target_cflags.
13533 (i[3456]86-*-sco*): Ditto.
13534
13535 * libc/signal/Makefile.in (OFILES): Add signal.o.
13536 (CFILES): Add signal.c.
13537
13538 * libc/signal/raise.c (_raise_r): Only compile code if
13539 SIGNAL_PROVIDED is defined.
13540
13541 * libc/signal/signal.c: Redo whole file so that it works with
13542 current newlib. Use _kill_r if no signal handler provided.
13543
13544 * libc/sys/{go32,sparc64,sysmec}/Makefile.in: Delete raise and
13545 signal stubs.
13546 * libc/sys/sysvnecv70/Makefile.in: Ditto.
13547 * libc/sys/sysnecv850/Makefile.in: Ditto.
13548
13549 * libc/sys/{go32,sparc64}/signal.c: Delete, stub no longer used.
13550 * libc/sys/sysmec/{raise,signal}.c: Ditto.
13551 * libc/sys/sysvnecv70/signal.s: Ditto.
13552 * libc/sys/sysnecv850/raise.c: Ditto.
13553
13554 * libc/sys/sysnecv850/kill.c (_kill): Encode signal # so that
13555 simulator and debugger can tell the difference between a signal
13556 being raised and an exit system call.
13557
13558 * NEWS: Document software signals being provided.
13559
13560 Mon Dec 23 11:54:19 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13561
13562 * libc/reent/impure.c (_REENT_ATTR): Delete in favor of
13563 __ATTRIBUTE_IMPURE_PTR__. Move PowerPC definition to
13564 include/sys/config.h.
13565 (impure_data): Use __ATTRIBUTE_IMPURE_DATA__ for attributes.
13566 Change from 'inpure_data'.
13567 (_impure_ptr): Use __ATTRIBUTE_IMPURE_PTR__ for attributes. Use
13568 &impure_data, not &inpure_data.
13569
13570 * libc/include/sys/config.h (__ATTRIBUTE_IMPURE_PTR__): If PowerPC
13571 and and System V ABI, define so that _impure_ptr lives in the
13572 .sdata section.
13573
13574 Sun Dec 22 23:33:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13575
13576 * libc/include/sys/reent.h (__ATTRIBUTE_IMPURE_PTR__): Define as
13577 nothing if not defined.
13578 (_impure_ptr): Use __ATTRIBUTRE_IMPURE_PTR__, so a machine can set
13579 its attributes.
13580
13581 * libc/include/sys/config.h (__ATTRIBUTE_IMPURE_PTR__):
13582
13583 Wed Dec 18 10:12:04 1996 Jeffrey A Law (law@cygnus.com)
13584
13585 * libc/sys/sysmec/crt0.S: Fix mn10200 stuff.
13586 * libc/sys/sysmec/trap.s: Handle mn10200 too.
13587 * libc/machine/mn10200/setjmp.S: Fix mn10200 stuff.
13588
13589 Mon Dec 16 10:05:36 1996 Jeffrey A Law (law@cygnus.com)
13590
13591 * libc/sys/sysmec/crt0.S: Handle mn10200 too.
13592
13593 Fri Dec 13 11:05:20 1996 Jeremy Allison <jra@cygnus.com>
13594
13595 * libc/include/sys/errno.h: Added net errno's.
13596
13597 Wed Dec 11 16:24:25 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13598
13599 * libc/misc/ffs.c: New file to support ffs function for GCC test
13600 gcc.c-torture/execute/960909-1.c.
13601
13602 * libc/misc/Makefile.in ({O,CHEWOUT_}FILES): Add ffs.
13603
13604 Sat Dec 7 10:12:37 1996 Jeffrey A Law (law@cygnus.com)
13605
13606 * libc/sys/sysmec/crt0.S: Handle underscore prefix.
13607 * libc/sys/sysmec/trap.S: Likewise.
13608
13609 Fri Dec 6 15:08:49 1996 Jim Wilson <wilson@cygnus.com>
13610
13611 * configure.in (mips*vr4300*-*-*): Delete use of sys/vr4300.
13612 * libc/sys/vr4300/{Makefile.in,crt0.S,syscalls.c}: Delete.
13613
13614 Wed Dec 4 16:25:27 1996 Jeffrey A Law (law@cygnus.com)
13615
13616 * libc/sys/sysmec/signal.c: Dummy file.
13617 * libc/sys/sysmec/Makefile.in: Build it.
13618
13619 Wed Nov 27 13:10:18 1996 Ian Lance Taylor <ian@cygnus.com>
13620
13621 * libc/machine/mips/machine/regdef.h: Define pc as $pc for
13622 mips16.
13623
13624 Mon Nov 25 09:58:28 1996 Jeffrey A Law (law@cygnus.com)
13625
13626 * libc/sys/sysmec/{crt0.S,trap0.S}: Actually try to implement
13627 c-startup and simulator traps.
13628
13629
13630 * libc/sys/sysmec/crt0.S: Remove bogus '_' symbol prefixing
13631 * libc/sys/sysmec/trap0.S: Likewise.
13632
13633 Sat Nov 23 09:01:03 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13634
13635 * libc/stdlib/mallocr.c (ROUND_TO): If SMALL_MEMORY, set to 0x7 to
13636 round to double word alignment.
13637 (_morecore_r): Combine rounding up pointers to both ROUND_TO and 8
13638 byte alignment.
13639
13640 * libc/include/sys/config.h (__IEEE_BIG_ENDIAN): Define if d10v.
13641
13642 * libc/sys/d10v/syscalls.c (_sbrk): Add better checks for running
13643 out of memory.
13644
13645 Mon Nov 18 13:08:26 1996 Jeffrey A Law (law@cygnus.com)
13646
13647 * configure.in: Handle mn10200 and mn10300.
13648 * libc/include/machine/{ieeefp.h,setjmp.h}: Likewise.
13649 * libc/include/sys/config.h: Likewise.
13650 * libc/sys/sysmec: New directory for mec stuff.
13651 * libc/machine/mn10300: New directory for mn10300 stuff.
13652 * libc/machine/mn10200: Similarly for mn10200 stuff.
13653
13654 Fri Nov 15 16:41:41 1996 Doug Evans <dje@canuck.cygnus.com>
13655
13656 * libc/sys/arm/crt0.S: Use .text, not .section .text.
13657 * libc/sys/arm/syscalls.c: Rewrite to set errno properly.
13658
13659 * libc/include/sys/types.h (_ST_INT32): New macro, local to file.
13660 (nlink_t): Change type from unsigned int to unsigned short.
13661 (mode_t): Ensure size is 32 bits even if int is 16.
13662 * libc/include/sys/stat.h (st_nlink): Change type to nlink_t.
13663 (st_spare[123]): Change type from int to long.
13664
13665 Fri Nov 15 11:41:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13666
13667 * libc/sys/d10v/syscalls.c (_sbrk): Align initial heap_end to 8
13668 byte boundary.
13669
13670 * configure.in (d10v*): Define SMALL_MEMORY.
13671
13672 Mon Nov 11 10:30:44 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13673
13674 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Add
13675 -mrelocatable-lib and -mno-eabi flags.
13676
13677 Mon Nov 11 09:01:39 1996 Jeffrey A Law (law@cygnus.com)
13678
13679 * libc/machine/h8300/memcpy.S: Fix comments to reflect reality.
13680 Fix handling of mis-aligned source operand when both the
13681 destination & length are properly aligned.
13682
13683 Wed Oct 30 09:41:11 1996 Jeffrey A Law (law@cygnus.com)
13684
13685 * libc/sys/sysnecv850/Makefile.in (OFILES): Add
13686 times.o, time.o and gettime.o
13687 * libc/sys/sysnecv850/{time.c, times.c, gettime.c}: New files.
13688 * libc/sys/sysnecv850/sys/syscall.h: Add SYS_times and
13689 SYS_gettimeofday.
13690
13691 Tue Oct 29 13:40:09 1996 Jeffrey A Law (law@cygnus.com)
13692
13693 * libc/sys/sysnecv850/Makefile.in (OFILES): Add access.o
13694 * libc/sys/sysnecv850/access.c: New file.
13695
13696 Mon Oct 21 19:47:02 1996 Ian Lance Taylor <ian@cygnus.com>
13697
13698 * libc/sys/vr4300/Makefile.in (clean): Remove $(OFILES).
13699
13700 * libc/stdlib/mprec.h (word0, word1): Use __uint32_t, not unsigned
13701 long.
13702
13703 Mon Oct 21 14:43:07 1996 Jeffrey A Law (law@cygnus.com)
13704
13705 * libc/sys/sysnecv850/crt0.S: Initialize ep and gp registers.
13706
13707 Thu Oct 17 11:47:16 1996 Doug Evans <dje@seba.cygnus.com>
13708
13709 * libc/include/machine/{ieeefp.h,setjmp.h}: Add m32r support.
13710 * libc/include/sys/config.h: Add m32r support.
13711
13712 Wed Oct 16 23:08:05 1996 Jeffrey A Law (law@cygnus.com)
13713
13714 * libc/sys/sysnecv850/v850.ld: Remove. It doesn't belong
13715 here.
13716
13717 Wed Oct 16 21:18:07 1996 Mark Alexander <marka@cygnus.com>
13718
13719 * libc/include/machine/setjmp.h: Add D10v support.
13720
13721 Tue Oct 15 22:28:26 1996 Jeffrey A Law (law@cygnus.com)
13722
13723 * configure.in: Configure the "libc/syscalls" directory for
13724 the v850.
13725
13726 * libc/sys/sysnecv850/{close.c, execve.c, fork.c}: Add missing '_'.
13727 * libc/sys/sysnecv850/{fstat.c, getpid.c, kill.c}: Likewise.
13728 * libc/sys/sysnecv850/{lseek.c, open.c, read.c}: Likewise.
13729 * libc/sys/sysnecv850/{sbrk.c, stat.c, unlink.c}: Likewise.
13730 * libc/sys/sysnecv850/{wait.c, write.c}: Likewise.
13731
13732 Tue Oct 15 16:24:39 1996 Stu Grossman (grossman@critters.cygnus.com)
13733
13734 * libc/sys/sysnecv850/crt0.S (start): Allocate spill space on
13735 stack for args for main and other routines. Zero out args for
13736 main.
13737
13738 * libc/sys/sysnecv850/v850.ld: New. Linker script to layout memory
13739 correctly.
13740
13741 Tue Oct 15 11:51:42 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13742
13743 * libc/stdio/findfp.c (std): Remove extraneous ';' after
13744 function.
13745
13746 * libc/sys/d10v/sys/syscall.h (SYS_kill): Add.
13747
13748 * libc/sys/d10v/{syscalls.c,trap.S} (_kill,_getpid): Make these
13749 real system calls now.
13750
13751 * libc/stdio/setvbuf (setvbuf): Cast pointers to _POINTER_INT
13752 before casting them to int.
13753 * libc/stdio/tmpnam.c (_tempnam_r): Ditto.
13754
13755 * libc/stdlib/mallocr.c (_morecore_r): Use _POINTER_INT when
13756 aligning pointer.
13757 * libc/string/memset.c (memset): Ditto.
13758
13759 * libc/stdio/vfscanf.c (__svfscanf): When converting to pointer,
13760 first convert ints to _POINTER_INT to eliminate GCC warning.
13761
13762 * libc/stdio/vfprintf.c (_vfprintf_r): Use _POINTER_INT when
13763 processing %p.
13764
13765 * libm/math/ef_scalb.c (__ieee754_scalbf): Cut down range to 32000
13766 from 65000 if ints are only 16 bits.
13767
13768 * libm/math/sf_scalbn.c (scalbnf): Cut down overflow test to 30000
13769 from 50000 if ints are only 16 bits.
13770
13771 * libc/include/sys/config.h (_POINTER_INT): New macro, to give an
13772 int type that is the same size as a pointer.
13773
13774 * libc/misc/dprintf.c (__dprintf): Use _POINTER_INT when
13775 processing %p.
13776 (get_number): Explicitly cast number to long before shifting by 16
13777 or 24, in case ints are short.
13778
13779 * libc/include/sys/config.h (_POINTER_INT): Define as short.
13780
13781 Wed Oct 9 16:54:32 1996 Jeremy Allison <jra@cygnus.com>
13782
13783 * libc/string.h: Added ffs, removed swab.
13784 * libc/sys/errno.h: Added EOPNOTSUPP.
13785 * libc/sys/unistd.h: Added swab.
13786
13787 Thu Oct 3 17:08:50 1996 Jeremy Allison <jra@cygnus.com>
13788
13789 * libc/include/sys/stat.h: Added fchmod.
13790 * libc/include/sys/unistd.h: Added fsync.
13791
13792 Tue Oct 1 17:34:08 1996 Jeremy Allison <jra@cygnus.com>
13793
13794 * libc/include/sys/errno.h: Added defines for EPFNOSUPPORT (96)
13795 and ECONNRESET (104) for cygwin32.
13796
13797 Tue Oct 1 16:24:05 1996 Gavin Koch <gavin@cygnus.com>
13798
13799 * libc/sys/sysnecv850/_exit.c: added _do_dtors to
13800 do the static destructors.
13801
13802 Mon Sep 30 15:59:05 1996 Stu Grossman (grossman@critters.cygnus.com)
13803
13804 * libc/sys/sysnecv850/trap.S: Change I/O to use trap 31.
13805
13806 Mon Sep 30 12:02:50 1996 Doug Evans <dje@canuck.cygnus.com>
13807
13808 * libc/machine/m32r/{Makefile.in,setjmp.S}: New files.
13809 * configure.in: Recognize m32r-*-*.
13810
13811 Mon Sep 30 00:34:41 1996 James G. Smith <jsmith@cygnus.co.uk>
13812
13813 * libc/sys/arm/trap.S (__rt_stkovf_split_big,
13814 __rt_stkovf_split_small): Added default software stack overflow
13815 handlers, which just call SWI_Exit.
13816 * libc/sys/arm/crt0.S (_mainCRTStartup): Simple software stack
13817 limit initialisation.
13818
13819 Fri Sep 27 13:08:03 1996 Mark Alexander <marka@cygnus.com>
13820
13821 * libc/sys/d10v/{trap.S,sys/syscall.h}: Add time() function.
13822
13823 Fri Sep 27 12:32:00 1996 Jeremy Allison <jra@cygnus.com>
13824
13825 * libc/include/sys/types.h: Added ssize_t definition.
13826
13827 Wed Sep 25 14:52:18 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13828
13829 * libc/machine/d10v/setjmp.S: Use ';' for comments.
13830 * libc/sys/d10v/{crt0.S,trap.S}: Ditto.
13831
13832 * libc/machine/d10v/setjmp.S (longjmp): Use exef0t || instead of
13833 branch around a single ldi instruction.
13834
13835 * libc/sys/d10v/crt0.S (_start): Use auto-increment to zero bss.
13836 Call exit, instead of just issuing a stop instruction.
13837
13838 Sun Sep 22 17:26:55 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13839
13840 * libc/sys/d10v/{trap.S,syscalls.c}: Add -mint32 support.
13841
13842 Fri Sep 20 13:23:12 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13843
13844 * libc/stdlib/mprec.h: Explicitly declare all large constants as
13845 longs, and then cast them to __uint32_t.
13846
13847 * libc/include/sys/config.h: Protect against multiple inclusions.
13848
13849 Tue Sep 17 13:10:33 1996 Mark Alexander <marka@cygnus.com>
13850
13851 * configure.in (d10v*): Set syscall_dir.
13852
13853 Sun Sep 15 10:41:59 1996 Mark Alexander <marka@cygnus.com>
13854
13855 * libc/sys/d10v/crt0.S: Set stack pointer.
13856
13857 Thu Sep 12 13:02:38 1996 Mark Alexander <marka@cygnus.com>
13858
13859 * libc/sys/d10v/{trap.S, syscalls.c}: Rewrite most system calls
13860 in assembly for efficiency. Change calling convention to allow
13861 long ints to be returned.
13862
13863 Wed Sep 11 10:28:18 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13864
13865 * libc/machine/v850/Makefile.in (setjmp.o): Fix dependency.
13866
13867 Thu Sep 5 19:23:06 1996 Doug Evans <dje@canuck.cygnus.com>
13868
13869 * libc/posix/execvp.c (execvp): Don't search PATH if file has '/'.
13870 Handle empty entries in $PATH.
13871
13872 Tue Sep 03 18:15:02 1996 Mark Alexander <marka@cygnus.com>
13873
13874 * libc/machine/d10v/setjmp.S: Make it really work.
13875
13876 Tue Sep 3 12:16:26 1996 Ian Lance Taylor <ian@cygnus.com>
13877
13878 * libc/sys/sh/crt0.S: If __ELF__, use ELF section attributes for
13879 the .stack section.
13880
13881 Tue Sep 3 10:08:45 1996 Jeffrey A Law (law@cygnus.com)
13882
13883 * sys/sysnecv850/sys/file.h: Remove.
13884 * sys/sysnecv850/sys/syscall.h: New file.
13885 * sys/sysnecv850/{misc.c,syscalls.c,malloc.c}: Deleted.
13886 * sys/sysnecv850/{chmod.c, chown.c, close.c, creat.c} New files.
13887 * sys/sysnecv850/{execv.c, execve.c, fork.c, fstat.c} New files.
13888 * sys/sysnecv850/{getpid.c, isatty.c, kill.c, lseek.c} New files.
13889 * sys/sysnecv850/{open.c, pipe.c, raise.c, read.c} New files.
13890 * sys/sysnecv850/{stat.c, unlink.c, utime.c, wait.c} New files.
13891 * sys/sysnec850/trap.S: New file.
13892 * sys/sysnecv850/{_exit.c, write.c}: Use new TRAP0 mechanism for
13893 syscalls.
13894 * sys/sysnecv850/crt0.S: Use cmp/bl, not tst/bz.
13895 * sys/sysnec850/sbrk.c: New version.
13896
13897 Sun Sep 1 20:08:27 1996 Jeffrey A Law (law@cygnus.com)
13898
13899 * sys/sysnecv850/crt0.S: Fix order of comparison args. Loop
13900 as long as r6 is less than r7.
13901
13902 Sun Sep 1 13:54:19 1996 Ian Lance Taylor <ian@cygnus.com>
13903
13904 * Makefile.in (mostlyclean): Separate from clean target. Don't
13905 remove *.a or targ-include.
13906 * libc/machine/sparc/Makefile.in (mostlyclean): New target.
13907
13908 Sun Sep 1 11:35:26 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13909
13910 * libc/include/machine/ieeefp.h (_DOUBLE_IS_32BITS): Define for
13911 d10v.
13912 (__SMALL_BITFIELDS): Ditto.
13913
13914 * libc/include/sys/config.h (_DOUBLE_IS_32BITS): Define for d10v.
13915
13916 Sat Aug 31 16:42:36 1996 Jeffrey A Law (law@cygnus.com)
13917
13918 * libc/sys/sysnecv850/misc.c (raise, getpid, kill): Remove '_'
13919 prefix.
13920
13921 * libc/sys/sysnecv850/sbrk.c (sbrk): Remove '_' prefix.
13922 * libc/sys/sysnecv850/syscalls.c (read, lseek, close): Likewise.
13923 * libc/sys/sysnecv850/syscalls.c (fstat, open, close): Likewise.
13924 * libc/sys/sysnecv850/write.c (write): Likewise.
13925
13926 * libc/sys/sysnecv850/crt0.S: Don't try to zero out an empty
13927 .bss.
13928
13929 Fri Aug 30 11:18:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13930
13931 * libc/include/sys/config.h: Define INT_MAX, UINT_MAX
13932 appropriately for D10V, depending on -mint16/-mint32.
13933
13934 Thu Aug 29 16:09:37 1996 Mark Alexander <marka@cygnus.com>
13935
13936 * configure.in: Add cases for D10V.
13937
13938 Thu Aug 29 17:03:23 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13939
13940 * configure.in (i[345]86-*-*): Recognize i686 for pentium pro.
13941
13942 Wed Aug 28 21:05:52 1996 Jeffrey A Law (law@cygnus.com)
13943
13944 * libc/include/machine/ieeefp.h: Fix typo.
13945
13946 Wed Aug 28 19:47:55 1996 Mark Alexander <marka@cygnus.com>
13947
13948 * libc/sys/d10v: New directory for D10V stuff.
13949 * libc/include/machine/ieeefp.h: Add D10V defines.
13950
13951 Mon Aug 26 13:34:58 1996 Doug Evans <dje@canuck.cygnus.com>
13952
13953 * libc/include/sys/errno.h: Add winsup/include/sys/errno.h values:
13954 ELOOP, ENOBUFS, EAFNOSUPPORT, EPROTOTYPE, ENOTSOCK, ENOPROTOOPT,
13955 ESHUTDOWN, ECONNREFUSED, EADDRINUSE, ECONNABORTED, EWOULDBLOCK.
13956 * libc/string/strerror.c (strerror): Add them.
13957
13958 Thu Aug 22 16:38:19 1996 Jeffrey A Law (law@cygnus.com)
13959
13960 * libc/sys/sysnecv850: New directory for v850 stuff.
13961
13962 * libc/machine/v850: New directory for v850 stuff.
13963 * libc/machine/v850/setjmp.S: setjmp/longjmp support.
13964
13965 * configure.in: Add support for the v850.
13966
13967 * libc/include/machine/ieeefp.h: Add v850 defines.
13968 * libc/include/machine/setjmp.h: Likewise.
13969 * libc/include/sys/config.h: Add v850 defines.
13970
13971 Sat Aug 17 04:06:36 1996 Geoffrey Noer <noer@cygnus.com>
13972
13973 * libc/include/machine/ieeefp.h
13974 * libc/include/machine/setjmp.h
13975 * libc/include/sys/fcntl.h
13976 * libc/include/sys/signal.h
13977 * libc/include/sys/types.h
13978 * libc/stdlib/system.c:
13979 Fix preprocessor defines to match new scheme (_WIN32 for WIN32
13980 API availability, __CYGWIN32__ for cygwin32 environment specific).
13981
13982 Thu Aug 15 17:09:21 1996 Geoffrey Noer <noer@cygnus.com>
13983
13984 * libc/include/stdlib.h: add multibyte character functions. Add
13985 __eprintf for assert.
13986
13987 Thu Aug 15 11:15:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13988
13989 * libc/stdlib/malloc.h (MALLOC_ALIGNMENT): Use either pointer
13990 arithmetic or __alignof__ to properly get the alignment, instead
13991 of hardwiring it to 4.
13992
13993 Wed Aug 14 23:43:28 1996 Geoffrey Noer <noer@cygnus.com>
13994
13995 * libc/stdio/fseek.c: add fflush call to adjust seek offset
13996 on append stream (fix from NetBSD sources), adjust curoff offset
13997 for ungetc's benefit.
13998 * libc/stdio/ftell.c: adjust curoff offset for ungetc's benefit.
13999 * libc/stdio/rewind.c: replace code with up to date NetBSD
14000 code to undo hacks made to work around above problem of not
14001 having fflush call mentioned above
14002
14003 Fri Aug 2 18:28:07 1996 J.T. Conklin <jtc@rtl.cygnus.com>
14004
14005 * libc/reent/{closer.c, execr.c, fstatr.c, linkr.c, lseekr.c,
14006 openr.c, readr.c, sbrkr.c, signalr.c, statr.c, timer.c, writer.c}:
14007 Partially revert last changes. The thread specific errno is set
14008 iff if the underlying syscall fails and the global errno is not
14009 zero.
14010
14011 Fri Jul 19 11:41:52 1996 J.T. Conklin <jtc@rtl.cygnus.com>
14012
14013 * libc/reent/filer.c: Removed files, all functions have split out
14014 into their own files.
14015 * libc/reent/{closer.c, lseekr.c, openr.c, readr.c, writer.c}:
14016 New files containing functions formally in filer.c
14017 * libc/reent/Makefile.in: Updated for above change.
14018
14019 * libc/reent/execr.c (_fork_r, _wait_r): Set errno if underlying
14020 syscall fails, not if errno is changed.
14021 * libc/reent/filer.c (_open_r, _close_r, _lseek_r, _read_r,
14022 _write_r): Likewise.
14023 * libc/reent/fstatr.c (_fstat_r): Likewise.
14024 * libc/reent/linkr.c (_link_r, _unlink_r): Likewise.
14025 * libc/reent/sbrkr.c (_sbrk_r): Likewise.
14026 * libc/reent/signalr.c (_kill_r): Likewise.
14027 * libc/reent/statr.c (_stat_r): Likewise.
14028 * libc/reent/timer.c (_gettimeofday_r): Likewise.
14029
14030 * libc/reent/{execr.c, filer.c, fstatr.c, linkr.c, sbrkr.c,
14031 signalr.c, statr.c, timer.c} (errno): declare extern rather
14032 than as a common.
14033
14034 * libc/stdio/vfprintf.c (__sbprintf): Use the VFPRINTF macro
14035 instead of calling vfprintf so that i*printf will not require
14036 floating point support code.
14037
14038 Mon Jul 15 16:50:59 1996 Doug Evans <dje@canuck.cygnus.com>
14039
14040 * libc/posix/execvp.c (execvp): Use posix_path_list_p to determine
14041 path delimiter.
14042 * libc/include/sys/unistd.h (_SC_PATH_RULES): Delete.
14043 (_PATH_RULES_{UNKNOWN,WIN32,POSIX}): Delete.
14044
14045 Thu Jul 11 14:34:14 1996 Geoffrey Noer <noer@cygnus.com>
14046
14047 * libc/include/signal.h: _sig_func_ptr function takes an int
14048 * libc/include/sys/signal.h: sa_handler function takes an int
14049
14050 Tue Jul 9 21:22:32 1996 Jeffrey A Law (law@cygnus.com)
14051
14052 * libc/include/machine/ieeefp.h: Simplify H8/S support.
14053 * libc/include/sys/config.h: Add missing H8/S conditional.
14054
14055 Sun Jun 30 12:05:46 1996 Doug Evans <dje@canuck.cygnus.com>
14056
14057 * libc/include/sys/unistd.h (MAXPATHLEN): Add cygwin32 value.
14058
14059 Wed Jun 26 09:57:54 1996 Jeffrey A Law (law@cygnus.com)
14060
14061 * libc/include/machine/setjmp.h: Handle H8/S.
14062 * libc/include/machine/ieeefp.h: Likewise.
14063 * libc/include/sys/config.h: Likewise.
14064 * libc/machine/h8300/{defines.h, memcpy.S, memset.S}: Likewise.
14065 * libc/machine/h8300/{reg_memcpy.S, reg_memset.S}: Likewise.
14066 * libc/machine/h8300/{strcmp.S, setjmp.S}: Likewise.
14067 * libc/sys/h8300hms/crt0.S: Likewise.
14068
14069 Tue Jun 25 23:15:45 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
14070
14071 * Makefile.in (datadir): Set to $(prefix)/share.
14072 (oldincludedir, docdir): Removed.
14073 * doc/Makefile.in (datadir): Set to $(prefix)/share.
14074 (oldincludedir, docdir): Removed.
14075 * libc/Makefile.in (datadir): Set to $(prefix)/share.
14076 (oldincludedir, docdir): Removed.
14077 * libm/Makefile.in (datadir): Set to $(prefix)/share.
14078 (oldincludedir, docdir): Removed.
14079
14080 Fri Jun 21 19:24:41 1996 Ian Lance Taylor <ian@cygnus.com>
14081
14082 * libc/include/sys/reent.h (_REENT_INIT): Update for change to
14083 _reent struct.
14084
14085 Wed Jun 19 14:00:09 1996 Doug Evans <dje@canuck.cygnus.com>
14086
14087 * libc/posix/execvp.c: Delete _WIN32 support. For __CYGWIN32__
14088 fetch current path rules with sysconf and handler posix/win32
14089 appropriately.
14090
14091 * libc/include/sys/unistd.h (_PATH_RULES{,_POSIX,_WIN32}): Define.
14092
14093 * libc/include/process.h: Prepend '_' to P_{WAIT,NOWAIT,OVERLAY}.
14094 (WAIT_CHILD): Always define.
14095
14096 Sat Jun 15 17:50:42 1996 Ian Lance Taylor <ian@cygnus.com>
14097
14098 * libc/stdlib/eprintf.c: New file.
14099 * libc/stdlib/Makefile.in (OFILES): Add eprintf.o.
14100 (eprintf.o): New target.
14101
14102 Thu Jun 13 16:44:32 1996 Doug Evans <dje@canuck.cygnus.com>
14103
14104 * libc/sys/cygwin32/crt0.c (__cygwin_crt0_bp): New global.
14105 (mainCRTStartup): Do int3 if __cygwin_crt0_bp non-zero.
14106
14107 Thu Jun 13 17:45:17 1996 Mike Meissner <meissner@rtl.cygnus.com>
14108
14109 * libc/include/machine/ieeefp.h: Add support for AIX and Windows
14110 NT in PowerPC endianess cases.
14111
14112 Tue Jun 11 12:26:28 1996 Michael Meissner <meissner@tiktok.cygnus.com>
14113
14114 * libc/include/machine/ieeefp.h: Clean up PowerPC endianess.
14115
14116 Thu Jun 6 11:34:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
14117
14118 * libc/string/strtok.c: Fix doc typo.
14119
14120 Mon Jun 3 11:30:00 1996 J.T. Conklin <jtc@rtl.cygnus.com>
14121
14122 * libc/include/sys/reent.h (struct _reent): Removed _asctime,
14123 _next, _scanpoint, _signgam fields.
14124
14125 * libc/include/stdlib.h (rand_r): Added new declaration.
14126 (_rand_r, _srand_r): Removed declarations.
14127 * libc/stdlib/rand.c (_rand_r, _srand_r): Removed, these functions
14128 have been made obsolete by rand_r.
14129 * libc/stdlib/rand_r.c: New file, rand_r function as specified
14130 by POSIX.1c.
14131
14132 * libc/string/strtok.c: Update documentation to describe
14133 strtok_r().
14134
14135 Sat Jun 1 23:50:39 1996 Michael Meissner <meissner@cygnus.com>
14136
14137 * libc/include/sys/stat.h (stat structure): Use the expanded stat
14138 structure on Solaris, and PowerPC systems even though __svr4__ is
14139 defined.
14140
14141 Tue May 28 13:02:42 1996 Doug Evans <dje@canuck.cygnus.com>
14142
14143 * libc/sys/go32/sys/errno.h (ENOSYS,ESPIPE): Keep values <= 255.
14144
14145 Fri May 17 10:34:44 1996 Ian Lance Taylor <ian@cygnus.com>
14146
14147 * host/any: Use ../.. rather than .. to get to the main build
14148 directory. This matches the current layout of the build
14149 directory.
14150
14151 Wed May 15 15:52:27 1996 Jeffrey A Law (law@cygnus.com)
14152
14153 * libc/machine/h8300/__main.S: Delete. No longer needed.
14154 * libc/machine/h8300/Makefile.in: Corresponding changes.
14155 * libc/sys/h8300hms/crt1.c: New file.
14156 * libc/sys/h8300hms/Makefile.in: Corresponding changes.
14157 * libc/sys/h8300hms/crt0.s: Call __main.
14158
14159 * libc/sys/h8300hms/crt0.S: Use temporary label names
14160 for branch targets.
14161
14162 Mon May 13 14:26:30 1996 Doug Evans <dje@canuck.cygnus.com>
14163
14164 * libc/stdio/fopen.c (_fopen_r): Fix arguments to fseek.
14165
14166 Fri May 3 16:38:23 1996 Michael Meissner <meissner@tiktok.cygnus.com>
14167
14168 * libc/reent/impure.c (_impure_ptr): Force the impure pointer into
14169 .sdata on the PowerPC so that we can link newlib with code
14170 compiled with -msdata.
14171
14172 Mon Apr 29 21:38:02 1996 Doug Evans <dje@canuck.cygnus.com>
14173
14174 * libc/sys/arm/syscalls.c (_sbrk): Rename end to __end__.
14175
14176 Thu Apr 25 06:38:59 1996 Michael Meissner <meissner@cygnus.com>
14177
14178 * libc/sys/cygwin32/crt0.c (mainCRTStartup): On PowerPC, set the
14179 exception handler to __cygwin_exception_handler.
14180
14181 Tue Apr 23 15:14:20 1996 Ian Lance Taylor <ian@cygnus.com>
14182
14183 * libc/include/machine/setjmp.h: Check _AM29K, not ___AM29K__.
14184
14185 Sun Apr 21 12:11:51 1996 Doug Evans <dje@blues.cygnus.com>
14186
14187 * libm/math/Makefile.in ({w,wf}_cabs.o,{w,wf}_drem.o): Add rule for
14188 SunOS VPATH.
14189 * libc/stdlib/Makefile.in (atoff.o,atol.o,mblen.o,mbstowcs.o,
14190 wcstombs.o): Likewise.
14191
14192 Thu Apr 18 12:37:01 1996 Doug Evans <dje@canuck.cygnus.com>
14193
14194 * libc/stdlib/environ.c (initial_env): New static local.
14195 (environ): Point to `initial_env'.
14196
14197 * libc/include/machine/setjmp.h: Clean up.
14198 (__H8300H__,__PPC__): Define _JBTYPE.
14199 (__arm__): Provide entry for.
14200 (sigjmp_buf): Delete.
14201 (jmp_buf): Use _JBTYPE if defined, otherwise int.
14202
14203 Thu Apr 18 12:10:52 1996 Jeffrey A Law (law@cygnus.com)
14204
14205 * libc/machine/h8300/strcmp.S: Sign extend the result to
14206 32bits so we don't lose with -mint32.
14207
14208 Sun Apr 14 19:59:52 1996 Doug Evans <dje@canuck.cygnus.com>
14209
14210 * libc/sys/go32/sys/errno.h: New file.
14211 * libc/sys/go32/Makefile.in (stat.o): Depend on stat.c.
14212 * libc/sys/go32/gerrno.s (syscall_error): Call __errno to get
14213 errno's address (make compatible with rest of newlib).
14214 * libc/sys/go32/stat.c (fixinode): Set errno upon failure.
14215 * libc/string/strerror.c (strerror): Surround each case with #ifdef.
14216
14217 Thu Mar 28 13:44:42 1996 Doug Evans <dje@canuck.cygnus.com>
14218
14219 * libc/machine/sparc/{scan.c,shuffle.c}: New files.
14220 * libc/machine/sparc/Makefile.in: Build them.
14221 * libc/machine/sparc/machine/sparclet.h: New file.
14222
14223 Mon Mar 25 15:29:14 1996 J.T. Conklin <jtc@rtl.cygnus.com>
14224
14225 * libc/machine/sh/asm.h: New file.
14226 * libc/machine/sh/setjmp.S: Only save clobbered registers. Added
14227 support for SH3e's FP registers. Use asm.h.
14228
14229 Mon Mar 25 11:59:23 1996 Jeffrey A Law (law@cygnus.com)
14230
14231 * libc/stdio/vfprintf.c (cvt): Accept a reent structure
14232 as first argument. Call _dtoa_r and pass the reent structure
14233 instead of calling __dtoa.
14234
14235 Fri Mar 22 13:59:37 1996 Jeffrey A Law (law@cygnus.com)
14236
14237 * libc/include/sys/config.h: Define DOUBLE_IS_32BITS for
14238 the h8300, h8500, and others. Add comments for some rather
14239 dubious code.
14240
14241 Thu Mar 14 18:04:43 1996 Ian Lance Taylor <ian@cygnus.com>
14242
14243 * Makefile.in (check): Check that testsuite exists before cd.
14244
14245 Tue Mar 12 11:46:47 1996 Michael Meissner <meissner@tiktok.cygnus.com>
14246
14247 * libc/include/string.h (strsep): Correct prototype.
14248
14249 Mon Mar 11 09:55:19 1996 Doug Evans <dje@charmed.cygnus.com>
14250
14251 * libc/sys/h8300/_exit.c (_exit,__exit): Set r0 to 0 before `sleep'.
14252 * libc/sys/h8300/misc.c (_kill): Set r0 to indicate abort and `sleep'.
14253 * libc/sys/h8300/crt0.S (_start): Call exit instead of `sleep'.
14254
14255 Wed Mar 6 11:51:55 1996 Doug Evans <dje@charmed.cygnus.com>
14256
14257 * libc/posix/{creat.c,isatty.c}: New files.
14258 * libc/posix/Makefile.in (OFILES): Add creat.o, isatty.o.
14259
14260 * libc/sys/sparc64/crt0.S (environ): Delete.
14261 (.LHaveBias): Renamed from HaveBias.
14262
14263 Thu Feb 15 10:48:37 1996 Doug Evans <dje@charmed.cygnus.com>
14264
14265 * libc/stdlib/mallocr.c (etext): Move decl inside ifdef WARN_VLIMIT.
14266 (_morecore_r): Delete SBRK_IS_ALLOC support.
14267
14268 Tue Feb 13 09:44:09 1996 Michael Meissner <meissner@tiktok.cygnus.com>
14269
14270 * libc/sys/cygwin32/Makefile.in (lib.a): Make lib.a with a dummy
14271 module rather than touch, so we don't get warning messages when
14272 all of the libraries are combined into libc.a.
14273
14274 Tue Feb 13 06:32:07 1996 Doug Evans <dje@charmed.cygnus.com>
14275
14276 * libc/sys/sparclite/{Makefile.in,crt0.s}: Deleted.
14277 crt0.s replaced by version in libgloss.
14278
14279 Mon Feb 5 15:17:51 1996 J.T. Conklin <jtc@rtl.cygnus.com>
14280
14281 * libc/reent/Makefile.in (OFILES): Add impure.o.
14282 * libc/reent/impure.o: New file, define initial reentrancy struct.
14283 * libc/reent/reent.c: Remove above definition.
14284
14285 * libm/math/sf_asinh.c: Fix typo.
14286
14287 * Makefile.in (MATHOBJS_IN_LIBC): Removed sr_ldexp.o and
14288 srf_ldexp.o.
14289
14290 * libm/libm.texinfo: Change documentation to reflect changes
14291 in reentrancy model.
14292 * libm/math/w_gamma.c: Likewise.
14293
14294 Wed Jan 31 18:49:45 1996 Steve Chamberlain <sac@slash.cygnus.com>
14295
14296 * configure.in (*-*-cygwin32): New.
14297 (*-*-win32): Deleted.
14298 * libc/sys/win32 renamed libc/sys/cygwin32.
14299
14300 Tue Jan 30 22:09:03 1996 Michael Meissner <meissner@tiktok.cygnus.com>
14301
14302 * libc/include/sys/file.h: New include file.
14303
14304 Fri Jan 26 15:52:54 1996 Steve Chamberlain <sac@slash.cygnus.com>
14305
14306 * libc/include/machine/setjmp.h: Increase size of PPC jmp_buf.
14307
14308 Tue Jan 23 17:49:16 1996 Steve Chamberlain <sac@slash.cygnus.com>
14309
14310 * libc/include/sys/wait.h (WIFSIGNALED): Fix.
14311
14312 Tue Jan 16 09:28:10 1996 Michael Meissner <meissner@tiktok.cygnus.com>
14313
14314 * doc/makedoc.c (realloc): Declare at file scope.
14315 (catchar): Not here.
14316
14317 Wed Dec 27 15:45:23 1995 Doug Evans <dje@canuck.cygnus.com>
14318
14319 * Makefile.in (VERSION): Update to 1.7.0.
14320 * {libc,libm}/Makefile.in (VERSION): Likewise.
14321 * configure.in: Minor clean up of multilib stuff.
14322
14323 From David Johnson <davidj@ICSI.Berkeley.EDU>
14324 * {libc,libm}/Makefile.in (lib[cm].a): Delete library first.
14325
14326 * libc/stdlib/environ.c: New file.
14327 * libc/stdlib/Makefile.in (OFILES): Build it.
14328 * libc/sys/h8500hms/crt0.c (environ): Deleted.
14329 * libc/sys/m88kbug/crt0.c (environ): Deleted.
14330 * libc/sys/z8ksim/crt0.c (environ): Deleted.
14331 * libc/sys/netware/environ.c: Deleted.
14332
14333 Tue Dec 19 15:24:46 1995 Kim Knuttila <krk@cygnus.com>
14334
14335 * configure.in (links): set sys_dir, posix_dir, syscall_dir
14336
14337 Wed Dec 13 04:16:25 1995 Michael Meissner <meissner@wogglebug.tiac.net>
14338
14339 * doc/makedoc.c (init_string_with_size,nextword): Move malloc
14340 declaration out to external scope and declare it PTR, not char *.
14341
14342 Mon Dec 11 17:35:12 1995 steve chamberlain <sac@slash.cygnus.com>
14343
14344 * libc/include/sys/unistd.h (getpagesize): New declaration.
14345 (_SC_PAGESIZE): New definition.
14346 * libc/include/time.h (CLK_TCK): Defined as CLOCKS_PER_SEC.
14347 * libc/configure.in (i[345]86-*-win32): Remove -DNO_FORK.
14348
14349 Fri Dec 1 16:48:46 1995 James G. Smith <jsmith@cygnus.co.uk>
14350
14351 * libc/sys/vr4300/syscalls.c (sbrk): Fixed memory
14352 addressing. System call returns size, not (last address + 1).
14353
14354 Thu Nov 30 15:05:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14355
14356 * libm/math/*.c: Removed _foo_r() reentrancy API.
14357 * libc/include/math.h: Removed _foo_r prototypes and macros.
14358
14359 * libm/math/*.c: On systems with IEEE single precision "doubles"
14360 move foo() -> foof() wrapper code from the files that implement
14361 the standard IEEE double precision functions to the files that
14362 implement IEEE single precision functions. (ie. On those systems
14363 sin is moved from s_sin.c to sf_sin.c). There should eventually
14364 be use of a C extension (like gcc's alias attribute) so that the
14365 wrappers are not needed at all.
14366
14367 * libc/sys/sysnec810/sbrk.c: Cast &end to char * to get around
14368 strict NEC V810 compiler.
14369 * libc/misc/dprintf.c (getnumber): Cast char * to unsigned char *
14370 for same reason.
14371
14372 Wed Nov 29 14:25:05 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14373
14374 * libc/stdlib/strtol.c (_strtol_r): Replaced with implementation
14375 from NetBSD C library.
14376 * libc/stdlib/strtoul.c (_strtoul_r): Likewise.
14377
14378 * libc/stdlib/assert.c (__assert): Renamed from __assertfail
14379 and adapted from implementation I wrote for NetBSD C library.
14380 The difference is __assert doesn't take a format argument,
14381 so that there won't be multiple copies of the same string
14382 constant in the executable if assertions are enabled in
14383 more than one source module.
14384 * libc/include/assert.h (assert): Changed to call __assert.
14385
14386 Tue Nov 28 16:54:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14387
14388 * libc/stdlib/strtod.c (_strtod_r): Changed to not assign to
14389 word1 on systems with 32 bit doubles.
14390 * libc/stdlib/qsort.c (qsort): Cast some void *'s to char *'s
14391 so that we can do arithmetic on them.
14392 * libc/misc/dprintf.c: Changed to support stdarg.h for ANSI
14393 compilers.
14394
14395 Tue Nov 28 16:03:32 1995 Doug Evans <dje@canuck.cygnus.com>
14396
14397 * libc/sys/arm/crt0.S: Zero bss.
14398
14399 Fri Nov 24 16:09:23 1995 Doug Evans <dje@deneb.cygnus.com>
14400
14401 * libc/include/unctrl.h: New file.
14402 * libc/misc/{Makefile.in,dprintf.c,unctrl.c,misc.tex}: New files.
14403 * configure.in (subdirs): Add libc/misc.
14404 * libc/Makefile.in (SUBDIRS): Add misc.
14405 (SUBLIBS): Add misc/lib.a.
14406
14407 * libc/include/sys/reent.h (struct _reent): Make __sf last member.
14408
14409 Wed Nov 22 19:49:47 1995 Doug Evans <dje@deneb.cygnus.com>
14410
14411 * libc/stdio/vfprintf.c (__sbprintf): Init fake._data.
14412 (_vfprintf_r): Call CHECK_INIT.
14413
14414 Tue Nov 14 02:52:12 1995 Doug Evans <dje@canuck.cygnus.com>
14415
14416 * Makefile.in (MULTITOP): Delete.
14417 (MULTISRCTOP, MULTIBUILDTOP): Add.
14418 * configure.in: Delete call to cfg-ml-com.in. Call config-ml.in
14419 instead of cfg-ml-pos.in.
14420
14421 Wed Nov 8 01:24:08 1995 James G. Smith <jsmith@pasanda.cygnus.co.uk>
14422
14423 * libc/sys/vr4300/syscalls.c: Added clean version of sbrk().
14424 * libc/sys/vr4300/crt0.S: Cleaned up. Added check for FPU
14425 presence.
14426
14427 Thu Nov 2 22:25:06 1995 Michael Meissner <meissner@tiktok.cygnus.com>
14428
14429 * libc/string/strtok.c: Include string.h to pick up strtok_r
14430 prototype.
14431
14432 Wed Nov 1 18:54:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14433
14434 * libc/string/strtok.c: include <_ansi.h>.
14435 * libc/time/asctime_r.c: `reresult' -> `result'.
14436
14437 Wed Nov 1 14:35:52 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14438
14439 * libc/time/{ctime.c, gmtime.c, lcltime.c}: Wrap functions
14440 in #ifndef _REENT_ONLY ... #endif conditional.
14441
14442 * libc/include/string.h (_strtok_r): Remove declaration.
14443 * libc/include/time.h (_asctime_r): Remove declaration.
14444 * libc/string/strtok.c (_strtok_r): Removed.
14445 * libc/time/asctime.c (_asctime_r): Removed.
14446
14447 * libc/string/Makefile.in (OFILES): Add new object.
14448 * libc/string/strtok_r.c: New file. strtok_r function as
14449 specified by POSIX.1c, adapted from strtok implementation
14450 from NetBSD C library.
14451 * libc/string/strtok.c (strtok): Reimplemented in terms of
14452 strtok_r.
14453
14454 * libc/time/Makefile.in (OFILES): Add new objects.
14455 * libc/time/{asctime_r.c, ctime_r.c, gmtime_r.c, lcltime_r.c}:
14456 New files, reentrant time functions specified by POSIX.1c.
14457 * libc/time/{asctime.c, ctime.c, gmtime.c, lcltime.c}: Non-
14458 reentrant time functions re-written in terms of reentrant
14459 functions.
14460 * libc/time/lcltime.c: Renamed from localtime.c
14461
14462 * libc/include/time.h: Add prototypes for asctime_r, ctime_r,
14463 gmtime_r, and localtime_r.
14464
14465 Sat Oct 28 14:34:31 1995 steve chamberlain <sac@slash.cygnus.com>
14466
14467 * libc/sys/win32/crt0.c (mainCRTStartup): Call cygwin_crt0.
14468 * libc/include/sys/unistd.h (getlogin): Revert change of
14469 Oct 19.
14470 * libc/include/sys/signal.h (sigprocmask): Change prototype
14471 so it compiles with c++.
14472
14473 Wed Oct 25 15:43:18 1995 Michael Meissner <meissner@cygnus.com>
14474
14475 * libc/include/machine/setjmp.h (PowerPC _JBLEN): Consider it a
14476 PowerPC if __PPC__ is defined. Bump jump_buf length to 62 ints,
14477 to give some room in case we need to align the jmp_buf.
14478
14479 * libc/machine/powerpc/setjmp.S (setjmp, longjmp): Rewrite to use
14480 the new ppc-asm.h include file the compiler provides to specify
14481 function prologue/epilogue. Eliminate saves of the xer and ctr
14482 registers, which are volatile. Before starting to save registers,
14483 align to 8 byte boundary.
14484
14485 Mon Oct 23 11:20:51 1995 James G. Smith <jsmith@pasanda.cygnus.co.uk>
14486
14487 * libc/sys/vr4300/syscalls.c: Added empty kill() function,
14488 referenced by standard libraries.
14489
14490 Thu Oct 19 21:39:47 1995 Fred Fish <fnf@cygnus.com>
14491
14492 * libc/unix/Makefile.in, libc/string/Makefile.in,
14493 libc/stdio/Makefile.in, libc/reent/Makefile.in,
14494 libc/posix/Makefile.in:
14495 Remove tabs from otherwise empty line. Confuses some
14496 older non-GNU versions of "make".
14497
14498 Thu Oct 19 16:32:17 1995 steve chamberlain <sac@slash.cygnus.com>
14499
14500 * libc/sys/unistd.h (getlogin): Returns const char *.
14501
14502 Wed Oct 18 12:57:50 1995 steve chamberlain <sac@slash.cygnus.com>
14503
14504 * libc/include/fcntl.h (O_BINARY, O_TEXT): New.
14505 * libc/include/errno.h: Moved into and include...
14506 * libc/include/sys/errno.h: New file.
14507 * libc/include/sys/wait.h: New file.
14508 * libc/stdio/rename.c (_rename_r): Use _rename system call if available.
14509 * libc/sys/win32/*: Moved out.
14510 * libc/sys/win32/crt0.c: Rewritten to cope with shared library.
14511 * configure.in (i[345]86-*-win32): HAVE_RENAME
14512
14513 Wed Oct 18 09:58:27 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
14514
14515 * libc/unix/sigset.c (sigemptyset, sigaddset): Prefix #undef to
14516 avoid macro expansion for these two names.
14517
14518 Tue Oct 17 08:45:33 1995 Doug Evans <dje@canuck.cygnus.com>
14519
14520 * libc/machine/h8500/psi.S: r6 renamed to fp.
14521
14522 Sun Oct 15 12:58:10 1995 Michael Meissner <meissner@wogglebug.tiac.net>
14523
14524 * configure.in (powerpc*): No longer need to define
14525 NO_LONGLONG_POINTERS to supress warnings.
14526
14527 Sat Oct 14 12:55:08 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14528
14529 * libc/reent/reent.c (_reclaim_reent): Call cleanup indirectly
14530 through PTR instead of directly.
14531
14532 * libc/sys/sh/crt0.S: Clean up formatting. Delete unused
14533 non-standard constructor support.
14534
14535 Thu Oct 12 11:39:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14536
14537 * libc/stdlib/dtoa.c (_dtoa_r): Set result pointer to the
14538 address of the Bigint instead of the address of its _x field,
14539 as the size the result buffer was calculated accordingly.
14540 Fix from Jim Wilson <wilson@chestnut@cygnus.com>.
14541
14542 * libc/stdlib/{div.c, ldiv.c}: Replaced with implementation
14543 from NetBSD C library. No longer special cases division by
14544 zero (which needs to be done by the application anyway), but
14545 it doesn't need to call abs() (or labs()) four times either.
14546
14547 * libc/stdlib/qsort.c: Replaced with implementation from
14548 NetBSD C library.
14549
14550 Tue Oct 10 14:01:10 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14551
14552 * libc/stdio/vfprintf.c: Replaced with implementation from
14553 NetBSD C library (which is derived from the 4.4BSD C library).
14554 * libc/stdio/cvt.c: Removed.
14555 * libc/stdio/Makefile: Updated.
14556
14557 Tue Oct 10 12:15:23 1995 steve chamberlain <sac@slash.cygnus.com>
14558
14559 * libc/sys/win32/syscalls.c (rename): New.
14560 * libc/sys/win32/include/winkernel.h (MoveFileExA): New.
14561
14562 Fri Oct 6 12:18:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14563
14564 * libc/machine/sh/Makefile.in (setjmp.o): Depend on setjmp.S.
14565 * libc/machine/sh/setjmp.S: Rename from setjmp.s.
14566
14567 * libc/sys/sh/Makefile.in (OFILES, all): Delete setjmp.o.
14568 (setjmp.o): Delete rule to build setjmp.o.
14569 * libc/sys/sh/setjmp.S: Delete file.
14570
14571 Fri Oct 6 11:19:05 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14572
14573 * libc/stdlib/mprec.c (d2b): Added support for _DOUBLE_IS_32BITS.
14574 * libc/stdlib/mprec.h: Fixed constants used for IEEE single float
14575 format. Added #defines to map d2b, i2b, low0bits, lshift, mult,
14576 pow5mult and s2b to identifiers with leading underscores.
14577 * libc/stdlib/Makefile.in: Add mprec.h as a dependency to dtoa.o,
14578 ecvtbuf.o, mprec.o and strtod.o. Sort dependencies.
14579
14580 Thu Oct 5 17:27:30 1995 steve chamberlain <sac@slash.cygnus.com>
14581
14582 * libc/sys/posix/popen.c (sys/types.h): Include.
14583
14584 Thu Oct 5 16:33:01 1995 Doug Evans <dje@canuck.cygnus.com>
14585
14586 * libc/sys/win32/syscalls.h (fhandler): New struct.
14587 (__lookup_fhandler, __lookup_fhandler_hook): Declare.
14588 (__fhandler_normal): Declare.
14589 (hinfo): New member op_handlers.
14590 * libc/sys/win32/syscalls.c (__read): Don't validate fd.
14591 (__write): Likewise.
14592 (_read, _write, _open, _close, _lseek): Validate fd here.
14593 Move file type specific stuff to foo_normal.
14594 (read_normal, write_normal, open_normal, close_normal, lseek_normal):
14595 New functions.
14596 (__lookup_fhandler): New function.
14597 (__lookup_fhandler_hook, __fhandler_normal): New variables.
14598
14599 From anders.blomdell@control.lth.se (Anders Blomdell)
14600 * libc/sys/win32/crt0.c (vfork_init): Unset __FD_TABLE__.
14601 Don't touch standard handles.
14602 * libc/sys/win32/spawn.c (_spawn): Use STARTF_USESTDHANDLES.
14603 (_execve): Only create __FD_TABLE__ if necessary.
14604 * libc/sys/win32/include/winkernel.h (STARTF_*): Define.
14605
14606 Thu Oct 5 14:25:14 1995 steve chamberlain <sac@slash.cygnus.com>
14607
14608 * libc/sys/win32/sys/termios.h (FLUSHO): New.
14609 * libc/sys/win32/include/win*.h: Moved a load of prototypes around.
14610 * libc/sys/win32/pipe.c (_fctnl): Ignore F_SETFL without errors.
14611 * libc/sys/win32/exception.c (ehandler3): set strace when a signal
14612 without a handler is received.
14613 * libc/sys/win32/Makefile.in: Remove --nodelete.
14614 * libc/sys/win32/resouce.c (gettimeofday): New.
14615 * libc/sys/win32/syscalls.c (path_to_real_path): New.
14616 * libc/sys/win32/syscalls.h (include/wincon.h): Don't include.
14617
14618 Wed Oct 4 13:10:35 1995 Doug Evans <dje@canuck.cygnus.com>
14619
14620 * libc/sys/win32/dirsearch.c (opendir): stat real path name.
14621 Don't append "/*" to search pattern if trailing '/' already there,
14622 append "*".
14623 * libc/sys/win32/spawn.c (_spawn): CreateProcess doesn't seem to
14624 like /'s, convert them to \'s. Handle //<drive>/ path names.
14625 Add space for quoted \'s in arg string. Print translated prog name
14626 and original prog name.
14627 (_execve): Handle parent doing exec a teensy bit better.
14628 * libc/sys/win32/syscalls.h (__path_to_real_path): Update prototype.
14629 * libc/sys/win32/syscalls.c (__path_to_real_path): Don't assume
14630 path needs conversion, handle both cases. Delete `const' from result.
14631 (hash_path_name): New function.
14632 (_open): Call it.
14633 (_stat): Likewise. Fill in more fields for directories.
14634 * libc/sys/win32/wait.c (_wait): Explicitly pass -1 to waitpid.
14635 (wait_for_any): Fix trace message.
14636 (waitpid): Explicitly test for intpid == 0.
14637
14638 From anders.blomdell@control.lth.se (Anders Blomdell)
14639 * libc/sys/win32/spawn.c (__vfork_get_empty_entry): zero fill result
14640 so `next' is valid.
14641
14642 Sat Sep 30 15:00:15 1995 Jason Molenda (crash@phyeaux.cygnus.com)
14643
14644 * libc/sys/win32/spawn.c (_spawn): Make quoting rules more
14645 complicated.
14646
14647 Sat Sep 30 10:25:57 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14648
14649 * libc/include/_ansi.h: set _HAVE_STDC if __STDC__ is defined
14650 at all, not just == 1.
14651 * libm/math/wf_acos.c (acosf): check for _HAVE_STDC, not __STDC__.
14652
14653 Sat Sep 30 04:30:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14654
14655 * libc/sys/win32/include/winbase.h: include <wintypes.h> and <winnt.h>
14656 * libc/sys/win32/include/wintypes.h: include <winnt.h>
14657 * libc/sys/win32/include/winnt.h: avoid multiple inclusion of this
14658 file.
14659
14660 Fri Sep 29 01:49:17 1995 steve chamberlain <sac@slash.cygnus.com>
14661
14662 * libc/sys/syscalls.c (getcwd): Fix off by one error.
14663
14664 * libc/sys/signal.c (sleep): Fill it in.
14665 * libc/sys/termios.c (tcflush): Use PurgeComm
14666 (tcsetattr): Set some more of the bits.
14667 * libc/sys/include/winkernel.h: Add PurgeComm and Sleep.
14668
14669 Fri Sep 29 04:33:53 1995 Doug Evans <dje@deneb.cygnus.com>
14670
14671 * libc/sys/arm/crt0.S (fp): Initialize to 0.
14672 Conditionally include .idata$3 stuff ifdef __pe__.
14673
14674 Fri Sep 29 01:49:17 1995 steve chamberlain <sac@slash.cygnus.com>
14675
14676 * libc/sys/win32/crt0.c (hmap_init): Call __init_hinfo.
14677 * libc/sys/win32/pipe.c (pipe): Ditto.
14678 * libc/sys/win32/syscalls.c (__read): Use new vtime and vmin fields.
14679 * libc/sys/win32/syscalls.h (hinfo): vtime, vmin are new.
14680 * libc/sys/win32/termios.c (tcsetattr): Init new fields.
14681 (tcgetattr): Contents are new.
14682 * libc/sys/win32/include/winkernel.h (DCB): New.
14683 (GetCommState, SetCommState): New.
14684
14685 Thu Sep 28 16:29:09 1995 Doug Evans <dje@deneb.cygnus.com>
14686
14687 * libc/sys/arm/crt0.S (_start): Define.
14688
14689 Thu Sep 28 12:26:45 1995 steve chamberlain <sac@slash.cygnus.com>
14690
14691 * libc/sys/arm/crt0.S: Move stack to top of RAM on PIE board.
14692 * libc/sys/arm/syscalls.c (_read, _write): Use the SWI properly.
14693
14694 * libc/sys/win32/sysconf.c: New
14695 * libc/sys/win32/sys/winadvapi.h: New
14696 * libc/sys/win32/syscalls.h (hinfo): Added timeout_len, w_binary, r_binary.
14697 * libc/sys/win32/crt0.c (hmap_init): Initialize new fields.
14698 * libc/sys/win32/pipe.c (pipe): Ditto.
14699 * libc/sys/win32/signal.c (_raise): New.
14700 (_kill): Moved from spawn.c
14701 * libc/sys/win32/spawn.c (kill): Moved to signal.c
14702 * libc/sys/win32/syscalls.c (__read): Use new fields.
14703 (_open): Ditto.
14704 * libc/sys/win32/termios.c (tcflush, tcsetattr, tcgetattr): Fill in.
14705 * libc/sys/win32/exceptions.c (__stack_trace): Keep going for longer.
14706 * libc/include/sys/unistd.h (rmdir): Takes const path.
14707 * libc/include/sys/stat.h (mkdir): Takes const path.
14708 * libc/include/sys/signal.h (SIGTTOU, SIGTTIN): New for win32.
14709
14710 Thu Sep 28 10:11:27 1995 Doug Evans <dje@canuck.cygnus.com>
14711
14712 * libc/sys/win32/spawn.c (_spawn): Fix quoting.
14713
14714 Add support for specifying paths as //<drive>/foo/bar.
14715 * libc/sys/win32/syscalls.h (__path_needs_conversion_p): Declare.
14716 (__path_to_real_path): Declare.
14717 (PATH_TO_REAL_PATH): New macro.
14718 * libc/sys/win32/syscalls.c (__win32_pid_to_posix_pid): Minor cleanup.
14719 (__path_needs_conversion_p, __path_to_real_path): New functions.
14720 (_open): Fix test for error return from CreateFileA.
14721 Handle new path syntax.
14722 (_link, mkdir, rmdir, getcwd, chdir, stat): Handle new path syntax.
14723 * libc/sys/win32/dirsearch.c (opendir): Likewise.
14724
14725 Wed Sep 27 16:36:46 1995 steve chamberlain <sac@slash.cygnus.com>
14726
14727 * libc/sys/win32/include/*.h: Reorganized
14728 * libc/sys/win32/include/WINREADME: New.
14729 * libc/sys/win32/Makefile.in (DLLS): Build version.a.
14730 * libc/sys/win32/*.c: Fix for new include scheme.
14731 * libc/sys/win32/crt0.c (__this_uinfo_buf, __this_uinfo): New.
14732 * libc/sys/win32/getlogin.c (getlogin): Use uinfo.
14733 * libc/sys/win32/passwd.c (*): Fix.
14734 * libc/sys/win32/syscalls.c (get[e|][g|u]id): Use passwd info.
14735 (_stat): Get directory owner and permissions right.
14736 * libc/sys/win32/syscalls.h (uinfo): New.
14737 * libc/sys/win32/version.def: Remove leading underscores.
14738
14739 Tue Sep 26 18:18:47 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14740
14741 * libc/sys/win32/key.c: include "include/wincon.h".
14742
14743 Tue Sep 26 07:21:48 1995 steve chamberlain <sac@slash.cygnus.com>
14744
14745 * libc/sys/win32/{key, stubs}.c: New.
14746 * libc/sys/win32/Makefile: Adjust to cope.
14747 * libc/sys/win32/crt0.c (vfork_init_first): Cope with -ve pids.
14748 (environ_init): Change env names to upper case.
14749 * libc/sys/win32/dirsearch.c (readdir): Don't fill in inode number.
14750 * libc/sys/win32/passwd.c (*): Fill in the functions.
14751 * libc/sys/win32/pipe.c (_fcntl): F_GETFL returns O_RDWR.
14752 * libc/sys/win32/spawn.c (_spawn): Cope with -ve pids.
14753 * libc/sys/win32/syscalls.c (__win32_pid_to_posix_pid): New function.
14754 (_open): Initialze hmap->execable_p too.
14755 * libc/sys/win32/syscalls.c (getuid, getgid, geteuid, getegid): Return from macros.
14756 (_fstat): Fill in permissions.
14757 * libc/sys/win32/syscalls.h (hinfo): Add execable_p.
14758
14759 Fri Sep 22 13:47:27 1995 Doug Evans <dje@canuck.cygnus.com>
14760
14761 * configure.in (cfg-ml-com.in invocation): Use ${with_multilib_top}
14762 if defined.
14763 (cfg-ml-pos.in invocation): Likewise.
14764
14765 Fri Sep 22 11:43:44 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14766
14767 * Makefile.in (MATHOBJS_IN_LIBC): Added s_isinf.o, sf_isinf.o,
14768 s_isnan.o and sf_isnan.o.
14769
14770 Wed Sep 20 14:50:19 1995 Ian Lance Taylor <ian@cygnus.com>
14771
14772 * All Makefile.in files: added maintainer-clean target as a
14773 synonym for realclean.
14774
14775 Wed Sep 20 11:02:50 1995 Jeff Law (law@snake.cs.utah.edu)
14776
14777 * libc/include/machine/setjmp.h: Add hppa support.
14778 * libc/machine/hppa/setjmp.S: New file with setjmp/longjmp
14779 support.
14780 * libc/machine/hppa/Makefile.in: Related changes.
14781
14782 Tue Sep 19 12:09:01 1995 J.T. Conklin <jtc@blues.cygnus.com>
14783
14784 * configure.in (machine_dir): Don't set for v810-*-*.
14785
14786 Fri Sep 15 20:22:08 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14787
14788 * libc/sys/win32/crt0.c (passover): Change to handle MKS quoting
14789 conventions correctly.
14790
14791 Thu Sep 14 13:37:22 1995 J.T. Conklin <jtc@blues.cygnus.com>
14792
14793 * libc/stdio/puts.c: Update documentation of return value to match
14794 ANSI standard.
14795
14796 Thu Sep 14 01:52:37 1995 Doug Evans <dje@canuck.cygnus.com>
14797
14798 Fix file descriptor inheritance.
14799 * libc/sys/win32/syscalls.h (CHILD_P): Define again.
14800 (NOT_OPEN_FD): Fix.
14801 * libc/sys/win32/spawn.c (vfork0): Only create inheritable handle if
14802 close-on-exec flag not set. Initialize child's entire fd table.
14803 * libc/sys/win32/syscalls.c (_open): Only create inheritable handle if
14804 CHILD_P.
14805 * libc/sys/win32/pipe.c (pipe): Only create new handle as inheritable
14806 if CHILD_P. Initialize entire hmap entry.
14807 (dup): Only create new handle as inheritable if CHILD_P.
14808 (dup2): Likewise. Properly initialize hmap entry.
14809
14810 * libc/sys/win32/spawn.c (_execve): Don't pass _P_SEARCH_PATH to
14811 _spawn.
14812 (_exit): Use CHILD_P.
14813 * libc/sys/win32/syscalls.c (_fstat): Fix call to memset.
14814 (_stat): Likewise.
14815
14816 Mon Sep 11 23:09:39 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14817
14818 * libc/sys/win32/crt0.c (passover): fix up the state table.
14819 * libc/posix/popen.c: Added.
14820 * libc/posix/Makefile.in: compile popen.c.
14821
14822 Mon Sep 11 11:43:38 1995 J.T. Conklin <jtc@cygnus.com>
14823
14824 * libc/include/machine/ieeefp.h: On the h8/300, h8/300h and
14825 h8/500 define _DOUBLE_IS_32BITS.
14826
14827 Sat Sep 9 17:55:54 1995 Doug Evans <dje@canuck.cygnus.com>
14828
14829 Get vfork/exec/spawn/cwait/wait working again.
14830 * libc/sys/win32/syscalls.h (VFORK_NEWBORN_PSEUDO_PID): Define.
14831 (procinfo): New member vfork_level.
14832 * libc/sys/win32/crt0.c (__vfork_next_pid): Delete.
14833 (vfork_init_first): Use GetCurrentProcessId to get pid.
14834 Initialize vfork_level.
14835 (vfork_init): Delete __PID__.
14836 (environ_init): New function. Undo patch of Aug 19, Posix says
14837 environment variables are case sensitive.
14838 (mainCRTStartup): Call it.
14839 * libc/sys/win32/spawn.c (__vfork_next_pid): Delete.
14840 (my_longjump: Make static.
14841 (_spawn): New argument `h'. Delete setting of __PID__.
14842 Delete local `idx'. Look for chars that need quotes, rather than
14843 ones that don't. Set handle of created process in `h'.
14844 Result is process id if created task.
14845 (allocate_spawn_entry): New function.
14846 (spawnvp, spawnv): Call it. Store handle and pid in procinfo entry.
14847 (_execve): Set __FD_TABLE__ before spawning child.
14848 Scan our fd table when passing fds, not our parent's.
14849 Store handle and pid in procinfo entry.
14850 (vfork0): Ensure strace message always printed.
14851 Set child pid to VFORK_NEWBORN_PSEUDO_PID.
14852 (vfork): Don't clobber result of vfork0.
14853 * libc/sys/win32/wait.c (cwait): Fix non-error result (is pid).
14854 (wait_for_any): Ignore processes in state FORK_STATE_VFORK_0.
14855
14856 * libc/sys/win32/syscalls.h (procinfo): New members `handle_valid_p'
14857 and `exit_code'.
14858 * libc/sys/win32/spawn.c (allocate_spawn_entry): Initialize them.
14859 (vfork0): Likewise. Distinguish children, grandchildren, etc. by
14860 adding vfork level to pseudo-pid.
14861 (vfork1): If not root, set state back to FORK_STATE_VFORK_0.
14862 (spawnvp, spawnv, _execve): Set handle_valid_p if success.
14863 (_exit): If child, set exit code.
14864 (__vfork_record_death): Only close process handle if valid.
14865 * libc/sys/win32/wait.c (wait_for_single): Watch for children that
14866 didn't exec.
14867 (wait_for_any): Likewise. Start scan after root entry.
14868
14869 Fri Sep 8 18:48:02 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14870
14871 * libc/include/sys/types.h (off_t): off_t back to 32 bits.
14872 * libc/include/sys/_types.h (_off_t): _off_t back to 32 bits.
14873 * libc/sys/win32/syscalls.c (_fstat): st_size is lower 32-bits
14874 of actual file length.
14875
14876 * libc/sys/win32/sys/wait.h: include <sys/types.h>.
14877 * libc/include/paths.h: _PATH_BSHELL added.
14878 * libc/include/sys/unistd.h: define STDIN_FILENO, STDOUT_FILENO,
14879 and STDERR_FILENO.
14880
14881 Thu Sep 7 21:02:22 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14882
14883 * libc/include/ar.h: Added.
14884 * libc/include/sys/types.h: ino_t goes back to 32-bits.
14885 * libc/sys/win32/syscalls.h (hinfo): added .namehash field.
14886 * libc/sys/win32/syscalls.c (_open): compute .namehash based
14887 on filename.
14888 (_fstat): use .namehash for inode number of the fd.
14889
14890 Thu Sep 7 12:57:19 1995 steve chamberlain <sac@slash.cygnus.com>
14891
14892 * libc/sys/win32/{console,ioctl,pipe,spawn,syscalls,wait}.? (*):
14893 Change hinfo to __this_procinfo.
14894 * libc/sys/win32/crt0.c: Remove procinfo_list.
14895
14896 Wed Sep 6 18:38:26 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14897
14898 * libc/include/sys/types.h (ino_t): Define ino_t correctly for
14899 win32 environment.
14900
14901 Wed Sep 6 18:09:29 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14902
14903 * libc/sys/win32/include/grp.h: Removed.
14904 * libc/sys/include/grp.h: Added.
14905 * libc/sys/win32/grp.c: Include <grp.h>.
14906
14907 Wed Sep 6 16:52:48 1995 steve chamberlain <sac@slash.cygnus.com>
14908
14909 * libc/include/sys/signal.h (__need_MAX_SIGNALS): Removed.
14910 (sigset_t, sigaction, SIG_SETMASK, SIG_BLOCK, SIG_UNBLOCK):
14911 Defined for all but strict ANSI.
14912 * libc/include/sys/reent.h (__need_MAX_SIGNALS): Removed.
14913 * libc/include/machine/setjmp.h: Get win32 _JBLEN right.
14914 * libc/signal/signal.c (_signal_r): Changed from using
14915 _MAX_SIGNALS to NSIG.
14916 * libc/sys/win32/crt0.c (__current_pid, __parent_hmap, __child_hmap,
14917 __hmap): Deleted.
14918 (__strace, __vfork_next_pid): New.
14919 (__exe_suffix): Default to 1.
14920 (passover, table): Understand quoted arguments.
14921 (vfork_init_first): New.
14922 (vfork_init): Initialize new process structure.
14923 (mainCRTStartup): Pass environ to main.
14924 * exceptions.c (__sig_mask): New
14925 (ehandler3): Ignore signals in mask.
14926 (really_exit): Remove CHILD_P test.
14927 * pipe.c (pipe, dup, dup2): Use new process and file structure.
14928 * resource.c (getrusage): Ditto.
14929 * signal.c (sigprocmask): New.
14930 * spawn.c (*): Rewritten.
14931 * syscalls.c (*): Use new process and file structure.
14932 (find_unused_handle): New.
14933 * syscalls.h (MAX_HANDLES): Deleted.
14934 (hinfo): Removed child_created_p.
14935 (MAX_CHILDREN): Deleted.
14936 (vfork_jmp_info, procinfo): New.
14937 * wait.c (*): Mostly new.
14938 * sys/strace.h (_STRACE_PARANOID): New.
14939 * sys/param.h: New file.
14940
14941 Wed Sep 6 17:03:53 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14942
14943 * libc/include/sys/stat.h: add S_BLKSIZE.
14944 * libc/include/sys/_types.h: _off_t is a 64-bit type under win32.
14945 * libc/include/sys/types.h: define off_t and ino_t to be 64 bit
14946 types under win32.
14947 (mode_t): add a #else to avoid multiple definitons.
14948
14949 * libc/sys/win32/Makefile.in: add grp.c.
14950 * libc/sys/win32/grp.c: include grp.h correctly.
14951 * libc/sys/win32/syscalls.c (_fstat): set almost all of the fields
14952 of the st structure with real information.
14953 * libc/sys/win32 (dirent): d_ino is of type ino_t.
14954
14955 Wed Sep 6 10:41:34 1995 Doug Evans <dje@canuck.cygnus.com>
14956
14957 * libc/include/sys/types.h (mode_t): Correct for svr4 sparc's
14958 and (maybe) sparc64.
14959 (nlink_t): Provide typedef.
14960
14961 Tue Sep 5 18:46:05 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14962
14963 * libc/sys/win32/grp.c: New file.
14964 * libc/sys/win32/include/grp.h: New file.
14965
14966 Tue Sep 5 13:47:27 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14967
14968 * libc/include/machine/ieeefp.h: Added whitespace to make this
14969 file easier to maintain.
14970 On the sh, define either __IEEE_BIG_ENDIAN or __IEEE_LITTLE_ENDIAN
14971 depending on the value of __LITTLE_ENDIAN__.
14972 On the sh3e, define _DOUBLE_IS_32BITS.
14973
14974 Fri Sep 1 15:35:18 1995 James G. Smith <jsmith@beauty.cygnus.com>
14975
14976 * libc/sys/vr4300/syscalls.c: Added missing support
14977 routines. _raise() and getpid().
14978
14979 Fri Sep 1 14:12:48 1995 James G. Smith <jsmith@rtl.cygnus.com>
14980
14981 * configure.in (mips*vr4300*-*-elf): Fixed silly mistake
14982
14983 Fri Sep 1 08:42:11 1995 James G. Smith <jsmith@beauty.cygnus.com>
14984
14985 * configure.in (mips*vr4300*-idt-*) Add support for RISQ monitor
14986 and VR4300 processor.
14987 * libc/sys/vr4300: Add directory.
14988 * libc/sys/vr4300/{Makefile.in, crt0.S, syscalls.c}: Add SIM
14989 monitor run-time support.
14990
14991 Thu Aug 31 09:16:52 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14992
14993 * libc/stdlib/Makefile.in (CHEWOUT_FILES): Removed atol.def.
14994 * libc/stdlib/stdlib.tex: Don't include atol.def.
14995
14996 Wed Aug 30 20:38:28 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14997
14998 * libc/sys/win32/uname.c (uname): hardcode processor as `i386'.
14999
15000 Wed Aug 30 10:48:08 1995 steve chamberlain <sac@slash.cygnus.com>
15001
15002 * libc/ctype/Makefile.in: Fill in _to* dependencies.
15003
15004 Tue Aug 29 17:14:29 1995 steve chamberlain <sac@slash.cygnus.com>
15005
15006 * libc/sys/win32/{dirsearch.c,sys/dirent.h}: Fix namespace problems.
15007 * libc/sys/win32/sys/dirent.h (struct dirent): Added d_ino.
15008 * libc/sys/win32/strace.c (__sys_printf): Increase size of buffer.
15009 * libc/sys/win32/smallprint.c (__small_vsprintf): Remove debug.
15010 * libc/sys/win32/dirsearch.c (readdir): Set d_ino.
15011
15012 Tue Aug 29 19:00:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
15013
15014 * libc/stdlib/atol.c (atol): DEFUN -> _DEFUN.
15015
15016 Tue Aug 29 16:08:09 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15017
15018 * libc/stdlib/Makefile.in (OFILES): Added atoff.o and atol.o.
15019 * libc/stdlib/atoff.c: New file.
15020 * libc/stdlib/atof.c (atoff): Moved to atoff.c.
15021 * libc/stdlib/atoi.c (atol): Removed.
15022 * libc/stdlib/atol.c: Removed duplicate documentation.
15023
15024 * libc/include/ctype.h (_tolower, _toupper): Moved inside
15025 #ifndef _STRICT_ANSI conditional.
15026 * libc/ctype/Makefile.in (OFILES): Added _tolower.o and _toupper.o
15027 * libc/ctype/_tolower.c: New file.
15028 * libc/ctype/_toupper.c: New file.
15029 * libc/ctype/tolower.c (_tolower): Moved to _tolower.c.
15030 * libc/ctype/toupper.c (_toupper): Moved to _toupper.c.
15031 * libc/ctype/toascii.c (_toascii): Removed.
15032
15033 Tue Aug 29 12:17:32 1995 Doug Evans <dje@canuck.cygnus.com>
15034
15035 * libc/sys/sparc64/sys/types.h: Deleted.
15036
15037 Mon Aug 28 22:06:08 1995 Jason Molenda (crash@phydeaux.cygnus.com)
15038
15039 * libc/sys/win32/uname.c (uname): change `Windows/NT' to `Windows_NT'
15040 and recognize Windows_95 systems.
15041
15042 Mon Aug 28 19:50:54 1995 Jason Molenda (crash@phydeaux.cygnus.com)
15043
15044 * libc/sys/win32/crt0.c (vfork_init, hmap_init): standard I/O fds
15045 and passed fds should be opened in text mode.
15046
15047 Mon Aug 28 18:51:22 1995 Jason Molenda (crash@phydeaux.cygnus.com)
15048
15049 * libc/sys/win32/crt0.c (vfork_init): mark passed fds as used
15050 in __hmap, set to binary mode by default.
15051
15052 Tue Aug 22 14:12:37 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15053
15054 * libc/sys/sh/syscalls.c: Updated all functions to call __trap34.
15055 * libc/sys/sh/trap.S (__trap34): Renamed from __trap3. Use trap
15056 vector 34.
15057
15058 Sat Aug 19 18:25:37 1995 steve chamberlain <sac@slash.cygnus.com>
15059
15060 * Makefile.in (install): Install all libraries found in the
15061 top level. If there's a sys/<type>/include directory,
15062 install those headers into include.
15063
15064 * libc/sys/win32/kernel.def351: Delete
15065 * libc/sys/win32/{comctl32.def, comdlg32.def, ctl3d32.def,
15066 glaux.def, glu32.def, largeint.def, libc.def, libcmt.def,
15067 lz32.def, mgmtapi.def, mpr.def, msacm32.def, msvcrt.def,
15068 nddeapi.def, netapi32.def, odbc32.def, odbccp32.def, oldnames.def,
15069 ole32.def, oleaut32.def, opengl32.def, rasapi32.def, rpcndr.def,
15070 rpcns4.def, rpcrt4.def, scrnsave.def, shell32.def, snmp.def,
15071 uuid.def, vdmdbg.def, version.def, vfw32.def, win32spl.def,
15072 winmm.def, winspool.def, winstrm.def, wsock32.def}: New.
15073
15074 * libc/sys/win32/Makefile.in: Update for new files and new dlltool options.
15075 * libc/sys/win32/crt0.c: Force all env names to upper case.
15076 * libc/sys/win32/sys/win*.h -> libc/sys/win32/include
15077 * libc/sys/win32/*.c: Headers have moved.
15078 * libs/sys/win32/*.[ch]: Test for open_p rather than BAD_HANDLE,
15079 __vfork_child_idx is now __vfork_child_ptr.
15080
15081 * posix/execvp (execvp): Don't crash if no PATH envname.
15082
15083 Fri Aug 18 12:22:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15084
15085 * libc/include/sys/reent.h (_Bigint): Removed _reclaim field.
15086 * libc/reent/reent.c (_reclaim_reent): Free Bigint's by going
15087 through the _freelist instead of through the _reclaim list.
15088 * libc/stdlib/mprec.c (_Balloc): Don't put new node on _reclaim list.
15089 * libc/stdlib/mprec.c (_Bcopy): Make like version in master dtoa.c
15090 sources.
15091
15092 Thu Aug 17 11:03:27 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15093
15094 * libc/machine/h8500/setjmp.S: New file.
15095 * libc/include/machine/setjmp.h: Updated for H8/500.
15096
15097 Wed Aug 16 16:19:11 1995 steve chamberlain <sac@slash.cygnus.com>
15098
15099 * libc/sys/win32/syscalls.c (_open): More stracing.
15100 (_stat): Open the file in O_BINARY.
15101
15102 Wed Aug 16 15:49:01 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15103
15104 * libc/machine/h8300/setjmp.S: New file.
15105 * libc/include/machine/setjmp.h: Updated for H8/300 and H8/300H.
15106
15107 Tue Aug 15 10:31:09 1995 Doug Evans <dje@canuck.cygnus.com>
15108
15109 * libc/sys/win32/crt0.c (__exe_suffix): New global.
15110 (mainCRTStartup): Set __exe_suffix from LIBC_EXE_SUFFIX.
15111 * libc/sys/win32/spawn.c (_spawn): Add .exe suffix based on
15112 __exe_suffix. Free fd_tab after setting env variable.
15113 (spawnv,_execve): Update.
15114 * libc/sys/win32/syscalls.h (__exe_suffix): Declare.
15115 * libc/sys/win32/smallprint.c (puts,putn): New (static) functions.
15116 (__small_vfprintf): New function.
15117 * libc/sys/win32/strace.c (__sys_printf): Call __small_vfprintf.
15118 * libc/sys/win32/wait.c (cwait): Validate argument.
15119
15120 * libc/sys/win32/syscalls.c (queue_file_deletion): Add trace message.
15121 (process_deletion_queue): Likewise.
15122
15123 * libc/sys/win32/Makefile.in (lib.a): Don't call $(RANLIB).
15124
15125 Mon Aug 14 10:14:10 1995 steve chamberlain <sac@slash.cygnus.com>
15126
15127 * libc/sys/win32: Copyrights and gratuitous indenting.
15128
15129 Mon Aug 14 01:32:58 1995 Doug Evans <dje@canuck.cygnus.com>
15130
15131 * libc/sys/win32/syscalls.c (queue_file_deletion): Finish.
15132 (process_deletion_queue): Likewise.
15133 (__close_all_files): New function.
15134 (_close): Only queue file deletion if really a file.
15135 * libc/sys/win32/spawn.c (_spawn): Only ensure .exe suffix if
15136 _P_APPEND_EXE.
15137 (_exit): Call __close_all_files.
15138
15139 * libc/stdlib/system.c: #include <errno.h>.
15140 (_system_r): Fix results in -DNO_EXEC case.
15141
15142 * libc/sys/win32/sys/dirent.h (DIR): New member __d_dirname.
15143 Reorganize structure.
15144 * libc/sys/win32/dirsearch.c (opendir): Use stat to determine
15145 if argument is valid. Save directory name in DIR. malloc space
15146 for dirent struct separately.
15147 * libc/sys/win32/syscalls.c (stat): Fix test for directory.
15148
15149 * libc/include/errno.h (ENAMETOOLONG): Define.
15150 * libc/string/strerror.c (strerror): Reword ENFILE.
15151 Add ENOSYS, ENMFILE, ENOTEMPTY, ENAMETOOLONG.
15152
15153 Sun Aug 13 22:42:25 1995 Doug Evans <dje@canuck.cygnus.com>
15154
15155 * libc/sys/win32/crt0.c (__progname): New global.
15156 (mainCRTStartup): Support strace=bitmask,filename.
15157 * libc/sys/win32/dirsearch.c (all fns): Add trace messages.
15158 * libc/sys/win32/syscalls.c (_write): Print parent trace message
15159 if error.
15160 (getcwd): Handle len too small. Convert '\\' to '/'.
15161 * libc/sys/win32/sys/fcntl.h (O_RDWR): = O_RDONLY|O_WRONLY.
15162 Add prototypes for open, creat, fcntl.
15163 (O_APPEND): Change value to conform to Microsoft's value.
15164 * libc/sys/win32/sys/strace.h (_STRACE): Protect in do/while.
15165
15166 * libc/stdlib/getopt.c: New file.
15167 * libc/stdlib/Makefile.in: Build it.
15168
15169 Sat Aug 12 12:17:14 1995 Doug Evans <dje@canuck.cygnus.com>
15170
15171 * libc/posix/execvp.c (execvp): Watch for DOS drives ifdef _WIN32.
15172 Fix scanning of $PATH.
15173 * libc/posix/exec*.c: Call _execve, not execve.
15174 * libc/posix/execve.c: New file.
15175 * libc/posix/Makefile.in (OFILES): Add execve.o.
15176
15177 * libc/sys/win32/sys/strace.h (_STRACE_ALL, _STRACE_UHOH,
15178 _STRACE_STARTUP, _STRACE_SYSCALL): More bit masks of things to trace.
15179 (_STRACE): If level==0, always print. Handle new bit mask scheme.
15180 * libc/sys/win32/crt0.c: Update _STRACE calls.
15181 * libc/sys/win32/{pipe.c,resource.c,spawn.c,syscalls.c,wait.c}: Ditto.
15182
15183 * libc/sys/win32/smallprint.c (rn): Fix digit list.
15184
15185 * libc/sys/win32/syscalls.c (__really_exit): Move from here,
15186 * libc/sys/win32/exceptions.c (really_exit): to here. Avoid recursion.
15187 * libc/sys/win32/spawn.c (spawnvp): Pass `prog' as image name.
15188 Print __seterrno trace message first.
15189 (_execve): Renamed from execve.
15190 (vfork): Update __strace usage.
15191 (__vfork_child_pid): Deleted.
15192 (__vfork_children, __vfork_child_idx): New globals.
15193 (_spawnvp): New function.
15194 (spawnvp, spawnv, _execve): Call _spawnvp.
15195 (init_child): Record child in __vfork_children.
15196 (__vfork_get_entry, __vfork_record_death): New functions.
15197 * libc/sys/win32/crt0.c (mainCRTStartup): Initialize __vfork_children.
15198 * libc/sys/win32/kernel32.def (WaitForMultipleObjects): Define.
15199 * libc/sys/win32/syscalls.h (CHILD_P): New macro. All files updated.
15200 (MAX_CHILDREN, CHILD_INTERIM_PID): Define.
15201 (children): New typedef.
15202 (__vfork_children,__vfork_child_idx): Declare.
15203 (__vfork_get_entry,__vfork_record_death): Declare.
15204 * libc/sys/win32/wait.c (wait_for_single,wait_for_any): New functions.
15205 (waitpid): Handle pid == -1.
15206 * libc/sys/win32/sys/wintypes.h (WaitForMultipleObjects): Declare.
15207 * configure.in (i386-win32): Add -DNO_FORK.
15208 * libc/syscalls/sysfork.c (fork): Don't define for NO_FORK.
15209 * libc/reent/execr.c (_fork_r): Likewise.
15210 * libc/stdlib/system.c (do_system): New function.
15211 If WIN32, try to get shell path from $SH_PATH, use vfork.
15212 (_system_r): Return 1 for (s == NULL) if WIN32 or unix,
15213 otherwise return 0.
15214
15215 Sat Aug 12 11:08:00 1995 steve chamberlain <sac@slash.cygnus.com>
15216
15217 * libc/stdlib/{mallocr.c, mstats.c}: Move mstats from mallocr to mstats.c.
15218 * libc/sys/win32/fcntl.h: Don't include self.
15219 * libc/sys/win32/sys/strace.h (_STRACE_WM, _strace_wm): New.
15220 * libc/sys/win32/sys/winbase.h: (GetUserName) New.
15221 * libc/sys/win32/sys/wincon.h (HANDLER_ROUTINE): Define correctly.
15222 * libc/sys/win32/sys/wintypes.h (GetFileType, GetCurrentProcess, CloseHandle,
15223 SetFilePointer, CreateFileA, GetFileInformationByHandle, GetStdHandle):
15224 Correct prototypes.
15225 * libc/sys/win32/strace.c: New file.
15226 * libc/sys/win32/smallprint.c: New file.
15227 * libc/sys/win32/crt0.c (func): Delete.
15228 (mainCRTStartup): Fix alloca usage. Set handles explictly.
15229 * libc/sys/win32/dirsearch.c: Clean up handle usage, fix calls to __seterrno.
15230 * libc/sys/win32/exceptions.c: Lint.
15231 * libc/sys/win32/{ioctl.c, pipe.c, resource.c, spawn.c, cwait.c, syscalls.c}:
15232 Clean up handle usage.
15233 * libc/sys/win32/syscalls.c (__sys_printf): Moved into strace.c
15234 (open.c): Default file type is text.
15235 * libc/sys/win32/uname.c (uname): Use __small_sprintf.
15236 * libc/sys/win32/advapi32.def: New
15237
15238 Fri Aug 11 17:11:52 1995 Doug Evans <dje@canuck.cygnus.com>
15239
15240 * configure.in (posix_dir, libc_posix_lib): New variables.
15241 Define LIBC_POSIX_LIB in makefile to be $libc_posix_lib.
15242 (i[345]86-*-win32): Define posix_dir.
15243 Delete -DNO_EXEC. Define -DHAVE_OPENDIR.
15244 (if unix_dir): Fix typo.
15245 * libc/posix/{Makefile.in,closedir,opendir,readdir,rewinddir,
15246 scandir,seekdir,telldir}: New files.
15247 * libc/posix/{execl.c,execle.c,execlp.c,execv.c,execvp.c}: Move here
15248 from libc/unix.
15249 * libc/Makefile.in (LIBC_POSIX_LIB): Define.
15250 (SUBDIRS): Add posix.
15251 (SUBLIBS): Add $(LIBC_POSIX_LIB).
15252
15253 * libc/include/sys/signal.h (SIGCHLD): Add for _WIN32.
15254 (NSIG): Increase to 21.
15255 * libc/include/sys/unistd.h (pid_t): Move from here,
15256 * libc/include/sys/types.h (pid_t): to here.
15257
15258 * libc/sys/win32/syscalls.h: #include "sys/strace.h".
15259 (__ptrace): Delete.
15260 (hinfo): New members close_exec_p, child_created_p.
15261 (struct exception_list): Define.
15262 (__hmap): Redefine as pointer to table.
15263 (__parent_hmap, __child_hmap): New globals.
15264 (__set_errno, __really_exit): Declare.
15265 (__vfork_child_pid): Declare.
15266 * libc/sys/win32/crt0.c (__strace, __trace_file): New global.
15267 (__orig_stdin, __orig_stdout, __orig_stderr): New globals.
15268 (__parent_hmap, __child_hmap): New globals.
15269 (__hmap): Redefine as pointer to active map.
15270 (__get_console): New function.
15271 (mainCRTStartup): Change leading '=' in environ vars to '!'.
15272 (env __FD_TABLE__): Watch for this and initialize our fd/handle
15273 mapping table from it if defined.
15274 (argv, envp): Dump if __strace >= 4.
15275 (main): Call here.
15276 * libc/sys/win32/exceptions.c (myp): Redefine.
15277 (__syscalls_b): Delete.
15278 (__stack_trace): New function.
15279 (ehandler3): Update to use _STRACE. Print stack trace.
15280 Call __really_exit instead of exit.
15281 (init_exceptions): Delete args argc,argv. New arg mine.
15282 * libc/sys/win32/kernel32.def (CreatePipe, DuplicateHandle, FindClose,
15283 FindFirstFileA, FindNextFileA, GetComputerNameA,
15284 GetEnvironmentVariableA, ReadFile, SetEnvironmentVariableA): Define.
15285 * libc/sys/win32/signal.c (signal): Validate arg.
15286 (alarm, sleep): Define as stubs for now.
15287 * libc/sys/win32/syscalls.c (all fns): Update to use _STRACE.
15288 (__syscalls_b, errno): Delete.
15289 (__vfork_child_pid, __vfork_jmp_buf): New globals.
15290 (__seterrno): Handle more errors.
15291 (__sys_printf): Renamed from _ptrace.
15292 (__really_exit): New function.
15293 (queue_file_deletion, process_deletion_queue): New functions.
15294 (__resume_parent): New function.
15295 (_unlink): Handle trying to delete open file.
15296 (__totime_t): Renamed from totime_t.
15297 (setsid, __read, __write): New functions.
15298 (cwait, spawnvp, R, D, getrusage, _execve, _fork, _wait): Delete.
15299 * libc/sys/win32/{dirsearch.c,getlogin.c,misc.c,resource.c,passwd.c,
15300 times.c,spawn.c,pipe.c,wait.c,termios.c,ioctl.c,uname.c}: New files.
15301 * libc/sys/win32/console.c: Update to new definition of __hmap.
15302 * libc/sys/win32/Makefile.in: Build new files.
15303 * libc/sys/win32/sys/{dirent.h,winerror.h,wait.h,termios.h}: New files.
15304 * libc/sys/win32/sys/{ioctl.h,utsname.h}: New files.
15305 * libc/sys/win32/sys/strace.h: Renamed from ptrace.h.
15306 * libc/sys/win32/sys/wintypes.h (GetCurrentDirectoryA): Fix prototype.
15307
15308 Thu Aug 10 16:32:52 1995 Doug Evans <dje@canuck.cygnus.com>
15309
15310 * libc/sys/h8500hms/misc.c (kill): Handle SIGABRT.
15311
15312 Thu Aug 10 12:07:38 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15313
15314 * libc/stdlib/{dtoa.c, strtod.c}: Merged assorted changes that
15315 have been made to the master dtoa.c sources (from netlib.att.com)
15316 since they were integrated into newlib in early 1992. Fixes
15317 problems with storage leaks and handling of numbers with very
15318 negative exponents.
15319
15320 Wed Aug 9 14:18:39 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15321
15322 * Makefile.in (all): set rootpre and srcrootpre before calling
15323 sub-makes.
15324
15325 Tue Aug 8 17:20:45 1995 steve chamberlain <sac@slash.cygnus.com>
15326
15327 * libc/sys/win32/crt0.c: Change __hmap usage.
15328 * libc/sys/win32/exceptions.c: Use _ptrace call.
15329 * libc/sys/win32/syscalls.c: Use _ptrace call.
15330 (read, write): Cope with DOS style CRLF when in TEXT mode.
15331 * libc/sys/win32/syscalls.h: Declare hinfo struct.
15332 * libc/sys/win32/user32.def: Get DefWindowProc arg list right.
15333 * libc/sys/win32/sys/fcntl.h, ptrace.h: New.
15334 * libc/sys/win32/sys/windows.h: Fill in rest of messages.
15335 * libc/sys/win32/sys/wintypes.h: Fix attribute syntax.
15336
15337 Mon Aug 7 13:04:54 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15338
15339 * libc/include/math.h (cabs, cabsf, drem, dremf): New declarations.
15340
15341 * libm/math/{w_cabs.c, wf_cabs.c, w_drem.c, wf_drem.c}: New files,
15342 wrappers for hypot() and remainder() for BSD libm compatibility.
15343 These are public domain implementations written by me for the
15344 NetBSD libm some time ago. Note cabs() is required by ucbtest.
15345 * libm/math/Makefile.in (obj): Added w_cabs.o and w_drem.o.
15346 (fobj): Added wf_cabs.o and wf_drem.o.
15347
15348 Thu Aug 3 08:13:05 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15349
15350 * libc/sys/h8500hms/misc.c: New file.
15351 * libc/sys/h8500hms/Makefile.in (OFILES): Add misc.o.
15352
15353 Wed Aug 2 16:46:27 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15354
15355 * libc/time/localtime.c (localtime): Fix problem with leap year
15356 handling. Stole algorithm from Arthur David Olson's tz code.
15357
15358 Mon Jul 31 10:21:54 1995 steve chamberlain <sac@slash.cygnus.com>
15359
15360 * configure.in: (z8k-*sim): Renamed z8k-*-coff.
15361
15362 * libc/sys/z8ksim/glue.c (_getpid, _kill): New
15363 (_exit): Use argument.
15364
15365 Fri Jul 28 15:17:04 1995 Doug Evans <dje@canuck.cygnus.com>
15366
15367 * libc/sys/win32/sys/winbase.h (_WINBASE_H): Define.
15368
15369 Wed Jul 26 16:24:19 1995 steve chamberlain <sac@slash.cygnus.com>
15370
15371 * libc/sys/sh/trap.S (perrno): Align correctly. (pr 7532)
15372
15373 Mon Jul 24 13:42:52 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15374
15375 * configure.in (sparc*): Add -DMALLOC_ALIGNMENT=8 to
15376 target_cflags.
15377
15378 Mon Jul 24 11:42:07 1995 steve chamberlain <sac@slash.cygnus.com>
15379
15380 * libc/sys/win32/crt0.c (mainCRTStartup): Look for
15381 ptrace with case insensitivity
15382 * libc/sys/win32/{user32.def, gdi32.def, exceptions.c, screen.c,
15383 sys/winbase.h, sys/windows.h, sys/wintypes.h, sys/winuser.h}:
15384 New files.
15385
15386 Fri Jul 21 11:22:26 1995 Doug Evans <dje@canuck.cygnus.com>
15387
15388 * Makefile.in: Multilib support moved to ../cfg-ml-{com,pos}.in.
15389 (MULTITOP, MULTIDIRS, MULTISUBDIR, MULTIDO, MULTICLEAN): New variables.
15390 (all, install, *clean): Use new multilib support.
15391 * configure.in: Multilib support moved to ../cfg-ml-{com,pos}.in.
15392
15393 Fri Jul 21 07:11:42 1995 steve chamberlain <sac@slash.cygnus.com>
15394
15395 * libc/include/sys/signal.h (__WIN32__): New.
15396
15397 * configure.in (i386-*-win32): Remobe SBRK_IS_ALLOC.
15398
15399 * libc/stdlib/mprec.c (Balloc): Fix trampling problem.
15400 (ulp, b2d): Handle 32 bit doubles.
15401 * libc/stdlib/mprec.h: Handle 32 bit doubles.
15402 * libc/stdlib/strtod.c (_strtod_r): Ditto.
15403
15404 Fri Jul 14 08:24:58 1995 steve chamberlain <sac@slash.cygnus.com>
15405
15406 from medp@primag.co.uk:
15407 * libc/stdio/setvbuf.c (setvbuf): Fix line buffering on
15408 dynamically allocated buffers.
15409
15410 Thu Jul 20 10:11:03 1995 Fred Fish <fnf@fishbowl>
15411
15412 * libc/include/sys/unistd.h (_exit): Add _ATTRIBUTE ((noreturn)).
15413 * libc/stdlib/exit.c (unistd.h): Include to pick up _exit() declaration.
15414
15415 Thu Jul 20 10:16:25 1995 Michael Meissner <meissner@tiktok.cygnus.com>
15416
15417 * configure.in (powerpc): Fix previous fix.
15418
15419 Wed Jul 19 14:08:55 1995 Michael Meissner <meissner@tiktok.cygnus.com>
15420
15421 * configure.in (powerpc-*eabiaix*): Update PowerPC multilib
15422 directories for this target.
15423
15424 Wed Jul 19 00:34:30 1995 Jeffrey A. Law <law@rtl.cygnus.com>
15425
15426 * configure.in (hppa): Add machine_dir definition.
15427 * libc/machine/hppa: New directory with PA specific implementations
15428 of the basic memory/string functions.
15429
15430 Tue Jul 18 21:16:00 1995 Michael Meissner <meissner@tiktok.cygnus.com>
15431
15432 * configure.in: Update current PowerPC multilib directories.
15433 Split big and little endian configurations.
15434
15435 Tue Jul 18 11:55:33 1995 Ian Lance Taylor <ian@cygnus.com>
15436
15437 * configure.in: Add --enable-single-float option to configure to
15438 control use of MIPS single-float directories. Default to yes.
15439
15440 * Makefile.in (all): Don't recurse into multilib directory if it
15441 does not exist.
15442
15443 Mon Jul 17 15:51:30 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15444
15445 * libc/sys/sh/syscalls.c: Fix typo.
15446
15447 Mon Jul 3 14:38:52 1995 Steve Chamberlain <sac@slash.cygnus.com>
15448
15449 * Makefile.in, libc/Makefile.in, libc/sys/Makefile.in:
15450 Pass down DLLTOOL.
15451 * libc/include/process.h: Define WAIT_CHILD.
15452 * libc/include/types.h: Get sizes right for win32.
15453 * configure.in (i386-*-pe): Becomes i386-win32.
15454 * libc/sys/win32/{crt0.c, kernel32.def, longjmp.c, setjmp.c, syscalls.c
15455 wintypes.h,sys/file.h,sys/resource.h}: Second pass.
15456 * libc/stdlib/mallocr.c: Don't round up memory block if SBRK_IS_ALLOC
15457 is defined.
15458
15459 Wed Jun 28 18:34:54 1995 Steve Chamberlain <sac@slash.cygnus.com>
15460
15461 * configure.in (i[345]86-*-pe): New target (NT).
15462 * host/any: DLLTOOL new.
15463 * libc/sys/win32/{crt0.c, kernel32.def, longjmp.c, setjmp.c, syscalls.c
15464 wintypes.h,sys/file.h,sys/resource.h}: Preliminary support for
15465 WIN32 (just enough to cross host the comp-tools).
15466
15467 Thu Jun 22 11:45:18 1995 Doug Evans <dje@canuck.cygnus.com>
15468
15469 * libc/machine/h8300/{cmpsi.S,ucmpsi.S,divhi3.S,mulhi3.S,mulsi3.S}:
15470 Deleted. These files live in gcc/config/h8300/lib1funcs.asm now.
15471
15472 Mon Jun 19 11:40:40 1995 Doug Evans <dje@canuck.cygnus.com>
15473
15474 * libc/include/machine/ieeefp.h (arm): Change to always be
15475 __IEEE_BIG_ENDIAN (even on little endian ARM's).
15476
15477 Thu Jun 8 14:22:28 1995 Steve Chamberlain <sac@slash.cygnus.com>
15478
15479 * libc/sys/crt0.S: Initialze sp, and call exit after main.
15480 * libc/sys/syscalls.c (abort): New.
15481 * configure.in (arm): Define ABORT_PROVIDED.
15482
15483 Wed Jun 7 14:04:35 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15484
15485 * configure.in (powerpc): Define multidirs.
15486
15487 Mon Jun 5 16:10:13 1995 Doug Evans <dje@canuck.cygnus.com>
15488
15489 * libc/sys/arm/crt0.S: Add __USER_LABEL_PREFIX__ support.
15490
15491 Thu Jun 1 10:51:47 1995 Sean Eric Fagan <sef@cygnus.com>
15492
15493 * configure.in (sparclite): Delete target_cflags. Define multidirs.
15494
15495 Wed May 24 14:23:25 1995 Steve Chamberlain <sac@slash.cygnus.com>
15496
15497 * configure.in, libc/include/machine/ieeefp.h: Modified
15498 for arm:
15499 libc/machine/arm/*, libc/sys/arm/*: New
15500
15501 Tue May 23 13:53:07 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15502
15503 * libc/include/machine/ieeefp.h: Use __PPC__ instead of
15504 __powerpc__ when determining endianness.
15505
15506 Wed May 10 07:55:56 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15507
15508 * configure.in (m68*): Add multidir for the m68332.
15509
15510 * host/any (CC): Fix typo in last change.
15511
15512 Fri Apr 14 22:20:31 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
15513
15514 * libc/include/sys/config.h: Test __m68k__ instead of __m68000__
15515 when determining endianness.
15516 * libc/include/machine/ieeefp.h: Ditto.
15517 * libc/machine/m68k/setjmp.S: Use '&' instead of '#' for immediate
15518 operands.
15519
15520 Fri Apr 14 14:14:29 1995 Doug Evans <dje@chestnut.cygnus.com>
15521
15522 * libc/include/errno.h (ENOTEMPTY): Define.
15523
15524 Thu Apr 6 12:21:20 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15525
15526 * configure.in (sparc-sun-sunos*): Add -DMALLOC_ALIGNMENT=8 to
15527 target_cflags.
15528
15529 * libc/sys/sun4/Makefile.in (COPYOFILES): Added rem.o, multiply.o,
15530 and umultiply.o.
15531
15532 * libc/stdio/tmpnam.c (worker): Unconditionally increment count
15533 instead of only when open succeeds. ANSI requires that multiple
15534 calls to tmpnam() result in different files.
15535
15536 * libc/sys/sun4/Makefile.in (COPYRENAMEOFILES): New macro, list of
15537 objects pulled in from /lib/libc.a that must be renamed before
15538 being pulled into newlib. /lib/libc.a's div.o conflicted with
15539 newlib's file with the same name.
15540
15541 * libc/stdlib/ldiv.c (ldiv): Call labs() instead of abs().
15542
15543 * host/any (CC, AS, AR, RANLIB): Changed so that executables in
15544 the build tree will only be used if the executables are present
15545 (instead of just the Makefiles).
15546
15547 * libc/include/stdlib.h (mblen, mbtowc, wctomb, mbstowcs,
15548 wcstombs): Define.
15549 * libc/stdlib/{mblen.c, mbstowcs.c, wcstombs.c}: New files, null
15550 versions of these functions that I orignally wrote for the
15551 NetBSD C library.
15552 * libc/stdlib/{mbtowc.c, wctomb.c}: Replaced functions with
15553 versions I wrote for NetBSD.
15554
15555 Wed Mar 29 12:42:42 1995 Kung Hsu <kung@mexican.cygnus.com>
15556
15557 * libc/sys/sparclite/Makefile.in: add crt0.s and make info.
15558 * libc/sys/sparclite/crt0.s: ditto.
15559
15560 Tue Mar 28 20:28:03 1995 Rob Savoye <rob@rtl.cygnus.com>
15561
15562 * configure.in: Add soft-float for proelf.
15563
15564 Mon Mar 27 12:07:56 1995 Steve Chamberlain <sac@bang.hack.com>
15565
15566 * libc/stdlib/mprec.h (Bcopy): Copy the right number
15567 of bytes.
15568
15569 Mon Mar 27 11:24:22 1995 Doug Evans <dje@chestnut.cygnus.com>
15570
15571 * Makefile.in (all): Depend on `force'.
15572 * configure.in (syscall_dir): Renamed from fake_sys_dir.
15573 (libc_syscall_lib): Renamed from libc_fake_sys_lib.
15574 (LIBC_SYSCALL_LIB): Renamed from LIBC_FAKE_SYS_LIB.
15575 * libc/Makefile.in: Likewise.
15576 * libc/include/reent.h: Update syscall references.
15577 (_fcntl_r): Add prototype.
15578 * libc/syscalls/*.c #include <reent.h>.
15579 (*) Call reentrant version if REENTRANT_SYSCALLS_PROVIDED.
15580
15581 Mon Mar 20 16:57:39 1995 Doug Evans <dje@deneb.cygnus.com>
15582
15583 * libc/include/sys/stat-dj.h (S_ISBLK): Define.
15584 (S_ISCHR, S_ISDIR, S_ISFIFO, S_ISREG): Define.
15585 * libc/include/sys/stat.h (stat-dj.h): Include ifdef MSDOS.
15586 (time.h, sys/types.h): Always include (even if MSDOS).
15587 (stat): Fix prototype.
15588
15589 Fri Mar 10 11:30:38 1995 Ian Lance Taylor <ian@cygnus.com>
15590
15591 * configure.in (i[345]86-*-go32): Compile with -DNO_EXEC.
15592
15593 Mon Feb 27 18:00:39 1995 Jim Wilson <wilson@chestnut.cygnus.com>
15594
15595 * libc/machine/h8500/psi.S (EXTPSIHI_RN_SN): Ifdef out.
15596
15597 Mon Feb 13 16:10:03 1995 Ian Lance Taylor <ian@cygnus.com>
15598
15599 * libc/include/regdef.h: New file.
15600 * libc/machine/mips/machine/regdef.h: New file.
15601
15602 Mon Feb 6 15:24:29 1995 Doug Evans <dje@canuck.cygnus.com>
15603
15604 * libc/sys/sparc64/sys/fcntl.h (open): Add ellipsis.
15605
15606 Fri Jan 27 13:52:10 1995 Steve Chamberlain <sac@splat>
15607
15608 * libc/sys/sh/crt0.S: Pass main's return to exit.
15609 * libc/sys/sh/trap.S: Put errno in the right place.
15610
15611 Tue Jan 24 18:57:56 1995 Ian Lance Taylor <ian@sanguine.cygnus.com>
15612
15613 * libm/math/e_rem_pio2.c (__ieee754_rem_pio2): Integrate change
15614 from fdlibm 5.2: handle |x| < 3pi/4 more efficiently.
15615 * libm/math/ef_rem_pio2.c: Likewise.
15616 * libm/math/e_log10.c: Remove unused static one.
15617 * libm/math/ef_log10.c: Likewise.
15618 * libm/math/s_frexp.c: Likewise.
15619 * libm/math/sf_frexp.c: Likewise.
15620
15621 Sun Jan 22 21:26:14 1995 Steve Chamberlain <sac@splat>
15622
15623 * libc/sys/go32/Makefile.in, clock.S, dir.c, setjmp.S, stat.c,
15624 longjmp.S: Upgraded.
15625 * libc/sys/go32/sys/setjmp.h: Upgraded.
15626 * libc/sys/go32/sys/go32.h, dpmi.h: New files.
15627
15628 Fri Jan 20 18:33:18 1995 Ian Lance Taylor <ian@sanguine.cygnus.com>
15629
15630 * configure.in: Add many entries to multidirs for mips targets.
15631
15632 Wed Jan 18 10:19:25 1995 J.T. Conklin <jtc@rtl.cygnus.com>
15633
15634 * libm/math/e_jn.c (__ieee754_yn): Integrate change from fdlibm
15635 5.2 which fixes bug where jn(-1,x) is three times larger than
15636 the actual answer.
15637 * libm/math/ef_jn.c (__ieee754_ynf): Likewise.
15638
15639 Sun Jan 15 21:48:58 1995 Steve Chamberlain <sac@splat>
15640
15641 * libc/sys/w65/sys/syscalls.h: New file
15642 * libc/include/machine/ieeefp.h: W65 support.
15643 * libc/include/sys/config.h: Ditto.
15644 * libc/machine/w65/Makefile.in, cmpsi, divsi3, lshrhi.s, mulsi3.c,
15645 sdivhi3.s, smulhi3.s, udivhi3.s, umodhi3.s: New files.
15646 * libc/sys/w65/Makefile.in, crt0.c, syscalls.c, trap.c: New files.
15647
15648 Wed Jan 11 15:59:01 1995 Ian Lance Taylor <ian@sanguine.cygnus.com>
15649
15650 * libc/sys/Makefile.in (lib.a, crt0.o): Depend upon subs.
15651
15652 Tue Jan 3 15:57:03 1995 Rob Savoye <rob@darkstar.cygnus.com>
15653
15654 * Makefile.in, configure.in: Remove any references to the old
15655 "stub" dir.
15656
15657 Thu Dec 22 10:42:08 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
15658
15659 * libc/syscalls/sysopen.c: Write _HAVE_STDC version of open, which
15660 uses ... in prototype.
15661
15662
15663 Wed Nov 30 08:39:42 1994 Ian Lance Taylor <ian@rtl.cygnus.com>
15664
15665 * libc/sys/a29khif/sys/libconfig.h: Remove.
15666 * libc/sys/go32/sys/libconfig.h: Remove.
15667 * libc/sys/sun4/sys/libconfig.h: Remove.
15668 * libc/sys/sysvi386/sys/libconfig.h: Remove.
15669 * libc/sys/sysvnecv70/sys/libconfig.h: Remove.
15670 * libc/sys/sparc64/sys/libconfig.h: Remove.
15671
15672 * libc/include/_ansi.h (_FLOAT_ARG, _FLOAT_RET): Don't define.
15673 * libc/include/sys/config.h (_FLOAT_ARG, _FLOAT_RET): Likewise.
15674 * libc/include/math.h: Change all uses of _FLOAT_RET and
15675 _FLOAT_ARG to float.
15676 * libm/test/math.c: Likewise.
15677 * testsuite/libm.sac/math.c: Likewise.
15678 * testsuite/libm.sac/working/math.c: Likewise.
15679
15680 Wed Nov 23 22:39:28 1994 Steve Chamberlain (sac@jonny.cygnus.com)
15681
15682 * libc/sys/sh/trap.s,crt0.s,setjmp.s: Renamed with .S so that
15683 gcc calls gas with endian option.
15684 * configure.in (sh): Build little endian version too.
15685
15686 Wed Nov 16 18:21:45 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
15687
15688 * configure.in: Configure big and little endian versions for MIPS
15689 targets.
15690
15691 Sat Nov 12 21:12:51 1994 Doug Evans <dje@canuck.cygnus.com>
15692
15693 * libc/include/limits.h: Deleted.
15694 * libc/include/machine/limits.h: Deleted.
15695
15696 Thu Nov 10 15:32:44 1994 Rob Savoye <rob@rtl.cygnus.com>
15697
15698 * ChangeLog: Remove stub directory. This has all been rewritten
15699 and moved to devo/libgloss.
15700
15701 Thu Sep 29 18:31:04 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
15702
15703 * Makefile.in (dvi): Add to info target, use $@ in sub make.
15704 (docs): Merge into info target.
15705 * libm/Makefile.in (dvi): Add $(srcdir).
15706 * libm/math/Makefile.in (chobjs): Remove underscores from file
15707 names. Texinfo doesn't like them.
15708 (wacos.def, ...): Add explicit targets for all .def files.
15709 * libm/math/math.tex: Remove underscores from @include file names.
15710 * doc/Makefile.in (dvi): Add dummy target.
15711 * testsuite/Makefile.in (dvi): Add dummy target.
15712
15713 Mon Sep 26 21:17:46 1994 Doug Evans (dje@canuck.cygnus.com)
15714
15715 * Makefile.in (VERSION): Define. For net newlib releases.
15716
15717 Thu Sep 22 19:01:26 1994 Doug Evans (dje@canuck.cygnus.com)
15718
15719 * README: New file.
15720
15721 Mon Sep 19 16:35:23 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
15722
15723 * libc/stdlib/ecvtbuf.c (_gcvt): Undo last change.
15724
15725 Mon Sep 19 11:44:23 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
15726
15727 * libc/stdlib/setenv.c (_findenv): Declare.
15728
15729 * libc/include/sys/fcntl.h: Fix declarations of open, creat, and
15730 fcntl to not use _EXFUN, and change string parameters to open and
15731 creat to be ``const char *''.
15732 * libc/sys/sparc64/sys/fcntl.h: Likewise.
15733 * libc/sys/sparc64/creat.c (creat): Make PATH const.
15734 * libc/syscalls/sysopen.c: Include <fcntl.h>.
15735 (open) Make _FILE const.
15736 * libc/sys/z8ksim/glue.c (_open): Make BUF const.
15737 (_creat): Make PATH const.
15738 * libc/sys/h8300hms/syscalls.c (_open): Make PATH const.
15739 * libc/sys/h8500hms/syscalls.c (_open): Likewise.
15740 * libc/sys/m88kbug/syscalls.c (open): Likewise.
15741 * libc/sys/sh/syscalls.c (_open): Likewise.
15742 * stub/shared/glue.c (open): Make BUF const.
15743 * stub/ex93x/syscalls.c (open): Make FILENAME const.
15744
15745 Thu Sep 8 16:39:12 1994 Steve Chamberlain (sac@jonny.cygnus.com)
15746
15747 * libc/include/errno.h: Add ENMFILE
15748 * libc/include/sys/config.h: Support Z8000.
15749 * libc/include/sys/signal.h: New signals for go32.
15750 * libc/machine/h8500/psi.S (__addpsir0r0): New function
15751 * libc/machine/h8500/cmpsi.S (__ucmppsi2): New function
15752 * libc/machine/sh/sdivsi3.s (__sdivsi3): Rewritten.
15753 * libc/stdlib/mallocr.c (_morecore_r): Minimum chunk
15754 size is variable, depending upon CHUNK_POWER.
15755 * libc/sys/go32/*.c: Upgrade to new go32 stuff.
15756
15757 Sun Sep 4 17:42:43 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
15758
15759 * libc/stdlib/ecvtbuf.c (_gcvt): Output '-' for negative numbers.
15760
15761 Fri Sep 2 10:56:01 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
15762
15763 * libc/include/_ansi.h (_PARAMS): Don't define if already defined.
15764
15765 Wed Aug 24 11:11:03 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
15766
15767 * configure.in: Change i[34]86 to i[345]86.
15768
15769 * libc/include/math.h: Don't define HUGE_VAL if it is already
15770 defined.
15771
15772 Wed Aug 17 15:18:02 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
15773
15774 * testsuite/libm.sac/test_erfc.c: Correct some result values.
15775 * testsuite/libm.sac/test_gammaf.c: Likewise.
15776 * testsuite/libm.sac/test_sin.c: Likewise.
15777 * testsuite/libm.sac/test_tanh.c: Likewise.
15778
15779 Tue Aug 16 16:12:53 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
15780
15781 * libc/include/machine/ieeefp.h: Don't try set endianness if it is
15782 already set. Define typedefs __int32_t and __uint32_t.
15783 * libc/include/math.h: Include <machine/ieeefp.h>.
15784 (union __dmath): Use __uint32_t.
15785 * libm/math/fdlibm.h, libm/math/*.c: Use __int32_t and __uint32_t
15786 instead of int and unsigned int.
15787
15788 Thu Aug 11 15:16:09 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
15789
15790 Replace the math library with the SunPRO fdlibm package.
15791 * libm/math: Completely changed all files.
15792 * libm/ieeefp: Remove contents and directory.
15793 * libm/Makefile.in (LIBM_FP_LIB): Remove.
15794 (SUBDIRS): Just set to math/lib.a.
15795 * libm/libm.texinfo: Updated for new library.
15796 * libc/include/math.h: Extensive changes for new math library.
15797 * libc/include/ieeefp.h (isnanf, isinff, finitef): Change argument
15798 from _FLOAT_ARG to float.
15799 (maxpowtwo, maxpowtwof): Don't declare.
15800 * configure.in (fp_dir): Removed; was always ieeefp anyhow.
15801 (libm_fp_lib): Removed.
15802 * Makefile.in (MATHOBJS_IN_LIBC): Updated with new file names.
15803 * testsuite/libm.paranoia/Makefile.in (check): Correct --srcdir
15804 argument to ${RUNTEST}.
15805 * testsuite/libm.sac/Makefile.in (LOCAL_CFLAGS): Define.
15806 (.c.o): New rule.
15807 (RUNTESTFLAGS): Set CC and CFLAGS.
15808 (TESTS): Remove test_log2 and test_log2f.
15809 (${TESTS}): Pass ${LOCAL_CFLAGS}, not ${CFLAGS}.
15810 * testsuite/libm.sac/math.c (run_vector_1): Use float, not
15811 _FLOAT_ARG, for single precision argument type.
15812 * testsuite/libm.sac/sac.exp: Treat an error in bit 63 as an
15813 expected failure. Close the input pipe.
15814 * testsuite/libm.sac/test.c (test_sok, test_iok, test_scok):
15815 Correct misspelling of inaccurate.
15816 (test_mok): Use ``inaccurate'', not ``wrong''.
15817 * testsuite/libm.sac/{test_acos.c, test_acosh.c, test_asin.c,
15818 test_asinh.c, test_atan.c, test_atanh.c, test_ceil.c,
15819 test_ceilf.c, test_cos.c, test_cosh.c, test_erf.c, test_erf.c,
15820 test_fabs.c, test_floor.c, test_floorf.c, test_fmod.c,
15821 test_fmodf.c, test_gamma.c, test_log1p.c, test_log1pf.c,
15822 test_yn.c): Correct many result values. Many are still wrong.
15823
15824 * libc/stdlib/ecvtbuf.c (print_e): If _dtoa_r sets decpt to 9999,
15825 just copy the string.
15826 (_gcvt): Always return the buffer.
15827
15828 Tue Aug 9 13:43:23 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
15829
15830 * bcopy.c: fixed documentation, bcopy was not specified by ANSI.
15831
15832 Wed Aug 3 05:39:41 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
15833
15834 * libc/include/sys/reent.h: (struct _Bigint): add _reclaim
15835 structure.
15836 (struct _reent): add _p5s, _cvtlen, _cvtbuf.
15837 (_reclaim_reent): declare new entry point.
15838 * libc/reent/reent.c (cleanup_glue, _reclaim_reent): new
15839 functions.
15840
15841 * libc/stdlib/mprec.c (Balloc): Keep track of every struct bigint
15842 ever allocated, so that we can later reclaim them all.
15843 (pow5mult): make reentrant.
15844
15845 * libc/stdlib/ecvtbuf.c (fcvtbuf, ecvtbuf): extend these functions
15846 so that when given NULL as a buffer, return a pointer to static
15847 space in the rent structure. This is not documented behaviour;
15848 it's only to support ecvt and fcvt, which aren't ANSI anyway.
15849 * libc/stdlib/efgcvt.c (fcvt, ecvt) Use new functionality (and
15850 therefore become reentrant).
15851
15852 * libc/stdlib/dtoastub.c: remove spurious inclusion of mprec.h.
15853
15854 Mon Aug 1 16:52:24 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
15855
15856 * libc/include/machine/ieeefp.h: Check _AM29K, not ___AM29K__.
15857
15858 Thu Jul 28 15:40:21 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
15859
15860 * Makefile.in: Make link to libg.a after libc.a; this is needed
15861 for the testsuites to build executables when everything comes
15862 from the tree.
15863
15864 Mon Jun 27 17:14:29 1994 Bill Cox (bill@rtl.cygnus.com)
15865
15866 * libc/Makefile.in: Add a VERSION variable so we can keep track.
15867 * libm/Makefile.in: Add a VERSION variable so we can keep track.
15868
15869 Wed Jun 22 10:26:00 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
15870
15871 * libc/include/stdio.h: Use __VALIST, not va_list.
15872
15873 Tue May 17 15:43:28 1994 Bill Cox (bill@rtl.cygnus.com)
15874
15875 * testsuite/config/unix-libm.exp, testsuite/lib/libm.exp,
15876 testsuite/libm.sac/execute.exp:
15877 Replace error proc calls with perror calls.
15878
15879 Wed May 11 09:25:28 1994 Doug Evans (dje@canuck.cygnus.com)
15880
15881 * libc/include/*.h: #include "_ansi.h" instead of <_ansi.h>.
15882 * libc/include/time.h: #define NULL as 0L.
15883
15884 Mon May 9 18:41:20 1994 Doug Evans (dje@canuck.cygnus.com)
15885
15886 * host/any (INCLUDES): Delete -I of gcc/include, gcc -B takes
15887 care of it.
15888
15889 Mon May 9 18:39:39 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15890
15891 * libc/include/sys/signal.h: Check for __GO32__, not __i386__ and
15892 not __unix__.
15893
15894 Sat May 7 17:07:36 1994 Steve Chamberlain (sac@cygnus.com)
15895
15896 * configure.in (TARGET_CFLAGS): Set -O2 as default.
15897 (z8k-*-*): Use syscalls fake sys dir.
15898 * libc/sys/z8k/glue.c: Rename syscalls.
15899 * libc/sys/go32/Makefile.in: Use new routines.
15900 * libc/machine/Makefile.in: Fix typo in ln stuff.
15901
15902 Thu May 5 13:47:48 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15903
15904 * Makefile.in (libm.a, crt0.o): Use cp if ln fails.
15905 * libc/Makefile.in (crt0.o): Likewise.
15906 * libc/machine/Makefile.in (lib.a): Likewise.
15907 * libc/sys/Makefile.in (lib.a, crt0.o): Likewise.
15908
15909 All Makefile.in files: Added mostlyclean, realclean and distclean
15910 targets.
15911
15912 * Makefile.in: Don't bother to unexport XTRAFLAGS or
15913 XTRAFLAGS_FOR_TARGET, since they are no longer passed down from
15914 the top level Makefile.
15915
15916 Tue Apr 26 15:10:34 1994 Doug Evans (dje@canuck.cygnus.com)
15917
15918 * libc/sys/sparc64/sys/stat.h: New file.
15919 * libc/sys/sparc64/sys/time.h: New file.
15920 * libc/sys/sparc64/sys/types.h: New file.
15921
15922 Fri Apr 22 12:58:24 1994 Stan Shebs (shebs@andros.cygnus.com)
15923
15924 * stub/ex93x/crt0.s (start): Add code to clear bss.
15925
15926 Wed Apr 13 10:34:58 1994 Doug Evans (dje@canuck.cygnus.com)
15927
15928 * libc/include/sys/types.h (time_t): Properly protect inside
15929 #ifndef __time_t_defined.
15930
15931 * libc/stdio/fileno.c: New file.
15932 * libc/stdio/Makefile.in (OFILES, CHEWOUT_FILES): Add fileno.
15933 (fileno.o): Add dependency.
15934 * libc/include/stdio.h (__sgetc): Rename never to _never.
15935 (fileno macro): Disable, needs to do CHECK_INIT first.
15936
15937 Mon Apr 11 17:37:09 1994 Bill Cox (bill@rtl.cygnus.com)
15938
15939 * testsuite/Makefile.in (EXPECT, RUNTEST): Set these for the check
15940 goal.
15941
15942 * testsuite/Makefile.in (check): Set TCL_LIBRARY for runtest.
15943 * testsuite/libm.paranoia/Makefile.in (check): Set TCL_LIBRARY for
15944 runtest.
15945 * testsuite/libm.sac/Makefile.in (check): Set TCL_LIBRARY for
15946 runtest.
15947
15948 Sat Apr 9 16:18:09 1994 Doug Evans (dje@cygnus.com)
15949
15950 * libc/sys/sparc64/sys/fcntl.h: New file, define solaris versions
15951 of the various constants.
15952
15953 Thu Apr 7 21:19:07 1994 Mark Eichin (eichin@cygnus.com)
15954
15955 * libc/include/math.h: #ifndef __math_68881 around things which
15956 conflict with the (gcc-provided) inline functions in
15957 gcc/ginclude/math-68881.h.
15958
15959 Thu Apr 7 02:50:43 1994 Doug Evans (dje@cygnus.com)
15960
15961 * libc/include/_syslist.h (_gettimeofday): Define.
15962 (_times): Ditto.
15963 * libc/include/reent.h: #include <machine/types.h> to get _CLOCK_T_.
15964 (struct tms, timeval, timezone): Declare.
15965 (_gettimeofday_r, _times_r): Declare.
15966 * libc/include/time.h (_CLOCK_T_): Don't #undef. Remove
15967 #ifdef _CLOCK_T_ surrounding definition of clock_t.
15968 (time_t): Add multiple definition protection, __time_t_defined.
15969 * libc/include/sys/time.h: Don't #include <time.h>.
15970 Always define struct timezone (remove #ifndef _TIME_H_).
15971 * libc/include/sys/times.h (_CLOCK_T_): Don't #undef. Remove
15972 #ifdef _CLOCK_T_ surrounding definition of clock_t.
15973 * libc/reent/Makefile.in (OFILES): Add timer.o.
15974 (CHEWOUT_FILES): Add timer.def. Add timer.o/timer.c dependence.
15975 * libc/reent/timer.c: New file.
15976 * libc/time/clock.c: #include <reent.h>.
15977 (clock): Call _times_r instead of times.
15978 * libc/time/time.c (HAVE_GETTIMEOFDAY): Renamed from
15979 HAVE_GET_TIME_OF_DAY.
15980 Add comment regarding supporting OS routine(s) required (for docs).
15981 #include <reent.h>.
15982 (time): Call _gettimeofday_r instead of gettimeofday.
15983 * libc/time/asctime.c: Fix comment regarding supporting OS routines.
15984 * libc/time/ctime.c: Ditto.
15985 * libc/time/strftime.c: Ditto.
15986 * libc/sys/sparc64/Makefile.in (TEMPLATE_SFILES): Remove gettimeofday.
15987 (TEMPLATE_SFILES_R): Define here. Also define times.
15988 Add times_r.o/times.S dependence.
15989 (time2.c, junk.c): Deleted.
15990 * libc/sys/sparc64/time2.c: Deleted.
15991 * configure.in (sparc64-*-*): Define HAVE_GETTIMEOFDAY.
15992
15993 * libc/stdio/mktemp.c (_getpid_r): Renamed from _getpid.
15994 * libc/stdio/tmpnam.c (_getpid_r): Ditto.
15995 * libc/sys/sparc64/junk.c: Deleted.
15996
15997 Mon Mar 21 16:51:03 1994 Doug Evans (dje@canuck.cygnus.com)
15998
15999 * libc/sys/sparc64/Makefile.in: Add times syscall.
16000 * libc/sys/sparc64/crt0.S: Handle stack bias at run time so we can
16001 be used with and without it. Add comment clarifying Medium/Anywhere
16002 model requirements.
16003 * libc/sys/sparc64/sigsetjmp.S (setjmp, longjmp): Add svr4 support.
16004 * libc/sys/sparc64/sys/syscall.h (SYS_times): Define for sunos4
16005 even if obsolete.
16006
16007 Sun Mar 20 15:51:47 1994 Doug Evans (dje@cygnus.com)
16008
16009 * configure.in (target_cflags): Move init.
16010 (sparc64-*-*): Define HAVE_BLKSIZE.
16011
16012 Wed Mar 9 10:44:52 1994 Doug Evans (dje@canuck.cygnus.com)
16013
16014 * libc/include/sys/_types.h: New file.
16015 * libc/include/reent.h: #include it.
16016 Add comment describing REENTRANT_SYSCALLS_PROVIDED and
16017 MISSING_SYSCALL_NAMES.
16018 Sort syscalls.
16019 * libc/include/_syslist.h: Remove _raise.
16020 * libc/reent/signalr.c: New file.
16021 * libc/reent/Makefile.in: Compile it.
16022 * libc/signal/signal.c: Only use ifdef SIMULATED_SIGNALS.
16023 Add doc for raise and _raise_r.
16024 * libc/signal/raise.c: Only use ifndef SIMULATED_SIGNALS.
16025 (raise): Call _raise_r.
16026 (_raise_r): Call _getpid_r and _kill_r.
16027 * libc/stdlib/abort.c: Remove inclusion of stdio.h and _syslist.h.
16028 (abort): Loop forever calling raise and _exit.
16029
16030 Mon Mar 7 14:40:08 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
16031
16032 * configure.in: Remove extraneous echo.
16033
16034 Thu Mar 3 12:14:22 1994 Doug Evans (dje@canuck.cygnus.com)
16035
16036 * libc/sys/sparc64/sys/dirent.h (MAXNAMLEN): #undef to avoid
16037 collision with unistd.h, and fix for svr4.
16038
16039 Wed Mar 2 13:55:25 1994 Doug Evans (dje@canuck.cygnus.com)
16040
16041 * libc/stdio/local.h (_llicvt): Declare.
16042 (CVT_BUF_SIZE): Define (and buffer size from 512 to 128).
16043 * libc/stdio/cvt.c: Include "local.h" to get CVT_BUF_SIZE.
16044 (_llicvt): Define.
16045 (_sicvt): Fix function header (`value' is short).
16046 * libc/stdio/vfprintf.c (_vfprintf_r): Use CVT_BUF_SIZE.
16047 Add printing of long long's support.
16048 Add printing of 8 byte pointer support.
16049
16050 Fri Feb 11 21:52:11 1994 Steve Chamberlain (sac@sphagnum.cygnus.com)
16051
16052 * libc/sys/sh/syscalls.c (pipe, execv, wait, fork, utime, chown,
16053 stat, chmod): New hooks.
16054 (sbrk): Abort if stack and heap collide.
16055 * libc/machine/sh/udivsi3, libc/machine/sh/sdivsi3 Modified to
16056 shortcut when given small args.
16057 * libc/machine/sh/setjmp.s: Rewritten.
16058 * libc/machine/sh/strcmp.s (strcmp): New function takes advantage
16059 of cmp/str instruction.
16060
16061 Wed Feb 9 15:12:35 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
16062
16063 * configure.in: Accept powerpc* as a CPU type, using fp_dir ieeefp
16064 and machine_dir powerpc.
16065 * libc/include/machine/setjmp.h, libc/include/machine/ieeefp.h:
16066 Add cases for __powerpc__.
16067 * libc/machine/powerpc/Makefile.in, libc/machine/powerpc/setjmp.S:
16068 New files.
16069
16070 * libc/include/stdio.h (_iprintf_r): Declare correctly.
16071
16072 Thu Jan 27 10:36:27 1994 Steve Chamberlain (sac@cygnus.com)
16073
16074 * libc/stdlib/callocr.c: New file with _calloc_r in it.
16075 * libc/stdlib/calloc.c (calloc_r): Now in callocr.c
16076
16077 Thu Jan 20 15:14:37 1994 Doug Evans (dje@canuck.cygnus.com)
16078
16079 * libc/stdlib/ecvtbuf.c (print_f): Remove local "done".
16080 (print_e): More comments to describe args, etc.
16081 "type" arg may now be 'g' or 'G' for %g/G format --> remove
16082 trailing blanks.
16083 (_gcvt): Remove locals decpt, sign, end, p, done.
16084 More comments for print_e invocation.
16085 Pass "type" to print_e as is (g/G).
16086
16087 Wed Jan 19 16:34:18 1994 Rob Savoye (rob@darkstar.cygnus.com)
16088
16089 * stub/shared/m68k-crt0.S: Changed so it compiles (and runs) on a
16090 stock m68000.
16091
16092 Mon Jan 17 15:41:53 1994 Doug Evans (dje@canuck.cygnus.com)
16093
16094 * libc/stdlib/mallocr.c (_morecore_r): Fix aligning of pointer so it
16095 works with any sized pointer, including ones bigger than ints and
16096 longs.
16097
16098 Thu Jan 6 14:53:21 1994 Doug Evans (dje@canuck.cygnus.com)
16099
16100 * libc/sys/sparc64/{time2.c,utime.S,utime2.c}: New files.
16101
16102 Sat Dec 11 16:17:20 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16103
16104 * libc/include/stdlib.h (_calloc_r): Add prototype.
16105 * libc/machine/h8500/negsi2.c: New file.
16106 * libc/machine/h8500/divsi3.c: Prevent overflow when dividing v
16107 large unsigned numbers.
16108 * libc/machine/h8500/cmpsi.c: Add cmppsi.
16109 * libc/stdlib/mallocr.c (morecore_r): Fix aligning pointers so it
16110 works when sizeof(size_t) != sizeof(char *).
16111 * libc/stdlib/mprec.c (Balloc): Call calloc rather than malloc to
16112 get play area
16113 * libc/stdlib/mprec.h: Define Just_16 if generating for z8000.
16114
16115 Mon Dec 6 15:59:53 1993 Doug Evans (dje@rtl.cygnus.com)
16116
16117 * libc/include/assert.h (assert): Handle -traditional.
16118
16119 Tue Nov 16 15:49:24 1993 Mark Eichin (eichin@cygnus.com)
16120
16121 * Makefile.in: added ; after every "fi" and "done" that wasn't at
16122 the end of a line (ie. anything before a backslash continuation)
16123 so that bash handles them.
16124
16125 Tue Nov 16 12:31:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
16126
16127 * libc/sys/go32/lstat.s: new file, copied from stat.s and renamed
16128 stat to lstat
16129
16130 Mon Nov 15 15:50:43 1993 Steve Chamberlain (sac@jonny.cygnus.com)
16131
16132 * libc/sys/sh/crt0.s, libc/sys/sh/trap.s,
16133 libc/machine/sh/sdivsi3.s, libc/machine/sh/setjmp.s,
16134 libc/machine/sh/udivsi3.s: Use new calling convention.
16135
16136 Mon Nov 15 15:25:38 1993 Mark Eichin (eichin@cygnus.com)
16137
16138 * libc/include/sys/unistd.h, libc/include/sys/stat.h: ANSI-fy
16139 chmod, access, chdir, chown by making _path const. Also fix _amode
16140 param of access.
16141
16142 Fri Nov 12 20:25:28 1993 Mark Eichin (eichin@cygnus.com)
16143
16144 * libc/sys/a29khif/_tmpnam.s (_tmpnam): renamed function to
16145 _khif_tmpnam, because it doesn't comply with ANSI but may be
16146 useful anyway. Real tmpnam was already in libc/stdio, and was
16147 colliding with this one (pr 2176.)
16148 * libc/sys/a29khif/stubs.s (tmpnam): removed tmpnam. This file is
16149 the wrong idea anyhow.
16150
16151 Mon Nov 8 07:50:16 1993 Doug Evans (dje@canuck.cygnus.com)
16152
16153 * configure.in: Remove h8300h, we have multilib now.
16154
16155 Fri Nov 5 12:37:27 1993 Mark Eichin (eichin@cygnus.com)
16156
16157 * libc/string/strcasecmp.c, libc/string/strncasecmp.c: new
16158 functions, to get preference over the ones in libiberty (since we
16159 provide correct declarations in <string.h>.
16160 * libc/string/Makefile.in: add support for strncasecmp,
16161 strcasecmp.
16162
16163 Fri Nov 5 09:05:45 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
16164
16165 * Change netware config not to look for cpu explicitly.
16166
16167 Thu Nov 4 14:21:25 1993 Doug Evans (dje@canuck.cygnus.com)
16168
16169 * libc/sys/sparc64/{creat.c,junk.c}: New files.
16170 * libc/sys/sparc64/Makefile.in: Add dependencies.
16171
16172 Wed Nov 3 10:42:49 1993 Doug Evans (dje@canuck.cygnus.com)
16173
16174 * configure.in: Clean up v9 a bit, new "os" aoutv8.
16175
16176 Tue Nov 2 10:00:44 1993 D. V. Henkel-Wallace (gumby@cygnus.com)
16177
16178 * libc/include/sys/reent.h: make structure smaller by allocating
16179 some stuff when needed.
16180 * libc/signal/signal.c: allocate as needed
16181 * libc/stdio/findfp.c,stdio/local.h: ditto
16182 * libc/stdlib/mprec.c: ditto
16183
16184 * libc/time/localtime.c: don't return a dangling stack ptr.
16185
16186 Wed Sep 29 20:42:34 1993 Rob Savoye (rob@darkstar.cygnus.com)
16187
16188 * stub/mvme135/crt0.S, stub/mvme135/glue.c: Moved to stub/generic.
16189
16190 Wed Sep 29 16:27:49 1993 K. Richard Pixley (rich@sendai.cygnus.com)
16191
16192 * libc/include/stdio.h (__sputc): comment out static inline which
16193 confuses coff toolchains.
16194
16195 Thu Sep 2 16:31:36 1993 Mark Eichin (eichin@cygnus.com)
16196
16197 * libc/sys/a29khif/{_close.s, _fstat.s, _lseek.s, _sbrk.s,
16198 _write.s, getpid.c, kill.c, read.s}:
16199 * libc/sys/a29khif/stubs.s: eliminated stubs that already go
16200 through the syscalls directory.
16201
16202 Fri Oct 29 13:59:58 1993 Jeffrey Wheat (cassidy@cygnus.com)
16203
16204 * configure.in: fixed double quote gotcha.
16205
16206 Wed Oct 27 15:27:09 1993 Rob Savoye (rob@darkstar.cygnus.com)
16207
16208 * stub/ex931: stub library for sparclite board.
16209 * stub/idp: Renamed from mc68ec. Added contructor table
16210 stuff to linker script.
16211 * stub/mvme135: Renamed from m68kmvme. Added contructor table
16212 stuff to linker script.
16213
16214 Tue Oct 26 17:01:23 1993 K. Richard Pixley (rich@sendai.cygnus.com)
16215
16216 * configure.in: Configure testsuites only if they exist.
16217
16218 Tue Oct 26 12:37:11 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
16219
16220 * configure.in: Don't set machine_dir for i386 until there is
16221 something in libc/machine/i386 to compile. For i[34]86-*-netware*
16222 use sys/netware, don't use signal, define NO_EXEC, ABORT_PROVIDED,
16223 CLOCK_PROVIDED and MALLOC_PROVIDED.
16224
16225 * libc/sys/netware: New directory. Contains simplistic and
16226 probably incorrect stubs for NetWare. Should be enough to load
16227 the library.
16228 * libc/sys/netware/crt0.c, libc/sys/netware/environ.c,
16229 libc/sys/netware/getpid.c, libc/sys/netware/link.c: New NetWare
16230 stub files.
16231
16232 * libc/reent/execr.c: Don't use if NO_EXEC is defined.
16233 * libc/reent/sbrkr.c: Don't use if MALLOC_PROVIDED is defined.
16234 * libc/stdlib/abort.c: Don't use if ABORT_PROVIDED is defined.
16235 * libc/time/clock.c: Don't use if CLOCK_PROVIDED is defined.
16236
16237 Mon Oct 25 16:48:08 1993 Roland H. Pesch (pesch@cygnus.com)
16238
16239 * testsuite/Makefile.in: add "docs" dummy target for consistency
16240 with rest of newlib; turn "info" and "install-info" into dummy
16241 targets, since they wouldn't have worked. (Depended on
16242 nonexistent "doc" subdir.)
16243
16244 Fri Oct 22 20:37:32 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
16245
16246 * configure.in: handle mips* instead of mips
16247
16248 Thu Oct 21 08:57:24 1993 Ian Lance Taylor (ian@cygnus.com)
16249
16250 * libc/include/sys/dirent.h: New file. If it is not overridden by
16251 a version of libc/sys/*/sys/dirent.h, it includes the next
16252 <dirent.h> file in case there is one lurking somewhere.
16253
16254 Fri Oct 15 14:17:40 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
16255
16256 * libc/stdlib/strtoul.c (_strtoul_r): Several changes for ANSI
16257 compliance, namely: Accept a minus sign. Consider a single 0 with
16258 a radix of 0 as being a conversion. Determine overflow correctly.
16259 If an overflow occurs, set *ptr to the end of the number, not the
16260 middle.
16261 * lib/stdlib/strtol.c (_strtol_r): Determine overflow correctly.
16262
16263 Thu Oct 14 21:49:52 1993 Doug Evans (dje@canuck.cygnus.com)
16264
16265 * libc/machine/h8300/divsi3.S (divmodsi4): Fix h8300h case.
16266
16267 Fri Oct 1 17:17:34 1993 Doug Evans (dje@canuck.cygnus.com)
16268
16269 * Makefile.in (INSTALL): Use $srcrootpre.
16270 (crt0.o): Replace $< with $(CRT0_DIR)/$(CRT0), Sun make
16271 can't handle it.
16272 * libc/Makefile.in (crt0.o): Spell out $<, Sun make can't handle
16273 it.
16274 * libc/sys/Makefile.in (crt0.o, lib.a): Ditto.
16275 * stub/Makefile.in (crt0.o, TARGETLIB): Ditto.
16276 * libc/sys/sparc64/Makefile.in (isatty.o): Sun VPATH lossage.
16277 * libm/math/Makefile.in (matherr.o): Ditto.
16278
16279 Thu Sep 30 11:09:17 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
16280
16281 * configure.in: Build multidirs for z8k.
16282 * libc/include/stdlib.h (_strtoul_r): add prototype.
16283 * libc/include/machine/limits.h: Get INT_MIN right for all the z8k family.
16284 * libc/include/machine/setjmp.h: Add for z8k.
16285 * libc/machine/z8k/{mulsi.o, udivsi3.o, umodsi3.o, modsi3.o} obsolete.
16286 * libc/sys/z8ksim/glue.c: tidy up.
16287
16288 Mon Sep 20 14:04:46 1993 Doug Evans (dje@canuck.cygnus.com)
16289
16290 * libc/unix/{execl.c execle.c execlp.c execv.c execvp.c}:
16291 New files. Requires execve system call.
16292 * libc/unix/Makefile.in: Use them.
16293 * libc/sys/sparc64/{execl.c execle.c execlp.c execv.c execvp.c}:
16294 Deleted, moved to libc/unix.
16295 * libc/sys/sparc64/Makefile.in: Remove them.
16296
16297 Mon Sep 20 10:38:32 1993 Doug Evans (dje@canuck.cygnus.com)
16298
16299 * libc/sys/sparc64/{template.S template_r.S}: New files.
16300 * libc/sys/sparc64/Makefile.in: Build source for trivial syscalls
16301 from templates.
16302 * libc/sys/sparc64/{chdir.S chmod.S close.S dup.S fcntl.S
16303 fork.S fstat.S lseek.S link.S mkdir.S open.S pipe.S read.S rmdir.S
16304 umask.S unlink.S wait4.S write.S}: Removed, now built from
16305 templates.
16306
16307 Sun Sep 19 14:52:57 1993 Doug Evans (dje@canuck.cygnus.com)
16308
16309 * libc/time/time.c: #include <_ansi.h>.
16310
16311 Sun Sep 19 13:43:25 1993 Doug Evans (dje@canuck.cygnus.com)
16312
16313 * configure.in (sparc64-*-*): Remove -D__SIZE_TYPE__.
16314
16315 Mon Sep 13 13:52:16 1993 K. Richard Pixley (rich@sendai.cygnus.com)
16316
16317 * configure.in: match m8* rather than m88k so that m88110 is
16318 recognized as well.
16319
16320 Tue Sep 7 12:19:32 1993 Doug Evans (dje@canuck.cygnus.com)
16321
16322 * libc/sys/h8300hms/{Makefile.in, _exit.c, misc.c}:
16323 Renamed exit.c to _exit.c to avoid collision with stdlib/exit.c.
16324 misc.c: New file.
16325
16326 * configure.in: Add multilib support to h8300.
16327
16328 Mon Sep 6 14:07:06 1993 Doug Evans (dje@canuck.cygnus.com)
16329
16330 * libc/stdlib/abort.c (abort): Remove _VOLATILE from return type.
16331 * libc/include/_ansi.h (_ATTRIBUTE): New macro for __attribute__.
16332 * libc/include/stdlib.h (exit, abort): Add noreturn attribute.
16333
16334 Mon Sep 6 14:24:18 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
16335
16336 * configure.in: Corrected multidirs for sparc target.
16337
16338 Mon Aug 30 15:56:44 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
16339
16340 Support for building newlib multiple times with different
16341 compilation flags.
16342 * configure.in: Only configure doc at top level. Set multidirs
16343 when appropriate for target, unless not at top level. If
16344 multidirs is set, independently configure each subdirectory.
16345 Adjust TOP, MULTIDIRS and MULTISUBDIR appropriately in Makefile.
16346 * Makefile.in (MULTIDIRS, MULTISUBDIR): New variables,
16347 automagically set by configure.in.
16348 (all): If MULTIDIRS is set, build multiple copies of libraries.
16349 (install): If MULTIDIRS is set, install multiple copies of
16350 libraries. Install in $(tooldir)/lib/$(MULTISUBDIR). If
16351 MULTISUBDIR is set, don't bother to install header files.
16352 * host/any (INCLUDES, CHEW): Use $(SRCTOP) rather than $(TOP) from
16353 ${srcrootpre}.
16354 * stub/configure.in: Set MULTISUBDIR appropriately.
16355 * stub/Makefile.in (install): Install in
16356 $(tooldir)/lib/$(MULTISUBDIR).
16357 * All Makefile.in files: Define SRCTOP as well as TOP.
16358
16359 Mon Aug 30 10:34:24 1993 Doug Evans (dje@canuck.cygnus.com)
16360
16361 * libc/machine/h8300/{mulhi3.S, divhi3.S}: Comment out if h8300h.
16362 * libc/machine/h8300/{mulsi3.S, divsi3.S}: Add h8300h support.
16363
16364 Thu Aug 26 19:38:12 1993 Doug Evans (dje@canuck.cygnus.com)
16365
16366 * libc/sys/h8300hms/exit.c (_exit): New function.
16367
16368 Wed Aug 25 16:31:48 1993 K. Richard Pixley (rich@sendai.cygnus.com)
16369
16370 * configure.in: recognize m88110.
16371
16372 Fri Aug 20 16:46:23 1993 K. Richard Pixley (rich@sendai.cygnus.com)
16373
16374 * libc/sys/m88kbug/crt0.c: pretty up, remove extraneous comments,
16375 prototype main and call with args.
16376
16377 Fri Jul 30 16:52:47 1993 K. Richard Pixley (rich@cygnus.com)
16378
16379 First real try at system traps for m88k-bug.
16380 * libc/sys/m88kbug/syscalls.c: many changes. Convert from stubs
16381 to real trap calls.
16382 * libc/sys/m88kbug/sys/systraps.h: new file.
16383
16384 Tue Jul 27 16:31:16 1993 K. Richard Pixley (rich@sendai.cygnus.com)
16385
16386 Patches to fix info building when target does not use sys
16387 directory.
16388 * libc/Makefile.in (targetdep.tex): add sys.tex separately.
16389 * libc/sys.tex, libc/sys/sys.tex: moved from libc/sys/sys.tex to
16390 libc/sys.tex.
16391 * libc/sys/Makefile.in (doc): do nothing.
16392
16393 Mon Jul 26 17:08:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
16394
16395 * libc/Makefile.in (CRT0): new macro.
16396 (all): depend on $(CRT0) rather than crt0.o.
16397
16398 * configure.in: fix libc_sys_dir -> libc_sys_lib thinko.
16399 do not default crt0, instead, set crt0 and crt0_dir based on
16400 sys_dir and stub_dir.
16401
16402 * Makefile.in (CRT0_DIR): new macro.
16403 (all): depend on $(CRT0) rather than crt0.o which may not exist.
16404 (crt0.o): depend on $(CRT0_DIR)/$(CRT0) rather than simply
16405 $(CRT0).
16406 ($(CRT0)): recur by cd'ing into $(CRT0_DIR).
16407
16408 Sun Jul 25 17:51:51 MDT 1993 Jeffrey Wheat (cassidy@cygnus.com)
16409
16410 * testsuite/lib/libm.exp:
16411 added code to support compiling and linking of tests for
16412 libm.sac (paranoia to be added next) and processing the
16413 pass or failure of the tests.
16414
16415 * testsuite/config/unix-libm.exp:
16416 platform specific proc's for dealing with compiler, linker
16417 and the way we execute and process the test results.
16418
16419 * testsuite/libm.sac/execute.exp:
16420 generic framework for the sac tests. the config and lib
16421 expect code for specific platforms tie it all together.
16422
16423 * testsuite/libm.sac/test_is.c:
16424 changed the output of the test to be consistant with the
16425 other tests. parsing of pass nad fail messages is now fixed.
16426
16427 Fri Jul 23 19:20:07 1993 Per Bothner (bothner@kalessin)
16428
16429 * libc/include/{assert.h, ctype.h, dirent.h, errno.h, fastmath.h,
16430 locale.h, math.h, pwd.h, reent.h, setjmp.h, signal.h, stdio.h,
16431 stdlib.h, string.h, termios.h, time.h, utime.h, utmp.h}: For C++:
16432 #ifdef __cplusplus, surround by extern ""C { ... }.
16433 * libc/include/assert.h: Do *not* protect assert.h against
16434 multiple inclusion! Also, #undef it before #define, to allow
16435 redefinition.
16436 * libc/include/stdio.h (getlogin, cuserid): Removed. These
16437 should be only in unistd.h.
16438
16439 * libc/include/sys/{fcntl.h, reent.h, stat.h, time.h, times.h,
16440 unistd.h}: For C++: #ifdef __cplusplus, surround by extern ""C {
16441 ... }.
16442
16443 Fri Jul 23 10:15:33 1993 Doug Evans (dje@canuck.cygnus.com)
16444
16445 * libc/machine/sparc/Makefile.in: Must create a library, even
16446 if empty.
16447
16448 Wed Jul 21 16:00:37 1993 K. Richard Pixley (rich@sendai.cygnus.com)
16449
16450 * configure.in: set machine_dir for m88k. edit crt0 definition
16451 into makefiles.
16452
16453 * Makefile.in, libc/Makefile.in (crt0): pull up from lower directories.
16454
16455 * libc/Makefile.in (all): also build crt0.o.
16456
16457 * libc/machine/i386/Makefile.in, libc/machine/sparc/Makefile.in,
16458 libc/machine/z8k/Makefile.in, libm/Makefile.in (clean): no need
16459 to remove CRT0.
16460
16461 * libc/machine/m88k/Makefile.in (TOP, TARGETLIB): removed.
16462 (all): reworked to build in place.
16463 (clean): remove lib.a
16464 (Makefile): remove redundant ./, call $(SHELL) rather than sh.
16465
16466 * libc/sys/m88kbug/crt0.c (start): renamed to _start.
16467 (_start): key off edata rather than _start_bss.
16468
16469 Wed Jul 21 14:29:47 1993 david d `zoo' zuhn (zoo@cygnus.com)
16470
16471 * libc/include/sys/unistd.h, libc/include/reent.h,
16472 libc/reent/sbrkr.c: change sbrk to return void* instead of char*.
16473
16474 Tue Jul 20 13:19:18 1993 K. Richard Pixley (rich@sendai.cygnus.com)
16475
16476 * libm/Makefile.in, libc/Makefile.in ($(SUBDIRS)): dollar escape a dollar sign.
16477
16478 * Makefile.in (libc.a): break into two rules, one for libc.a and
16479 one for libc/libc.a. Force subdirs current before rebuilding
16480 library.
16481 (libm.a): break into two rules, one for libm.a and one for
16482 libm/libm.a. Force subdirs current before rebuilding library.
16483
16484 * libc/Makefile.in (SUBLIBS): fix typo.
16485
16486 * libc/sys/Makefile.in (all): force descent into subdirs, then
16487 rebuild library iff out of of date.
16488
16489 Fri Jul 16 17:47:57 1993 K. Richard Pixley (rich@sendai.cygnus.com)
16490
16491 Rework so that library is built and then finished rather than
16492 being built on each invocation of make.
16493
16494 * host/any (machine_dir, sys_dir, signal_dir): these are not
16495 shared and have been moved to their associated Makefile.in's.
16496 (AR_FLAGS): switch to qc which is faster.
16497 * configure.in: no longer assign machine_dir for m88k. set
16498 stub_dir, stub_lib, & crt0 for m68k*-unknown-{aout,coff}. If
16499 stub_dir set, then add to configdirs. add comment about silly
16500 configuration.
16501 (configdirs): drop stub. It will be added only
16502 when needed.
16503 (libm_fp_lib, libc_unix_lib, libc_signal_lib, libc_machine_lib,
16504 libc_sys_dir, fake_sys_dir, libc_fake_sys_lib, stub_dir,
16505 stub_lib, crt0): new variables for tailoring lower level
16506 makefiles. Assign accordingly and edit into makefiles.
16507 * libm/Makefile.in: updated copyright.
16508 (TARGETLIB): removed.
16509 (FLAGS_TO_PASS): removed TARGETLIB, machine_dir, sys_dir.
16510 (SUBDIRS): removed TARGETDEP_DIRS.
16511 (LIBM_FP_LIB, SUBLIBS): new macros.
16512 (all): reworked.
16513 (force): new target to force rebuilds.
16514 (Makefile): call $(SHELL) rather than sh. drop redundant ./
16515 * libc/sys/a29khif/Makefile.in, libc/sys/decstation/Makefile.in,
16516 libc/sys/go32/Makefile.in, libc/sys/h8300hms/Makefile.in,
16517 libc/sys/h8500hms/Makefile.in, libc/sys/m88kbug/Makefile.in,
16518 libc/sys/sh/Makefile.in, libc/sys/sparc64/Makefile.in,
16519 libc/sys/sun4/Makefile.in, libc/sys/sysvi386/Makefile.in,
16520 libc/sys/sysvnecv70/Makefile.in, libc/sys/z8ksim/Makefile.in,
16521 stub/m68kmvme/Makefile.in: updated copyright.
16522 (TARGETLIB, TARGETCRT0, CRT0): macros removed.
16523 (all): reworked. made this the default rule.
16524 (clean): also remove lib.a.
16525 (Makefile): call $(SHELL) rather than sh. drop redundant ./
16526 * stub/Makefile.in: updated copyright.
16527 (TARGETLIB, TARGETCRT0, CRT0, TOP): removed.
16528 (stub_lib): new macro.
16529 (FLAGS_TO_PASS): removed TARGETLIB, stub_dir, TARGETCRT0. Added
16530 RANLIB.
16531 (all): reworked.
16532 (clean, install): assume stub_dir exists.
16533 (Makefile): depend on configure.in. call $(SHELL) rather than
16534 sh. drop redundant ./
16535 * stub/configure.in (stublib): new macro, assign it, edit it into
16536 makefiles.
16537 * Makefile, libc/Makefile.in, doc/Makefile.in, libc/sys/Makefile.in:
16538 updated copyright.
16539 (all): reworked.
16540 (Makefile): call $(SHELL) rather than sh. drop redundant ./
16541 * libc/Makefile.in (TARGETCRT0): removed.
16542 (FLAGS_TO_PASS): dropped TARGETLIB, machine_dir, sys_dir,
16543 TARGETCRT0.
16544 (SUBDIRS): drop TARGETDEP_DIRS.
16545 (LIBC_SIGNAL_LIB, LIBC_SYS_LIB, LIBC_MACHINE_LIB, LIBC_UNIX_LIB,
16546 LIBC_FAKE_SYS_LIB, SUBLIBS): new macros for configuration.
16547 (force): new target to force rebuilds.
16548 * libc/sys/Makefile.in (TARGETCRT0, sys_dir): removed.
16549 (FLAGS_TO_PASS): TARGETLIB, machine_dir, sys_dir, TARGETCRT0
16550 removed.
16551 (clean): assume sys_dir always exists.
16552 * libm/test/Makefile.in (Makefile): call $(SHELL) rather than sh.
16553 drop redundant ./
16554 * libc/ctype/Makefile.in, libc/errno/Makefile.in,
16555 libc/locale/Makefile.in, libc/machine/Makefile.in,
16556 libc/machine/a29k/Makefile.in, libc/machine/h8300/Makefile.in,
16557 libc/machine/h8500/Makefile.in, libc/machine/i386/Makefile.in,
16558 libc/machine/i960/Makefile.in, libc/machine/m68k/Makefile.in,
16559 libc/machine/mips/Makefile.in, libc/machine/necv70/Makefile.in,
16560 libc/machine/sh/Makefile.in, libc/machine/sparc/Makefile.in,
16561 libc/machine/z8k/Makefile.in, libc/reent/Makefile.in,
16562 libc/signal/Makefile.in, libc/stdio/Makefile.in,
16563 libc/stdlib/Makefile.in, libc/string/Makefile.in,
16564 libc/sys/Makefile.in, libc/syscalls/Makefile.in,
16565 libc/time/Makefile.in, libc/unix/Makefile.in,
16566 libm/ieeefp/Makefile.in, libm/math/Makefile.in: updated copyright.
16567 (TARGETLIB): removed.
16568 (all): reworked.
16569 (clean): also remove lib.a.
16570 (Makefile): call $(SHELL) rather than sh. drop redundant ./
16571 * Makefile.in: (machine_dir, sys_dir, stub_dir, stub_lib, CRT0):
16572 new macros.
16573 (SUBDIRS): moved to follow frag inclusion, change stub to
16574 stub_dir.
16575 (FLAGS_TO_PASS): removed machine_dir, sys_dir, signal_dir which
16576 are now set in the libc Makefile.
16577 * libc/machine/Makefile.in (TARGETCRT0, machine_dir): removed.
16578 (FLAGS_TO_PASS): removed TARGETLIB, machine_dir, sys_dir,
16579 TARGETCRT0.
16580 (force): new target to force rebuilds.
16581 * stub/configure.in: determine and set stub_lib for for Makefile.
16582
16583 Thu Jul 15 12:01:27 1993 Doug Evans (dje@canuck.cygnus.com)
16584
16585 * libc/sys/h8300hms/Makefile.in: Make `all' the default target.
16586 crt0.s renamed to crt0.S.
16587 * libc/sys/h8300hms/crt0.S: Add h8/300h support.
16588
16589 * libc/machine/h8300/Makefile.in: Make `all' the default target.
16590 * libc/machine/h8300/{cmpsi.S,ucmpsi.S}: #ifdef out entire file if
16591 h8300h.
16592 * libc/machine/h8300/defines.h: Add macros to handle pointers for
16593 h8300 (16 bits) and h8300h (32 bits).
16594 * libc/machine/h8300/{divsi3.S,mulsi3.S,memcpy.S,memset.S,
16595 reg_memcpy.S,reg_memset.S,strcmp.S}: Add h8300h support.
16596
16597 Thu Jul 15 10:13:29 1993 Ian Lance Taylor (ian@cygnus.com)
16598
16599 * libc/machine/m88k/setjmp.S, Makefile.in: New files; a simple
16600 implementation of setjmp and longjmp for the m88k.
16601 * libc/include/machine/setjmp.h: Added __m88000__ case.
16602
16603 Wed Jul 14 10:10:30 1993 Doug Evans (dje@canuck.cygnus.com)
16604
16605 * configure.in: Recognize h8300h as variant of h8300.
16606
16607 Tue Jul 13 12:24:11 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
16608
16609 * libc/include/sys/unistd.h (read, write): get prototypes right.
16610 (sbrk): New prototype.
16611 * libc/reent/sbrkr.c (sbrkr): Use correct sbrk prototype.
16612 * libc/stdio/local.h: Include unistd.h.
16613 * libc/machine/h8300/syscalls.c: Names have changed.
16614
16615 Mon Jul 12 18:08:42 1993 K. Richard Pixley (rich@cygnus.com)
16616
16617 * configure.in: add sys_dir assignment for m88k-bug.
16618
16619 Thu Jul 8 09:16:21 1993 Doug Evans (dje@canuck.cygnus.com)
16620
16621 * libc/sys/sparc64/sys/syscallasm.h: New macros to handle either
16622 a.out or elf.
16623 * libc/sys/sparc64: all *.S files: Use new macros.
16624 * libc/sys/sparc64/isatty.c: New file.
16625 * libc/sys/sparc64/Makefile.in: Stop using /lib/libc.a for
16626 functions beyond what newlib provides.
16627
16628 Thu Jul 8 09:11:28 1993 Doug Evans (dje@canuck.cygnus.com)
16629
16630 * libc/include/sys/stat.h: Move st_atime so not doubly defined for
16631 svr4.
16632
16633 Thu Jul 8 09:09:16 1993 Doug Evans (dje@canuck.cygnus.com)
16634
16635 * libc/include/machine/ieeefp.h: Add support for h8/300h.
16636
16637 Fri Jul 2 10:11:20 1993 K. Richard Pixley (rich@cygnus.com)
16638
16639 * configure.in: add m88k.
16640 * libc/include/machine/ieeefp.h: add case for m88k. Also add
16641 sanity check so no one else need ever chase what I did to find
16642 this.
16643
16644 * libm/math/Makefile.in (FAKEC): added atanf.c log1pf.c scalbnf.c.
16645
16646 Fri Jul 2 09:15:21 1993 Ian Lance Taylor (ian@cygnus.com)
16647
16648 * doc/makedoc.c: Include <ctype.h>.
16649
16650 Wed Jun 30 09:35:06 1993 Doug Evans (dje@canuck.cygnus.com)
16651
16652 * libc/Makefile.in (FLAGS_TO_PASS): Add TARGET_ASFLAGS.
16653 * libc/sys/Makefile.in (FLAGS_TO_PASS): Add TARGET_ASFLAGS.
16654 * libc/machine/Makefile.in (FLAGS_TO_PASS): Add TARGET_ASFLAGS.
16655
16656 * libm/test/Makefile.in (all): Link with ../../lib[cm].a.
16657
16658 Sun Jun 27 17:05:20 1993 Doug Evans (dje@sphagnum.cygnus.com)
16659
16660 * libc/include/errno.h (ENOSYS): Added.
16661
16662 * libc/unix/getpwd.c (getcwd): Fix typo (_up -> up).
16663
16664 Mon Jun 21 09:03:32 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
16665
16666 * libc/stdio/fflush.c (fflush): Check for reent struct
16667 initialization.
16668 * libc/stdio/fdopen.c (fdopen): Avoid namespace conflict.
16669
16670 Fri Jun 18 16:06:05 1993 Mark Eichin (eichin@rtl.cygnus.com)
16671
16672 * libc/stdlib/dtoastub.c: new file -- move user callable "dtoa"
16673 out of dtoa.c so it doesn't pollute the namespace.
16674 * libc/include/_syslist.h: new file -- mappings from _function to
16675 function, for systems where we can't win (by default, all of them,
16676 until we start updating system calls.)
16677 * libc/syscalls: new directory -- stubs for exporting _function
16678 names as unmodified function names.
16679 * libc/configure.in: add MISSING_SYSCALL_NAMES to enable
16680 _syslist.h on all platforms by default, but put hooks in for
16681 fake_sys_dir so we can include it when we've renamed the system
16682 calls.
16683 * libc/reent/execr.c libc/reent/filer.c libc/reent/fstatr.c
16684 libc/reent/linkr.c libc/reent/sbrkr.c libc/reent/statr.c
16685 libc/signal/raise.c libc/signal/signal.c libc/stdio/fdopen.c
16686 libc/stdio/mktemp.c libc/stdio/tmpnam.c libc/stdlib/abort.c
16687 libc/stdlib/system.c libc/unix/getcwd.c libc/unix/getlogin.c
16688 libc/unix/getpass.c libc/unix/getut.c libc/unix/ttyname.c: change
16689 non ANSI functions to call _function.
16690
16691 Wed Jun 9 09:48:26 1993 Ian Lance Taylor (ian@cygnus.com)
16692
16693 * libc/stdlib/strtoul.c (_strtoul_r): Handle leading 0 correctly
16694 when base 16 is specified. Don't accept non-digits if radix > 10.
16695
16696 Thu Jun 3 10:01:15 1993 Doug Evans (dje@canuck.cygnus.com)
16697
16698 * libc/include/math.h: Rename xxx_r fns to _xxx_r.
16699
16700 Wed Jun 2 16:54:16 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16701
16702 * libc/include/sys/stat.h: Surround text after #endif with
16703 comments.
16704
16705 Wed Jun 2 12:47:32 1993 Ian Lance Taylor (ian@cygnus.com)
16706
16707 * libc/stdlib/mallocr.c: If MALLOC_PROVIDED is defined, just make
16708 _malloc_r, _realloc_r, and free_r call the corresponding
16709 non-reentrant functions.
16710
16711 * libm/math/modf.c (modf): We now take the address of ipart, so
16712 don't make it a register variable.
16713
16714 Tue Jun 1 18:25:54 1993 Doug Evans (dje@canuck.cygnus.com)
16715
16716 * libm/math/*: Rename all xxx_r fns to _xxx_r.
16717
16718 Wed May 26 22:06:35 1993 Roland H. Pesch (pesch@cygnus.com)
16719
16720 * libc/libc.texinfo and embedded docn throughout: formatting
16721 improvements, minor rephrasing for clarity, and improved
16722 reentrancy docn.
16723
16724 Sun May 23 17:29:49 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16725
16726 * libm/ieeefp/infinity.c (maxpowtwof): Fix initialzation bug.
16727
16728 * libc/stdio/cvt.c (_licvt): Print the right value on machines
16729 where sizeof(int) != sizeof(long).
16730
16731 Fri May 21 22:09:32 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
16732
16733 * libc/reent/execr.c, libc/reent/filer.c, libc/reent/linkr.c,
16734 libc/reent/sbrkr.c, libc/reent/statr.c, libc/stdio/tmpnam.c,
16735 libc/stdlib/atol.c, libc/stdlib/rand.c, libc/string/strpbrk.c,
16736 libc/string/strspn.c, libm/ieeefp/isnan.c, libm/math/bessel.c,
16737 libm/math/matherr.c: changes for better docn formatting (info).
16738
16739 * libc/libc.texinfo, libc/ctype/ctype.tex, libc/locale/locale/tex,
16740 libc/reent/reent.tex, libc/signal/signal.tex,
16741 libc/stdio/stdio.tex, libc/stdlib/stdlib.tex,
16742 libc/string/strings.tex, libc/sys/sys.tex, libc/time/time.tex,
16743 libm/libm.texinfo, libm/ieeefp/ieeefp.tex, libm/math/math.tex: use
16744 makeinfo node defaulting to get better Info file node structure.
16745 (Requires recent sac change to doc/makedoc.c and doc/doc.str.)
16746 Also include a few formerly missing sections (subroutines).
16747
16748 * doc/doc.str: delete fossil expansion for "func"
16749
16750 * default.menu, no-signal.menu: delete.
16751
16752 * Makefile.in, libc/Makefile.in, configure.in, host/any: simplify
16753 method used to adjust doc for missing "signals" chapter when
16754 signal_dir is empty.
16755
16756 Thu May 20 21:38:37 MDT 1993 Jeffrey Wheat (cassidy@cygnus.com)
16757
16758 * configure.in: added testsuite/libm.sac
16759
16760 Wed May 19 14:52:34 1993 Doug Evans (dje@thepub.cygnus.com)
16761
16762 * libc/sys/sparc64/crt0.S: Set %g4 to 0 (to test Medium/Anywhere
16763 code model).
16764
16765 Tue May 18 13:17:21 1993 Ian Lance Taylor (ian@cygnus.com)
16766
16767 * libm/Makefile.in: Use $(MAKE) rather than make, and define
16768 MAKEOVERRIDES to be empty.
16769
16770 Mon May 17 08:42:44 1993 Ian Lance Taylor (ian@cygnus.com)
16771
16772 * configure.in: Don't build mips-*-* with -msoft-float, since that
16773 makes it incompatible with hard floating point.
16774
16775 Mon May 17 00:03:35 MDT 1993 Jeffrey Wheat (cassidy@cygnus.com)
16776
16777 * Makefile.in: added recursive 'make check'
16778
16779 Thu May 13 16:24:18 MDT 1993 Jeffrey Wheat (cassidy@cygnus.com)
16780
16781 * configure.in: added ./testsuite ./testsuite/libm.paranoia
16782 * ./testsuite/Makefile.in: created
16783 * ./testsuite/libm.paranoia: paranoia tests added
16784
16785 Thu May 13 10:30:24 1993 Ian Lance Taylor (ian@cygnus.com)
16786
16787 * configure.in: For mips-*-* set machine_dir to mips.
16788
16789 * libc/machine/mips: New directory.
16790 * libc/machine/mips/Makefile.in: New file.
16791 * libc/machine/mips/setjmp.S: New file; simplistic MIPS version of
16792 setjmp and longjmp.
16793 * libc/include/machine/setjmp.h: Added __mips__ case.
16794
16795 * libc/machine/lmips: Removed unused and useless directory.
16796
16797 Mon May 3 10:22:31 1993 Ian Lance Taylor (ian@cygnus.com)
16798
16799 * configure.in: Accept i486-*-sco* as well as i386-*-sco*.
16800
16801 Thu Apr 15 15:16:44 1993 Doug Evans (dje@canuck.cygnus.com)
16802
16803 * libc/sys/sparc64/crt0.S: Add comment (%g1 contains atexit arg at
16804 start up).
16805
16806 Fri Apr 9 13:32:26 1993 Ian Lance Taylor (ian@cygnus.com)
16807
16808 * libc/include/machine/setjmp-dj.h: Use _SETJMP_DJ_H rather than
16809 SETJMP_H.
16810
16811 Thu Apr 8 10:07:18 1993 Doug Evans (dje@canuck.cygnus.com)
16812
16813 * libm/test/convert.c: structure member errno -> errno_val.
16814 Must include <errno.h> to use errno, it's a macro now.
16815 * libm/test/math.c: Ditto.
16816 * libm/test/math2.c: Include errno.h.
16817 * libm/test/string.c: Ditto.
16818 * libm/test/test.h: structure member errno -> errno_val.
16819 Remove extern int errno decl.
16820
16821 Thu Apr 8 07:56:33 1993 Ian Lance Taylor (ian@cygnus.com)
16822
16823 * libc/stdio/Makefile.in: Added dependencies on local header
16824 files.
16825 * libc/stdio/std.h, libc/stdio/vfprintf.h: Removed unused header
16826 files.
16827
16828 Wed Apr 7 16:19:32 1993 Ian Lance Taylor (ian@cygnus.com)
16829
16830 * libc/include/machine/ieeefp.h: Added __MIPSEB__ case.
16831
16832 Wed Apr 7 10:55:21 1993 Doug Evans (dje@canuck.cygnus.com)
16833
16834 * libc/stdio/siprintf.c libc/stdio/sscanf.c libc/stdio/vsprintf.c:
16835 Initialize _data.
16836
16837 * libc/stdio/vfprintf.c: No need to declare _icvt, _licvt, _sicvt.
16838 * libc/stdio/local.h: Add prototype for _licvt.
16839
16840 * libc/stdio/ungetc.c (__submore): Use _malloc_r,_realloc_r
16841 instead of malloc,reealloc.
16842
16843 * libc/stdlib/local.h: New file.
16844 * libc/stdlib/efgcvt.c: #include local.h.
16845 (gcvt): Fix call to _gcvt.
16846 * libc/stdlib/ecvtbuf.c: #include local.h.
16847
16848 * libc/stdlib/Makefile.in: new files mallocr.c mstats.c.
16849 * libc/stdlib/mallocr.c mstats.c malloc.h: New files.
16850 * libc/stdlib/malloc.c: main routines moved to mallocr.c.
16851
16852 * libc/stdlib/atexit.c: moved global data to struct _reent.
16853 * libc/stdlib/exit.c: use struct _atexit in struct _reent.
16854
16855 * libc/reent/reent.c (inpure_data): _REENT_INIT macro modified.
16856
16857 Wed Apr 7 09:41:50 1993 Doug Evans (dje@canuck.cygnus.com)
16858
16859 * libc/include/sys/reent.h: Stuff required by ANSI headers moved
16860 here from ../reent.h.
16861
16862 Tue Apr 6 12:56:01 1993 Ian Lance Taylor (ian@cygnus.com)
16863
16864 * Makefile.in (MATHOBJS_IN_LIBC): List of object files which
16865 should be provided in both libc.a and libm.a.
16866 (libc.a): Depend on targ-include and libm.a. Copy
16867 $(MATHOBJS_IN_LIBC) from libm.a to libc.a.
16868 (libm.a): Depend on targ-include.
16869 * configure.in (subdirs): Removed libc/math.
16870
16871 Mon Apr 5 10:18:16 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16872
16873 * libm/ieeefp/infinity.c (maxpowtwo): Fix initialization bug.
16874
16875 Sat Apr 3 11:06:07 1993 Doug Evans (dje@canuck.cygnus.com)
16876
16877 * libc/include/{errno.h, math.h, stdio.h, stdlib.h}: Use
16878 sys/reent.h instead of reent.h.
16879 * libc/include/reent.h: Split into two parts: stuff needed by ANSI
16880 headers moved to sys/reent.h.
16881 * libc/include/signal.h: _MAX_SIGNALS moved to sys/signal.h.
16882 * libc/include/sys/signal.h: Define _MAX_SIGNALS if
16883 __need__MAX_SIGNALS defined.
16884 * libc/include/stdio.h: struct __sFILE moved to sys/reent.h.
16885 std{in,out,err} refer to new _std{in,out,err} members.
16886
16887 Fri Apr 2 11:27:12 1993 Doug Evans (dje@canuck.cygnus.com)
16888
16889 * libc/include/sys/signal.h: #define _SYS_SIGNAL_H for general
16890 case.
16891
16892 Fri Apr 2 09:41:10 1993 Doug Evans (dje@canuck.cygnus.com)
16893
16894 * libc/sys/sparc64/execve.S (execve): Insert nop in delay slot,
16895 rather than whatever macro seterrno() has.
16896
16897 Thu Apr 1 16:47:08 1993 Doug Evans (dje@canuck.cygnus.com)
16898
16899 * libc/locale/locale.c: Reentrant routines _r_xxx renamed to
16900 _xxx_r. struct reent_struct renamed to struct _reent for ANSI.
16901
16902 * libc/include/machine/fastmath.h: Use _HAVE_STDC instead of
16903 __STDC__.
16904
16905 * libc/reent/{execr.c, filer.c, fstatr.c, linkr.c, reent.c,
16906 reent.tex, sbrkr.c, statr.c}: _r_xxx reentrant routines renamed to
16907 _xxx_r. struct reent_struct renamed to struct _reent for ANSI.
16908
16909 * libc/signal/signal.c: Reentrant routines _r_xxx renamed to
16910 _xxx_r. struct reent_struct renamed to struct _reent for ANSI.
16911
16912 * libc/stdio/{fclose.c, fdopen.c, findfp.c, fiprintf.c, flags.c,
16913 fopen.c, fprintf.c, freopen.c, fscanf.c, fseek.c, ftell.c,
16914 fwalk.c, getchar.c, gets.c, iprintf.c, local.h, makebuf.c,
16915 mktemp.c, perror.c, printf.c, putchar.c, puts.c, refill.c,
16916 remove.c, rename.c, scanf.c, setvbuf.c, siprintf.c, sprintf.c,
16917 sscanf.c, stdio.c, tmpfile.c, tmpnam.c, vfprintf.c, vfprintf.h,
16918 vfscanf.c, vprintf.c, vsprintf.c}: Reentrant routines _r_xxx
16919 renamed to _xxx_r. struct reent_struct renamed to struct _reent
16920 for ANSI. structure members given leading "_" for ANSI. Use
16921 _HAVE_STDC instead of __STDC__ and _HAVE_STDARG.
16922
16923 * libc/stdlib/{__adjust.c, calloc.c, dtoa.c, ecvtbuf.c, malloc.c,
16924 mprec.c, mprec.h, rand.c, std.h, strtod.c, strtol.c, strtoul.c,
16925 system.c}: Reentrant routines _r_xxx renamed to _xxx_r. struct
16926 reent_struct renamed to struct _reent for ANSI.
16927 Structure members given leading "_" for ANSI.
16928 _CONST --> const in prototypes.
16929 Use _HAVE_STDC instead of __STDC__.
16930
16931 * libc/string/strtok.c: Reentrant routines _r_xxx renamed to
16932 _xxx_r.
16933 struct reent_struct renamed to struct _reent for ANSI.
16934 Structure members given leading "_" for ANSI.
16935
16936 * libc/time/asctime.c: Reentrant routines _r_xxx renamed to
16937 _xxx_r.
16938 struct reent_struct renamed to struct _reent for ANSI.
16939
16940 * libm/math/{acos.h, acosh.h, asin.c, asinh.h, atanh.h, bessel.h,
16941 cbrt.h, cosh.h, erf.c, erf.h, error.c, exp.c, fmod.c, frexp.h,
16942 gamma.h, hypot.h, ldexp.c, log.h, log10.c, log1p.c log2.c,
16943 mathimpl.h, pow.c, remainder.c, sincos.c, sinh.h, sqrt.h, tan.c,
16944 tanh.h}: struct reent_struct renamed to struct _reent for ANSI.
16945
16946 * libc/include/{_ansi.h, ctype.h, math.h, reent.h, locale.h,
16947 signal.h, stdio.h, stdlib.h, string.h, time.h}:
16948 Use _HAVE_STDC instead of __STDC__ and _HAVE_STDARG.
16949 #ifndef _STRICT_ANSI non-ANSI routines.
16950 Reentrant routines renamed from _r_xxx to _xxx_r.
16951 No need to use _STRICT_ANSI on _xxx_r reentrant routines.
16952 Use _STRICT_ANSI instead of __STRICT_ANSI, _ANSI_SOURCE, etc.
16953 Clean up namespace (structure members have leading "_").
16954 struct reent_struct renamed to struct _reent for ANSI compliance.
16955 _CONST --> const in function prototypes.
16956
16957 * libc/include/string.h: Add NULL and size_t.
16958
16959 * libc/sys/sparc64/Makefile.in: New syscall routines for link,
16960 unlink, wait, wait4. Reentrant syscall routines close, fork,
16961 fstat, link, lseek, open, read, sbrk, stat, unlink, wait, wait4,
16962 write.
16963 * libc/sys/sparc64/cerror.S (cerror_r): New routine.
16964 * libc/sys/sparc64/{close.S, fork.S, fstat.S, link.S, lseek.S,
16965 open.S, read.S, sbrk.S, stat.S, unlink.S, wait.S, wait4.S,
16966 write.S}: Define reentrant versions.
16967 * libc/sys/sparc64/sys/syscallasm.h (defsyscall_r): New macro for
16968 reentrant syscalls.
16969
16970 * libc/sys/sparc64/crt0.S (start): Fix initialization of environ.
16971
16972 * libc/include/stdlib.h (RAND_MAX): Fix value.
16973
16974 Thu Apr 1 12:28:30 1993 Ian Lance Taylor (ian@cygnus.com)
16975
16976 * libc/sys/a29khif/_main.c: Removed unnecessary file.
16977 * libc/sys/a29khif/Makefile.in (OFILES): Removed _main.c, moved
16978 VPATH support targets after all: target.
16979
16980 * stub/mvme135/mvme.S: Renamed exceptionhandler to
16981 exceptionHandler, which is what mvme135-stub.c expects.
16982
16983 Wed Mar 31 17:42:03 1993 Doug Evans (dje@cygnus.com)
16984
16985 * libc/stdio/tmpnam.c (worker): Fix test for _r_open() failure.
16986
16987 * libc/unix/getpass.c (getpass): Use stdin,stderr instead of
16988 def_stdin/def_stderr (latter removed from stdio.h to make it ANSI
16989 compliant).
16990
16991 Tue Mar 30 09:58:21 1993 Doug Evans (dje@canuck.cygnus.com)
16992
16993 * libc/reent/execr.c (_r_wait): Re-order args to make reent_struct
16994 first.
16995 libc/reent/filer.c (_r_open, _r_close, _r_lseek, _r_read,
16996 _r_write): Ditto.
16997 libc/reent/fstatr.c (_r_fstat): Ditto.
16998 libc/reent/linkr.c (_r_link, _r_unlink): Ditto.
16999 libc/reent/sbrkr.c (_r_sbrk): Ditto.
17000 libc/reent/statr.c (_r_stat): Ditto.
17001
17002 * libc/stdio/fopen.c (_r_fopen): Re-order args to _r_open.
17003 * libc/stdio/freopen.c (freopen): Ditto for _r_open, _r_free.
17004 * libc/stdio/fseek.c (fseek): Ditto for _r_fseek.
17005 * libc/stdio/makebuf.c (__smakebuf): Ditto for _r_fstat.
17006 * libc/stdio/mktemp.c (_gettemp): Ditto for _r_stat, _r_open.
17007 * libc/stdio/remove.c (_r_remove): Ditto for _r_unlink.
17008 * libc/stdio/rename.c (_r_rename): Ditto for _r_link, _r_unlink.
17009 * libc/stdio/stdio.c (__sread): Ditto for _r_read.
17010 (__swrite): Ditto for _r_lseek, _r_write.
17011 (__sseek): Ditto for _r_lseek.
17012 (__close): Ditto for _r_close.
17013 * libc/stdio/tmpnam.c (worker): Ditto for _r_open, _r_close.
17014
17015 * libc/stdlib/malloc.c (_r_morecore): Re-order args to _r_sbrk.
17016 * libc/stdlib/system.c (_r_system): Ditto for _r_wait.
17017
17018 * libc/include/reent.h: Re-order arguments to _r_xxx syscall fns
17019 to make reent_struct the first argument (and thus consistent with
17020 the rest of newlib).
17021
17022 * stub/mvme135/mvme135-stub.c (initializeRemcomErrorFrame): Remove
17023 reference to __STDC__.
17024
17025 Mon Mar 29 12:34:32 1993 Doug Evans (dje@canuck.cygnus.com)
17026
17027 * libc/stdlib/exit.c (exit): Use _REENT->__cleanup instead of
17028 global __cleanup.
17029
17030 Wed Mar 24 11:54:35 1993 Doug Evans (dje@canuck.cygnus.com)
17031
17032 * libc/stdio/freopen.c (freopen): Ensure stdio is initialized
17033 first.
17034 libc/stdio/fclose.c (fclose): Ditto.
17035
17036 Tue Mar 23 01:26:52 1993 Doug Evans (dje@rtl.cygnus.com)
17037
17038 * Run through indent and rename reentrant routines for ANSI.
17039 libc/stdio/{clearerr.c cvt.c fclose.c fdopen.c feof.c ferror.c
17040 fflush.c fgetc.c fgetpos.c fgets.c findfp.c fiprintf.c flags.c
17041 fopen.c fprintf.c fputc.c fputs.c fread.c freopen.c fscanf.c
17042 fseek.c fsetpos.c ftell.c fvwrite.c fwalk.c fwrite.c getc.c
17043 getchar.c gets.c iprintf.c makebuf.c mktemp.c perror.c printf.c
17044 putc.c putchar.c puts.c refill.c remove.c rename.c rewind.c rget.c
17045 scanf.c setbuf.c setvbuf.c siprintf.c sprintf.c sscanf.c stdio.c
17046 tmpfile.c tmpnam.c ungetc.c vfprintf.c vfscanf.c vprintf.c
17047 vsprintf.c wbuf.c wsetup.c local.h}
17048
17049 * libc/locale/locale.c: Reformat and rename for ANSI, GNU style.
17050
17051 * Run through indent and rename xxx_r fns to _r_xxx for ANSI.
17052 libc/stdlib/{__adjust.c __exp10.c __ten_mu.c abort.c abs.c
17053 assert.c atexit.c atof.c atoi.c atol.c bsearch.c calloc.c div.c
17054 dtoa.c ecvtbuf.c efgcvt.c exit.c getenv.c labs.c ldiv.c malloc.c
17055 mbtowc.c mprec.c putenv.c qsort.c rand.c setenv.c strdup.c
17056 strtod.c strtol.c strtoul.c system.c wctomb.c mprec.h}
17057
17058 * Run through indent.
17059 libc/string/{bcmp.c bcopy.c bzero.c index.c memchr.c memcmp.c
17060 memcpy.c memmove.c memset.c rindex.c strcat.c strchr.c strcmp.c
17061 strcoll.c strcpy.c strcspn.c strerror.c strlen.c strncat.c
17062 strncmp.c strncpy.c strpbrk.c strrchr.c strspn.c strstr.c strtok.c
17063 strxfrm.c}
17064
17065 * libc/time/{asctime.c clock.c ctime.c difftime.c gmtime.c
17066 localtime.c mktime.c strftime.c time.c}:
17067 Run through indent and rename xxx_r (reentrant) fns to _r_xxx for ANSI.
17068
17069 * Reformatting + renaming (for ANSI, GNU style, consistency).
17070 libc/include/{_ansi.h, assert.h, ctype.h, errno.h, fastmath.h,
17071 ieeefp.h, locale.h, math.h, paths.h, pwd.h, reent.h, setjmp.h,
17072 signal.h, stdio.h, stdlib.h, string.h, time.h, unistd.h}
17073
17074 Fri Mar 19 11:28:01 1993 Doug Evans (dje@cygnus.com)
17075
17076 * libc/include/stdio.h (stdin_r): Fix.
17077
17078 Fri Mar 19 09:43:48 1993 Ian Lance Taylor (ian@cygnus.com)
17079
17080 * Makefile.in: Unexport some variables to keep GNU make from
17081 putting them in the environment and using up needed ARG_MAX space
17082 (a hack is used to let this work with older makes as well).
17083
17084 Tue Mar 16 15:11:08 1993 Ian Lance Taylor (ian@cygnus.com)
17085
17086 * Makefile.in: Use $(MAKE) rather than make.
17087 (MAKEOVERRIDES): Define to be empty.
17088 (FLAGS_TO_PASS): Don't pass down LD (it's not used).
17089 (libc.a, libm.a): Depend on targ-include.
17090 * host/any (LD): Don't define.
17091 (INCLUDES): Use targ-include.
17092 * stub/Makefile.in (MAKEOVERRIDES): Define to be empty.
17093 (FLAGS_TO_PASS): Don't pass down LD (it's not used).
17094 * libc/Makefile.in: Use $(MAKE) rather than make.
17095 (MAKEOVERRIDES): Define to be empty.
17096 (FLAGS_TO_PASS): Don't pass LD (it's not used).
17097 (all): Rewrote to be slightly smaller.
17098 * libc/machine/Makefile.in, libc/sys/Makefile.in (MAKEOVERRIDES):
17099 Define to be empty.
17100 (FLAGS_TO_PASS): Don't pass LD (it's not used).
17101 * libm/Makefile.in (FLAGS_TO_PASS): Don't pass LD (it's not used).
17102
17103 Mon Mar 15 08:45:41 1993 Ian Lance Taylor (ian@cygnus.com)
17104
17105 * libc/sys/go32/gerrno.s: Renamed from errno.s to avoid conflict
17106 with errno/errno.c.
17107
17108 Fri Mar 12 09:46:54 1993 Ian Lance Taylor (ian@cygnus.com)
17109
17110 * Changes for reentrancy.
17111 libc/stdio/fdopen.c, libc/stdio/freopen.c, libc/stdio/perror.c:
17112 Use ptr->_errno, not errno.
17113 libc/stdio/mktemp.c (mkstemp_r, mktemp_r): New functions.
17114 libc/stdio/remove.c (remove_r): New function.
17115 libc/stdio/rename.c (rename_r): New function.
17116 libc/stdio/fopen.c, libc/stdio/freopen.c, libc/stdio/fseek.c,
17117 libc/stdio/makebuf.c, libc/stdio/mktemp.c, libc/stdio/remove.c,
17118 libc/stdio/rename.c, libc/stdio/stdio.c, libc/stdio/tmpnam.c: Use
17119 reentrant versions of system calls.
17120 libc/stdio/gets.c: Call getchar_f, not nonexistent getchar_r.
17121 libc/stdio/scanf.c: Use stdin_r, not nonexistent stdin_n.
17122 libc/stdio/tmpfile.c: Use tmpnam_f, not nonexistent tmpnam_r.
17123 libc/stdio/findfp.c: Include <string.h>.
17124 libc/stdio/fread.c, libc/stdio/rget.c, libc/stdio/scanf.c: Include
17125 "local.h".
17126 libc/stdio/wbuf.c: Include "fvwrite.h"
17127
17128 * libc/stdlib/{dtoa.c, ecvtbuf.c, mprec.c, strtod.c}: Include
17129 <string.h>.
17130 libc/stdlib/malloc.c: Call sbrk_r rather than sbrk.
17131 (NULL): Don't define if already defined.
17132 libc/stdlib/system.c: Call reentrant versions of system calls.
17133 (system_r): New function.
17134
17135 * Changes for reentrancy.
17136 libc/include/_ansi.h (_PARAMS): New macro.
17137 libc/include/errno.h: Define errno as a macro that calls __errno.
17138 (__errno_r): New macro for reentrant code.
17139 libc/include/math.h: Include reent.h. Declare many reentrant
17140 functions.
17141 (signgam): Now a macro, not a variable.
17142 (struct exception): Added err field.
17143 libc/include/reent.h: Don't declare __sglue. Added function
17144 declarations.
17145 (struct reent_struct): Moved errno to beginning. Added _signgam.
17146 libc/include/stdio.h, libc/include/stdlib.h: Added function
17147 declarations.
17148
17149 * More reentrancy hacking.
17150 libc/errno/errno.c (__errno): New function.
17151 libc/reent/execr.c, libc/reent/filer.c, libc/reent/fstatr.c,
17152 libc/reent/linkr.c, libc/reent/sbrkr.c, libc/reent/statr.c: New
17153 files.
17154
17155 * Added many new reentrant functions to libm/math/*.
17156 libm/math/error.c (__matherror): Added reent_struct pointer
17157 argument. Changed all callers.
17158 libm/math/gamma.c (signgam): Removed. Set ptr->_signgam, instead.
17159 libm/math/exp.h, libm/math/pow.h, libm/math/sincos.h,
17160 libm/math/tan.h: Removed obsolete unused header files.
17161
17162 * libc/sys/a29khif/stubs.s: Use register lr0, not v0.
17163
17164 * libc/sys/sun/Makefile.in (COPYOFILES): Don't pull in errno.o.
17165
17166 Mon Mar 8 16:43:43 1993 Steve Chamberlain (sac@thepub.cygnus.com)
17167
17168 * libc/sys/a29khif/stubs.s: clobber safe register, and fill all
17169 delay slots.
17170
17171 Tue Mar 2 14:47:00 1993 Jeffrey Osier (jeffrey@fowanton.cygnus.com)
17172
17173 * libc/libc.texinfo: comment out reentrancy chapter (duh)
17174
17175 Tue Mar 2 14:34:16 1993 Jeffrey Osier (jeffrey@fowanton.cygnus.com)
17176
17177 * libc/reent/reent.tex: New file. (text from
17178 newlib/libc/libc.texinfo)
17179 * libc/stdio/tmpnam.c: fixed doc typo
17180 * libc/stdlib/rand.c: fixed doc typo
17181
17182 Tue Mar 2 14:34:16 1993 Jeffrey Osier (jeffrey@fowanton.cygnus.com)
17183
17184 * libc/reent/reent.tex: New file. (text from
17185 newlib/libc/libc.texinfo)
17186
17187 Fri Feb 26 12:20:54 1993 Steve Chamberlain (sac@thepub.cygnus.com)
17188
17189 support for reentrancy
17190 * libc/reent/reent.c, libc/reent/Makefile.in, libc/reent/reent.c:
17191 new files
17192 * libc/errno/errno.c, libc/include/ieeefp.h,
17193 libc/include/locale.h, libc/include/reent.h,
17194 libc/include/signal.h, libc/include/stdio.h,
17195 libc/include/stdlib.h, libc/include/string.h, libc/include/time.h,
17196 libc/signal/signal.c libc/stdio/cvt.c, libc/stdio/fclose.c,
17197 libc/stdio/fdopen.c, libc/stdio/fflush.c, libc/stdio/fgets.c,
17198 libc/stdio/findfp.c, libc/stdio/flags.c, libc/stdio/fopen.c,
17199 libc/stdio/fputc.c, libc/stdio/freopen.c, libc/stdio/fseek.c,
17200 libc/stdio/ftell.c, libc/stdio/fwalk.c, libc/stdio/getchar.c,
17201 libc/stdio/gets.c, libc/stdio/glue.h, libc/stdio/iprintf.c,
17202 libc/stdio/local.h, libc/stdio/makebuf.c, libc/stdio/perror.c,
17203 libc/stdio/printf.c, libc/stdio/putchar.c, libc/stdio/puts.c,
17204 libc/stdio/refill.c, libc/stdio/scanf.c, libc/stdio/setvbuf.c,
17205 libc/stdio/sprintf.c, libc/stdio/tmpfile.c, libc/stdio/tmpnam.c,
17206 libc/stdio/ungetc.c, libc/stdio/vfprintf.c, libc/stdio/vfprintf.h,
17207 libc/stdio/vfscanf.c, libc/stdio/vprintf.c, libc/stdio/wsetup.c,
17208 libc/stdlib/__adjust.c, libc/stdlib/__exp10.c,
17209 libc/stdlib/assert.c, libc/stdlib/atexit.c, libc/stdlib/atol.c,
17210 libc/stdlib/dtoa.c, libc/stdlib/ecvtbuf.c, libc/stdlib/malloc.c,
17211 libc/stdlib/mprec.c, libc/stdlib/mprec.h, libc/stdlib/rand.c,
17212 libc/stdlib/setenv.c, libc/stdlib/std.h, libc/stdlib/strtod.c,
17213 libc/stdlib/strtol.c, libc/stdlib/strtoul.c, libc/string/strtok.c,
17214 libc/time/asctime.c, libc/time/localtime.c, libc/time/mktime.c,
17215 libc/time/strftime.c: modify to provide reentracy.
17216
17217 new routines:
17218 strtok_r, asctime_r, fdopen_r, _cleanup_r, fopen_r, iprintf_r,
17219 perror_r, printf_r, putchar_r, puts_r, scanf_r, sprintf_r,
17220 tmpfile_r, vfiprintf_r, vfprintf_r, strtod_r, dtoa_r, rand_r,
17221 srand_r, strtoul_r,strtol_r, free_r, malloc_r, morecore_r,
17222 mstats_r, realloc_r, localeconv_r, setlocale_r
17223
17224 Wed Feb 17 20:17:15 1993 Mark Eichin (eichin@cygnus.com)
17225
17226 * libc/include/machine/ieeefp.h, libc/include/machine/setjmp.h,
17227 libc/include/sys/config.h, libc/include/sys/signal.h,
17228 libc/include/sys/stat.h, libc/include/sys/types.h: For compiler
17229 provided macros (such as m68000), use the ansi version
17230 (__m68000__) so that the library can be used with code compiled
17231 -ansi. In particular, m68000, mc68000, _AM29K, i386, MIPSEL, unix,
17232 and sparc.
17233
17234 Wed Feb 17 13:01:34 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
17235
17236 * configure.in (sparc*): Don't set -fsoft-float for sparc
17237 configurations. Do set -fsoft-float for sparclite configurations.
17238
17239 Fri Feb 12 16:25:52 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
17240
17241 * default.menu, no-signal.menu: alternate forms of libc main menu
17242 (in newlib rather than newlib/libc due to configuration restrictions)
17243
17244 * configure.in: select one of the two menus above, link to
17245 libc.menu
17246
17247 * libc/libc.texinfo: include menu from separate file
17248
17249 Fri Feb 12 12:50:06 1993 Ian Lance Taylor (ian@cygnus.com)
17250
17251 * Makefile.in (FLAGS_TO_PASS): Put INSTALL back in.
17252 (info): Split long shell command in half.
17253 * libc/Makefile.in (info, targetdep.tex): Don't pass everything to
17254 sub-makes, just CHEW and TARGETDOC.
17255 (targetdep.tex): Removed now special handling of sys and machine
17256 subdirectories, made obsolete some time ago.
17257 * libc/machine/Makefile.in (doc): Don't pass everything to
17258 sub-make, just CHEW and TARGETDOC.
17259 (Makefile): New target.
17260 * libc/sys/Makefile.in (Makefile): New target.
17261
17262 Thu Feb 11 15:25:15 1993 Ian Lance Taylor (ian@cygnus.com)
17263
17264 * Makefile.in (here and most subdirectories): Only pass down CHEW
17265 and TARGETDOC when making info, not for other targets.
17266
17267 * Makefile.in (here and most subdirectories), host/any: Use $(AR)
17268 $(AR_FLAGS) rather than $(ARUPDATE).
17269
17270 Wed Feb 10 11:57:52 1993 Ian Lance Taylor (ian@cygnus.com)
17271
17272 * Try to reduce command line length:
17273 * Makefile.in (FLAGS_TO_PASS): don't pass down exec_prefix,
17274 CC_FOR_BUILD, CFLAGS_FOR_BUILD, INSTALL or CHEW.
17275 (info, docs): pass CC_FOR_BUILD and CFLAGS_FOR_BUILD to doc.
17276 (info): Pass CHEW to other subdirs.
17277
17278 Tue Feb 9 14:01:42 1993 Mark Eichin (eichin@cygnus.com)
17279
17280 * configure.in: add signal_dir, like unix_dir, but by default it
17281 is set to "signal" so that a29khif can turn it off (since a29khif
17282 has raise() as part of machine-specific signal.s.)
17283
17284 Fri Jan 15 12:09:50 1993 Steve Chamberlain (sac@thepub.cygnus.com)
17285
17286 * libc/sys/config.h, libc/machine/ieeefp.h: add Z8000 support
17287 * libc/stdio/Makefile.in: pass CFLAGS so vfiprintf.c gets built
17288 correctly.
17289 * libc/stdio/fdopen.c, libc/stdio/fgets.c, libc/stdio/fscanf.c,
17290 libc/stdio/vfprintf: type lint.
17291 * libc/sys/z8ksim/crt0.c (start): Z8001/Z8002 independent
17292 initialzation code.
17293 * libc/sys/z8ksim/glue.c: Z8001/Z8002 clean system calls.
17294
17295 Tue Dec 29 10:15:33 1992 Ian Lance Taylor (ian@cygnus.com)
17296
17297 * stub/mvme135/mvme135-asm.S: new file.
17298 stub/mvme135mvme135-stub.c: moved all assembler routines into
17299 mvme135-asm.S.
17300 stub/mvme135/Makefile.in: build mvme135-stub.o.
17301
17302 Mon Dec 28 12:40:43 1992 Ian Lance Taylor (ian@cygnus.com)
17303
17304 * Makefile.in: don't pass down $(CPP); use $(CC) -E in
17305 sub-Makefiles instead, to try to avoid line length limitations.
17306
17307 Mon Dec 21 18:36:13 1992 Per Bothner (bothner@rtl.cygnus.com)
17308
17309 * libc/include/unistd.h (read, write): Use void* instead of
17310 char*.
17311
17312 Thu Dec 17 13:49:46 1992 Mark Eichin (eichin@cygnus.com)
17313
17314 * stub/go32/resetpc: sample script to send a reset packet to the
17315 stub
17316
17317 * stub/go32/I386STUB.C: new file, gdb/i386stub.c modified for the
17318 DOS environment, which compiles with Turbo C.
17319
17320 * stub/go32/DSER32.LNK: new file, linker commands for serial
17321 remote stub.
17322
17323 * stub/go32/CONTROL.C: turn off debug_mode, add CYGNUS tag line to
17324 start up message to identify version; call set_debug_traps.
17325
17326 * stub/go32/DEBUG.C: turn off debug_mode (so stub doesn't need any
17327 keyboard interaction); call handle_exception() in go_til_stop,
17328 rather than return, so that the remote stub gets control.
17329
17330 * stub/go32/MAKEFILE: fixed to actually use DOS commands (del and
17331 rename, rather than mv), set flags that work with current Turbo C,
17332 including using the /3 flag; also, add commands to build dser32.
17333
17334 * stub/go32/DEBUG32.LNK, stub/go32/GO32.LNK: fix paths to match
17335 default Turbo C installation (\tc rather than \usr)
17336
17337 * stub/go32/MONO.C (printf): current Turbo C uses "..." instead of
17338 "&..."
17339
17340 Mon Dec 14 09:37:33 1992 Steve Chamberlain (sac@thepub.cygnus.com)
17341
17342 * libc/include/math.h: added _DOUBLE_IS_32BITS checks
17343
17344 Thu Nov 12 22:31:04 1992 Steve Chamberlain (sac@thepub.cygnus.com)
17345
17346 * libc/stdio/cvt.c (licvt): new function to convert ints when
17347 sizeof(int) != sizeof(long).
17348
17349 * libc/include/stdio.h: added prototype for iprintf.
17350 * libc/include/machine/limits.h machine/ieeefp.h: z8k stuff
17351
17352 Tue Nov 10 12:18:12 1992 Ian Lance Taylor (ian@cygnus.com)
17353
17354 * libc/machine/m68k/setjmp.S: use __USER_LABEL_PREFIX__ and
17355 __REGISTER_PREFIX__.
17356
17357 Mon Nov 2 13:50:14 1992 Ian Lance Taylor (ian@cygnus.com)
17358
17359 * libc/sys/m68kbare: moved into stub directory.
17360
17361 Mon Nov 2 13:40:42 1992 Ian Lance Taylor (ian@cygnus.com)
17362
17363 * configure.in, Makefile.in: created new directory stub, to hold
17364 sample code for specific targets.
17365
17366 Wed Oct 28 02:19:55 1992 Mark Eichin (eichin@cygnus.com)
17367
17368 * restored libc/sys/go32/sys/fcntl.h, to override incorrect values
17369 in the unified libc/include/sys/fcntl.h.
17370
17371 Wed Oct 21 13:55:58 1992 Doug Evans (dje@rtl.cygnus.com)
17372
17373 * libc/stdlib/ecvtbuf.c: (print_f,_gcvt): printf("%f", 0.01)
17374 printed .01, not 0.01.
17375
17376 Mon Oct 19 11:05:55 1992 Ian Lance Taylor (ian@cygnus.com)
17377
17378 * configure.in: compile with -m68000 for m68* targets.
17379
17380 Sun Oct 18 05:29:05 1992 Mark Eichin (eichin@cygnus.com)
17381
17382 * libm/math/remainder.c (remainder): document the svr4 and sunos
17383 references used to construct the function.
17384
17385 Sat Oct 17 21:46:16 1992 Mark Eichin (eichin@cygnus.com)
17386
17387 * libm/math/remainder.c (rint, remainder): fix old typos.
17388 * libm/math/Makefile.in: actually build remainder.c (functions
17389 rint and remainder, from SysVr4 Programmer's Guide floor(3m) man
17390 page.)
17391
17392 Thu Oct 15 07:48:05 1992 Ian Lance Taylor (ian@cygnus.com)
17393
17394 * libc/string/bcopy.c: BSD version works on overlapping strings,
17395 so ours should too.
17396
17397 * libc/stdlib/system.c: always invoke /bin/sh, not getenv
17398 ("SHELL").
17399
17400 Wed Oct 14 11:07:11 1992 Ian Lance Taylor (ian@cygnus.com)
17401
17402 * Makefile.in (docs): new target.
17403
17404 Wed Oct 14 07:44:25 1992 Ian Lance Taylor (ian@cygnus.com)
17405
17406 * libc/include/sys/times.h: define clock_t as required by POSIX.
17407 libc/include/time.h: protect clock_t from multiple definitions.
17408
17409 Wed Oct 7 11:02:21 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
17410
17411 * libm/math/sqrt.h (sqrt): actually, the final version of fp-bit
17412 does not need more than the original three iterations to get
17413 within 1 ulp. (Paranoia tests for rounding to better than that,
17414 but further iterations *don't* help, only more subtle changes
17415 can.)
17416
17417 Tue Oct 6 09:22:12 1992 Ian Lance Taylor (ian@cygnus.com)
17418
17419 * libc/sys/vxworks68, libc/sys/vxworks960: removed, since they
17420 were doing nothing useful.
17421
17422 Tue Oct 6 08:48:13 1992 Ian Lance Taylor (ian@cygnus.com)
17423
17424 * configure.in: define MALLOC_PROVIDED for vxworks targets;
17425 removed sys_dir settings of vxworks68 and vxworks960.
17426 host/any: don't pass -nostdinc to gcc, since newlib no longer
17427 provides all required header files.
17428
17429 * libc/stdlib/malloc.c: only compile this file if MALLOC_PROVIDED
17430 is not defined; this provides a hook for VxWorks.
17431
17432 Mon Oct 5 03:44:57 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
17433
17434 * libc/stdio/setvbuf.c (setvbuf): while ANSI does say to malloc a
17435 buffer if buf is NULL, don't do it here -- it is already being
17436 done by makebuf elsewhere in stdio.
17437
17438 Fri Oct 2 13:12:07 1992 Ian Lance Taylor (ian@cygnus.com)
17439
17440 * libc/sys/a29khif/Makefile.in: assemble Steve's list of stubs so
17441 that C programs can call functions without using initial
17442 underscores.
17443
17444 Thu Oct 1 09:37:47 1992 Ian Lance Taylor (ian@cygnus.com)
17445
17446 * libc/stdlib/abort.c (abort): call exit, in case kill returns.
17447
17448 Wed Sep 30 08:22:18 1992 Ian Lance Taylor (ian@cygnus.com)
17449
17450 * configure.in: set TARGET_CFLAGS for certain CPU types to
17451 -msoft-float.
17452
17453 Tue Sep 29 21:09:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
17454
17455 * libc/sys/m68kbare/glue.c: use <_ansi.h> instead of <ansidecl.h>
17456
17457 Mon Sep 28 14:58:44 1992 Ian Lance Taylor (ian@cygnus.com)
17458
17459 * configure.in: added sys_dir m68kbare for m68k*-unknown-aout and
17460 m68k*-unknown-coff.
17461
17462 Fri Sep 25 08:33:21 1992 Ian Lance Taylor (ian@cygnus.com)
17463
17464 * libc/include/stdio.h: define __need___va_list before including
17465 <stdarg.h>, to avoid defining va_arg, et. al.
17466
17467 Tue Sep 22 13:47:00 1992 Ian Lance Taylor (ian@cygnus.com)
17468
17469 * libc/sys/Makefile.in: handle the case of an empty $(sys_dir)
17470 (don't cd to the user's home directory).
17471
17472 * libc/Makefile.in: replaced all instances of $(MAKE) with make.
17473 In general this is the wrong thing to do, but I can't get around
17474 GNU make's insistence on passing command line arguments any other
17475 way.
17476
17477 Tue Sep 22 10:12:44 1992 Ian Lance Taylor (ian@cygnus.com)
17478
17479 * configure.in: always configure the libc/sys directory, since it
17480 now provides a required documentation file.
17481
17482 * Makefile.in: replaced all instances of $(MAKE) with make. In
17483 general this is the wrong thing to do, but I can't get around GNU
17484 make's insistence on passing command line arguments any other way.
17485
17486 Mon Sep 21 22:42:26 1992 Ian Lance Taylor (ian@tweedledumbest.cygnus.com)
17487
17488 * libc/stdlib/ecvtbuf.c (_gcvt): string for 0 was not null
17489 terminated.
17490
17491 * libc/stdio/local.h: include <stdarg.h> to define va_list.
17492 libc/stdio/vsprintf.c: include <stdarg.h> rather than <varargs.h>.
17493
17494 * libc/include/float.h, libc/include/stdarg.h,
17495 libc/include/stddef.h, libc/include/varargs.h: removed; use gcc
17496 versions instead.
17497 libc/include/stdio.h: get size_t from <stddef.h>, and va_list from
17498 <stdarg.h>, not from <machine/types.h>. Protect definition of
17499 NULL.
17500 libc/include/time.h: get size_t from stddef.h. Protect definition
17501 of NULL.
17502 libc/include/machine/limits.h: override gcc <limits.h> by defining
17503 _LIMITS_H___. Don't define CLK_TCK. Copied in gcc <limits.h> to
17504 get correct INT_MIN and LONG_LONG values.
17505 libc/include/machine/types.h: don't define ptrdiff_t, wchar_t,
17506 size_t or va_list at all; they're now gotten from stddef.h
17507 instead.
17508 libc/include/machine/varargs.h: removed; use gcc version instead.
17509 libc/include/sys/types.h: explicitly include <machine/types.h>.
17510
17511 * libm/math/sqrt.h: using the fp-bit routines appears to require
17512 more iterations.
17513
17514 * Makefile.in, host/any: let system include files override machine
17515 include files.
17516
17517 Sat Sep 19 21:10:06 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
17518
17519 * libc/include/machine/types.h: allow __*_TYPE__ from cpp to
17520 override _*_T_ definitions defaulted here.
17521
17522 Tue Sep 15 11:14:46 1992 Ian Lance Taylor (ian@cygnus.com)
17523
17524 * Makefile.in (install): install the include files in
17525 $(tooldir)/include, not $(exec_prefix)/include.
17526
17527 Fri Sep 11 15:48:43 1992 Ian Lance Taylor (ian@cygnus.com)
17528
17529 * Makefile.in (install): fixed typo, and changed install to not
17530 force rebuild of libc.a and libm.a.
17531
17532 Thu Sep 10 10:46:09 1992 Ian Lance Taylor (ian@cygnus.com)
17533
17534 * libc/sys/a29khif/*: Changed all .include's to include
17535 sys/sysmac.h, not plain sysmac.h. The header files live in sys so
17536 that they will be installed for the user.
17537
17538 * Makefile.in (all): create targ-include, a directory holding the
17539 machine and system specific header files during the build.
17540 (install): fixed installation of machine and system specific
17541 header files.
17542
17543 * Makefile.in: fixed comment.
17544 host/any: change .s.o rule to use $(AS) rather than $(CC), so that
17545 we can pass $(INCLUDES) to it.
17546
17547 Thu Sep 10 10:13:13 1992 Ian Lance Taylor (ian@cygnus.com)
17548
17549 * libc/include/sys/param.h: new generic file, which may be
17550 overridden for specific systems.
17551
17552 * libc/include/sys/signal.h: define all ANSI signal names, and
17553 NSIG (which is not ANSI) for a29k.
17554
17555 Tue Sep 8 09:04:30 1992 Ian Lance Taylor (ian@cygnus.com)
17556
17557 * Makefile.in: don't pass down arguments the lower level makes
17558 will not need.
17559 * libc/Makefile.in: recurse directly, rather than using subdir_do,
17560 in hopes of avoiding argument length limits.
17561 * libm/Makefile.in: recurse directly, rather using subdir_do, in
17562 hopes of avoiding argument length limits.
17563
17564 Tue Sep 8 08:27:22 1992 Ian Lance Taylor (ian@cygnus.com)
17565
17566 * libc/include/sys/fcntl.h: include <sys/types.h> to ensure that
17567 mode_t is defined.
17568
17569 Mon Sep 7 14:02:07 1992 Ian Lance Taylor (ian@cygnus.com)
17570
17571 * Fixed make info and make install-info for newlib, changing most
17572 Makefile.in and several *.tex files. Moved doc directory from
17573 libc to top level.
17574
17575 * libc/time/mktime.c (_DAYS_IN_MONTH): actually, not const.
17576 Should be rewritten.
17577
17578 * libc/string/strings.tex: renamed node index to node index
17579 function, so that it does not conflict with the top level index
17580 node.
17581
17582 * libc/include/sys/config.h: define __IEEE_BIG_ENDIAN for h8300.
17583
17584 Fri Sep 4 02:34:06 1992 Ian Lance Taylor (ian@cygnus.com)
17585
17586 * Overhauled general configuration for newlib. Eliminated all
17587 target dependent Makefile fragments. Create libraries in newlib
17588 rather than newlib/libc and newlib/libm. Use CC, et. al., rather
17589 than CROSS_CC, et. al. Broke make docs; will fix later.
17590
17591 * libc/time/localtime.c (_DAYS_IN_MONTH): actually, not const.
17592 Should be rewritten.
17593
17594 Tue Sep 1 15:21:14 1992 Ian Lance Taylor (ian@cygnus.com)
17595
17596 * libc/configure.in: cleaned up somewhat; switch on ${target}
17597 rather than ${target_alias}.
17598 * libm/configure.in: cleaned up somewhat; switch on ${target}
17599 rather than ${target_alias}.
17600
17601 * libc/ctype/ctype_.c: marked _ctype_ array _CONST.
17602 * libc/include/ctype.h: marked _ctype_ as _CONST.
17603
17604 * libc/locale/locale.c (lconv, localeconv): marked static lconv as
17605 _CONST.
17606
17607 * libc/stdio/cvt.c, libc/stdio/findfp.c (__sfmoreglue),
17608 libc/stdio/vfscanf.c (__svfscanf): made static variables const.
17609 libc/stdio/gets.c (gets): removed non-ANSI warning message.
17610 libc/stdio/tmpnam.c (tmpnam): removed unneeded filename variable.
17611
17612 * libc/stdlib/mprec.h, libc/stdlib/mprec.c (pow5mult, tens,
17613 bigtens, tinytens): marked arrays _CONST.
17614 libc/stdlib/qsort.c (swap): if __GNUC__, use _builtin_alloca
17615 rather than a static variable.
17616
17617 * libc/time/asctime.c (asctime), libc/time/localtime.c
17618 (_DAYS_IN_MONTH), libc/time/mktime.c (_DAYS_IN_MONTH,
17619 _DAYS_BEFORE_MONTH), libc/time/strftime.c (dname_len, dname,
17620 mname_len, mname): Marked static arrays _CONST.
17621
17622 * libm/math/gamma.h: made local variables non-static.
17623
17624 * libm/math/acos.h, libm/math/bessel.c, libm/math/erf.c,
17625 libm/math/exp.c, libm/math/gamma.h: marked static arrays as
17626 _CONST.
17627
17628 * libm/math/constants.c: removed file, because the constants it
17629 defined were never referenced.
17630 libm/math/Makefile.in: removed references to constants.c.
17631 libm/math/mathimpl.h: removed declarations of constants.
17632
17633 Wed Aug 26 21:09:06 1992 Ian Lance Taylor (ian@cygnus.com)
17634
17635 * libc/include/machine/varargs.h: only call __builtin_saveregs if
17636 it is sensibly defined in libgcc2. Checks preprocessor defines,
17637 which is not a good solution.
17638
17639 * libm/sqrt.c: sqrt(Infinity) should not be a domain error.
17640
17641 * libm/frexp.c: handle denormalized numbers as arguments.
17642
17643 * libm/math/Makefile.in: added some dependencies for .c files
17644 which include local .h files.
17645
17646 Mon Aug 24 12:57:58 1992 Ian Lance Taylor (ian@cygnus.com)
17647
17648 * libc/configure.in: set target_alias for OSE*. Replace
17649 target_makefile_frag if it is blank.
17650
17651 * libc/Makefile.in: make sure everything is passed to subsidiary
17652 makes; create all directories when installing.
17653
17654 * libm/ieeefp/Makefile.in, libm/math/Makefile.in: use
17655 CROSS_ARUPDATE instead of AR.
17656
17657 * libm/configure.in: set target_alias for OSE*. Replace
17658 target_makefile_frag if it is blank.
17659
17660 * libm/Makefile.in: make sure everything is passed to subsidiary
17661 makes; create all directories when installing.
17662
17663 Thu Aug 20 15:11:51 1992 Mark Eichin (eichin@cygnus.com)
17664
17665 * add following change from libc copy.
17666
17667 Wed Aug 19 18:54:49 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
17668
17669 * libc/libc.texinfo: make copyright disclaimers appear on back of
17670 title page; make format of same slightly less ugly; avoid using
17671 underbars in section headings (avoids nasty texinfo bug in table
17672 of contents).
17673
17674 * libc/ctype/tolower.c, libc/ctype/toupper.c: (doc changes in
17675 comments only) avoid using underbars in section headings
17676
17677 * libc/ieeefp/ieeefp.tex: include doc from fpsticky, infinity,
17678 isnan ieeefp/fpmask.c, ieeefp/fpround.c, ieeefp/fpsticky.c (doc
17679 changes in comments only): shorten headings ieeefp/infinity.c,
17680 ieeefp/isnan.c: (doc, comments only) more informative headings
17681
17682 * libc/math/bessel.c: (doc, comments only) shorten heading
17683
17684 * libc/stdlib/efgcvt.c, libc/stdlib/mbtowc.c, libc/stdlib/wctomb.c
17685 (doc, comments only) shorten headings
17686
17687 * libc/time/localtime.c (doc, comments only): shorten headings
17688
17689 * libm/ieeefp/ieeefp.tex: include doc from fpsticky, infinity,
17690 isnan
17691 libm/ieeefp/fpmask.c, libm/ieeefp/fpround.c,
17692 libm/ieeefp/fpsticky.c (doc changes in comments only): shorten
17693 headings
17694 libm/ieeefp/infinity.c, libm/ieeefp/isnan.c: (doc, comments
17695 only) more informative headings
17696 * libm/math/bessel.c: (doc, comments only) shorten heading
17697
17698 Wed Aug 19 07:06:37 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
17699
17700 * .../Makefile.in: use CROSS_ARUPDATE consistently.
17701 * config/*.mt: define CROSS_AR as well as CROSS_ARUPDATE
17702 * config/*.mt: define CROSS_CPP based on CROSS_CC, not /lib/cpp.
17703 * .../Makefile.in: get rid of .c.o rule - if TOP is correctly
17704 defined, the one from the .mt file will be correct.
17705 * libc/include/machine, libc/include/sys: created, and populated
17706 with common files from machine/*/machine. ifdefs were used for
17707 most, typically by handling exceptions first and then filling in
17708 defaults. Files with D.J. Delorie copyright #included rather than
17709 copied. Most files in include/sys really were the same in the
17710 original.
17711 * libc/include/...: cleaned up use of _EXFUN.
17712 * libc/stdlib/mprec.c: mprec.h doesn't get installed, so include
17713 it with double quotes, not angles.
17714
17715 Mon Aug 10 11:43:20 1992 Ian Lance Taylor (ian@dumbest.cygnus.com)
17716
17717 * libc/Makefile.in: always create installation directories.
17718
17719 Sun Aug 9 22:45:48 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
17720
17721 * libc/configure.in: handle host properly (using canonical
17722 triples), better error message for the case of target not found
17723
17724 Thu May 28 01:56:37 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
17725
17726 * libc/Makefile.in (insincdir): Ensure this directory exists
17727 before attempting installation.
17728
17729 Fri May 1 18:16:42 1992 Steve Chamberlain (sac@thepub.cygnus.com)
17730
17731 * libc/stdlib/assert.c: now calls abort like it should
17732 * libc/sys/a29khif: many many patches for 29khif work
17733 * libc/machine/i386: gnulib2 expanded there.
17734
17735 Tue Apr 28 19:08:37 1992 Steve Chamberlain (sac@thepub.cygnus.com)
17736
17737 Added accurate fp conversion routines to stdlib, moved dcvt from
17738 stdio to stdlib and called it ecvtbuf:
17739 * libc/stdlib/mprec.c, mprec.h: new files for multiprec arithmetic
17740 * libc/stdlib/Makefile.in, efgcvt.c, strtod.c: modified to use new
17741 routines
17742 * libc/libc.texinfo: Modifed to include the copyright info from
17743 the mprec files
17744 * libc/stdlib/efgcvt.c: now xref to ecvtbuf in stdlib.
17745 * libc/test/ : many vector which tested for the implementation
17746 defined returns of strange conversion requests have been updated
17747 to relflect the new implementation
17748
17749 Mon Apr 27 13:41:33 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
17750
17751 * libc/libc.texinfo: new chapter on variable arg lists
17752 (stdarg.h/varargs.h)
17753 * libc/libc.texinfo: new title
17754 * libc/time/gmtime.c, libc/time/localtime./c, libc/time/mktime.c:
17755 (doc only) shorter headings for better formatting.
17756
17757 Fri Apr 24 11:26:48 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
17758
17759 * libc/libc.texinfo: three more info menu entries
17760 * libc/locale/locale.tex: new chapter
17761 * libc/locale/locale.c: new doc for setlocale, localeconv
17762 * libc/locale/Makefile.in: use new locale doc
17763 * libc/signal/signal.tex: new chapter
17764 * libc/signal/raise.c, libc/signal/signal.c: new doc
17765 * libc/signal/Makefile.in: use new doc
17766 * libc/time/time.tex: new chapter
17767 * libc/time/asctime.c libc/time/clock.c libc/time/ctime.c
17768 libc/time/difftime.c libc/time/gmtime.c libc/time/localtime.c
17769 libc/time/mktime.c libc/time/strftime.c libc/time/time.c: new doc
17770 * libc/time/Makefile.in: use new doc
17771
17772 Tue Apr 21 14:48:50 1992 Steve Chamberlain (sac@thepub.cygnus.com)
17773
17774 * libm/math/log1p.c: split to use the new function way of float
17775 function definition. math/log1p.h deleted
17776 * libm/math/scalb.c: obsolete and deleted
17777 * libm/math/scalbn.c: created from part log1p.c
17778 * libm/math/Makefile.in: know about log1p and scalbn
17779
17780 Tue Apr 21 12:32:21 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
17781
17782 * libc/ctype/isupper.c: revise doc;
17783 libc/ctype/ctype.tex: use doc from isupper.c
17784
17785 * libc/string/bzero.c: new doc
17786
17787 Mon Apr 20 14:19:42 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
17788
17789 * libc/stdlib/system.c, libc/stdlib/exit.c, libc/stdlib/abort.c:
17790 new doc
17791 * libc/stdlib/Makefile.in: extract new doc
17792 * libc/stdlib/stdlib.tex: use new doc
17793
17794 * libc/string/strerror.c: expanded doc.
17795
17796 * libc/stdio/Makefile.in: extract doc from more files
17797 * libc/stdio/fopen.c, libc/stdio/perror.c, libc/stdio/remove.c,
17798 libc/stdio/rename.c, libc/stdio/rewind.c, libc/stdio/setbuf.c,
17799 libc/stdio/setvbuf.c, libc/stdio/sprintf.c, libc/stdio/tmpfile.c,
17800 libc/stdio/tmpnam.c, libc/stdio/vfprintf.c, libc/stdio/vprintf.c,
17801 libc/stdio/vsprintf.c: new doc
17802 * libc/stdio/stdio.tex: use new doc
17803
17804 Mon Apr 20 09:38:17 1992 Steve Chamberlain (sac@thepub.cygnus.com)
17805
17806 * libc/config/ebmon29k: added CROSS_CPP rule and other fixes
17807 * libc/include/ieeefp.h: fixed ansi conflict with isnanf, isinff,
17808 finitef functions.
17809 * libc/sys/a29khif/sys/*.h: ansidecl.h was renamed to _ansi.h some
17810 time ago.
17811
17812 * libc/stdio/stdio.h: added P_tmpdir for /tmp (SVID thing)
17813 * libc/stdio/setbuf.c: added ansi style definition.
17814 * libc/stdio/setvbuf.c: added ansi definition, now mallocs own
17815 buffer if none provided.
17816 * libc/stdio/tmpfile.c: lint
17817 * libc/stdio/tmpnam.c (worker): created. (tmpnam): mallocs buffer
17818 rather than using static, also make sure file isn't already
17819 present. Uses P_tmpdir. (tempnam): rewritten to use new
17820 subroutine, and uses P_tmpdir.
17821 * libc/stdio/siprintf.c: created
17822
17823 Mon Apr 13 09:12:58 1992 Steve Chamberlain (sac@thepub.cygnus.com)
17824
17825 Release 1.03 for NEC, major mods. Main differences from release
17826 1.02::
17827
17828 More tests in test/:
17829 * jn_vec.c, jnf_vec.c, yn_vec.c, ynf_vec.c, log2_vec.c,
17830 log2f_vec.c, atan2_vec.c, atan2f_vec.c: new test vectors.
17831 * test_ieee.c: tests for ieee flags & masks - get/set rounding,
17832 get/set mask, get/set sticky and get/set roundtoi. Tests
17833 that setting the bits changes the way arithmetic is done.
17834 * string.c: added test to make sure memcmp does it with unsigned
17835 chars.
17836 * test.c: cleaned up and removed lint.
17837 * sprint_vec, sprint_ivec.c, convert.c, conv_vec.c, iconf_vec.c,
17838 dvec.c: tests for string to value conversions, sprintf, scanf,
17839 atof, atoff, strtod, strtodf, atoi, atol, strtol, ecvtbuf, ecvt,
17840 ecvtf, fcvtbuf, fcvt, fcvtf, gcvt, gcvtf. Some attention paid to
17841 rounding in sprintf too.
17842 * test_is.c: tests for isalnum, isalpha, isascii, iscntrl,
17843 isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
17844 isxdigit, toascii, tolower, toupper, _tolower, _toupper in macro
17845 and function form.
17846 * math2.c: test for frexp, frexpf, ldexp, ldexpf, modf modff, pow,
17847 powf
17848
17849 In the library:
17850 * libc/stdlib/div.c, libc/stdlib/ldiv.c, libc/stdlib/strtod.c,
17851 libc/stdlib/strtol.c, libc/stdlib/stroul.c, libc/stdlib/abs.c,
17852 libc/stdlib/bsearch.c, libc/stdlib/calloc.c, libc/stdlib/getenv.c,
17853 libc/stdlib/labs.c, libc/stdlib/malloc.c: new documentation
17854 * libc/stdlib/efgcvt.c: rewritten to use new _dcvt routines rather
17855 than sprintf.
17856 * libc/stdio/dcvt.c: rewritten to make more useful elsewhere.
17857 * Method of producting float versions of double functions has
17858 changed, functions will be modified gradually. So far:
17859 libm/math/exp.c, libm/math/pow.c, libm/math/modf.c,
17860 libm/math/sincos.c, libm/math/fmod.c, libm/math/tan.c have been
17861 altered
17862 * libc/string/memcmp.c: now uses unsigned chars
17863 * libc/string/bcmp.c, libc/string/strcpy.c,
17864 libc/stsring/strxfrm.c: fixed doc
17865 * libc/sys/sysvnecv70.tex: fix example of sbrk code
17866 \f
17867 Local Variables:
17868 version-control: never
17869 End:
This page took 0.752709 seconds and 6 git commands to generate.