Date: Sun, 8 Nov 1998 14:49:22 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: djgpp-workers AT delorie DOT com Subject: Comments about beta 102798 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com Some things I spotted while looking at the latest beta: These files need to be removed: include/wchar.h~ include/wctype.h~ Portability section not in correct place in select.txh; patch below. Btw, I suggest to add @port-note to src/mkdoc/sample.txh, since otherwise the only way to figure out how to write the notes is by reading the sources ;-). These patches are sent separately: doprnt.c -- sign of NaN src/libm/math/makefile -- clean target removes *.d src/libm/math/s_nan{,f}.c -- change in comment wording redir.c -- newline after fatal message The first one was sent earlier, but somehow didn't make it into the beta. As for the others, I might have forgotten to send them, sorry. *** src/libc/compat/time/select.t~0 Sun Sep 27 15:21:14 1998 --- src/libc/compat/time/select.txh Fri Nov 6 18:51:32 1998 *************** *** 47,57 **** The @var{nfds} parameter is the number of bits to be examined in each of the @code{fd_set} sets: the function will only check file descriptors - - @subheading Portability - - @portability !ansi, !posix - @code{0} through @code{@var{nfds} - 1}, even if some bits are set for descriptors beyond that. --- 47,52 ---- *************** *** 88,93 **** --- 83,93 ---- On failure, @code{select} returns -1, sets @code{errno} to a suitable value, and leaves the descriptor sets unchanged. + + + @subheading Portability + + @portability !ansi, !posix @subheading Example