From 115497faecd4105c3a50b891e117a59fb34ce1c4 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Sat, 7 Aug 2004 09:15:33 +0000 Subject: [PATCH] - Ditched __is_infinity() and __is_not_a_number(), brought them back as isinf() and isnan(). - Updated code and header files to state exactly which ISO 'C' version is meant by the "The following is not part of the ISO 'C' standard." warning. - Integrated rint() and rintf(). git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14699 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/GNUmakefile.68k | 8 ++- library/GNUmakefile.os4 | 8 ++- library/dirent_closedir.c | 4 +- library/dirent_data.c | 4 +- library/dirent_opendir.c | 4 +- library/dirent_readdir.c | 4 +- library/dirent_rewinddir.c | 4 +- library/fcntl_close.c | 4 +- library/fcntl_creat.c | 4 +- library/fcntl_fcntl.c | 4 +- library/fcntl_lseek.c | 4 +- library/fcntl_open.c | 4 +- library/fcntl_read.c | 4 +- library/fcntl_write.c | 4 +- library/include/ctype.h | 4 +- library/include/dirent.h | 4 +- library/include/dos.h | 4 +- library/include/fcntl.h | 4 +- library/include/grp.h | 4 +- library/include/libgen.h | 4 +- library/include/limits.h | 4 +- library/include/math.h | 13 +++- library/include/pwd.h | 4 +- library/include/signal.h | 4 +- library/include/stdio.h | 4 +- library/include/stdlib.h | 4 +- library/include/string.h | 4 +- library/include/strings.h | 4 +- library/include/sys/amigaos-va.h | 4 +- library/include/sys/mount.h | 4 +- library/include/sys/stat.h | 4 +- library/include/sys/time.h | 4 +- library/include/sys/types.h | 4 +- library/include/unistd.h | 4 +- library/include/utime.h | 4 +- library/libgen_basename.c | 4 +- library/libgen_dirname.c | 4 +- library/{stdio_isinfinity.c => math_isinf.c} | 34 +++++++--- .../{stdio_isnotanumber.c => math_isnan.c} | 15 +++-- library/math_rint.c | 18 +++-- library/math_rintf.c | 66 +++++++++++++++++++ library/mount_fstatfs.c | 4 +- library/mount_statfs.c | 4 +- library/releasenotes | 10 +++ library/signal_kill.c | 4 +- library/signal_sigaddset.c | 4 +- library/signal_sigblock.c | 4 +- library/signal_sigemptyset.c | 4 +- library/signal_sigmask.c | 4 +- library/signal_sigprocmask.c | 4 +- library/signal_sigsetmask.c | 4 +- library/smakefile | 8 ++- library/stat_chmod.c | 4 +- library/stat_convertfileinfo.c | 4 +- library/stat_fchmod.c | 4 +- library/stat_fstat.c | 4 +- library/stat_lstat.c | 4 +- library/stat_mkdir.c | 4 +- library/stat_rmdir.c | 4 +- library/stat_stat.c | 4 +- library/stat_umask.c | 4 +- library/stdio_asprintf.c | 4 +- library/stdio_headers.h | 3 +- library/stdio_popen.c | 4 +- library/stdio_vasprintf.c | 4 +- library/stdio_vfprintf.c | 6 +- library/stdio_vsnprintf.c | 4 +- library/stdio_vsnprintf_hook_entry.c | 4 +- library/stdlib_mkdtemp.c | 4 +- library/stdlib_mkstemp.c | 4 +- library/stdlib_mktemp.c | 4 +- library/stdlib_putenv.c | 4 +- library/stdlib_setenv.c | 4 +- library/stdlib_unsetenv.c | 4 +- library/string_bcmp.c | 4 +- library/string_bcopy.c | 4 +- library/string_bzero.c | 4 +- library/string_index.c | 4 +- library/string_rindex.c | 4 +- library/string_strdup.c | 4 +- library/strings_strcasecmp.c | 4 +- library/strings_strncasecmp.c | 4 +- library/time_gettimeofday.c | 4 +- library/unistd_access.c | 4 +- library/unistd_chdir.c | 4 +- library/unistd_chown.c | 4 +- library/unistd_data.c | 4 +- library/unistd_dup.c | 4 +- library/unistd_dup2.c | 4 +- library/unistd_fchown.c | 4 +- library/unistd_fdopen.c | 4 +- library/unistd_fileno.c | 4 +- library/unistd_ftruncate.c | 4 +- library/unistd_getcwd.c | 4 +- library/unistd_getopt.c | 4 +- library/unistd_getpid.c | 4 +- library/unistd_init_exit.c | 4 +- library/unistd_isatty.c | 4 +- library/unistd_lchown.c | 4 +- library/unistd_link.c | 4 +- library/unistd_readlink.c | 4 +- library/unistd_realpath.c | 4 +- library/unistd_sleep.c | 4 +- library/unistd_symlink.c | 4 +- library/unistd_truncate.c | 4 +- library/unistd_unlink.c | 4 +- library/utime_utime.c | 4 +- 107 files changed, 343 insertions(+), 230 deletions(-) rename library/{stdio_isinfinity.c => math_isinf.c} (77%) mode change 100644 => 100755 rename library/{stdio_isnotanumber.c => math_isnan.c} (87%) mode change 100644 => 100755 create mode 100755 library/math_rintf.c diff --git a/library/GNUmakefile.68k b/library/GNUmakefile.68k index 85b3bb8..70d3d14 100644 --- a/library/GNUmakefile.68k +++ b/library/GNUmakefile.68k @@ -1,5 +1,5 @@ # -# $Id: GNUmakefile.68k,v 1.2 2004-07-28 15:50:44 obarthel Exp $ +# $Id: GNUmakefile.68k,v 1.3 2004-08-07 09:15:32 obarthel Exp $ # # :ts=8 # @@ -453,11 +453,15 @@ MATH_LIB = \ math_fmod.o \ math_frexp.o \ math_init_exit.o \ + math_isinf.o \ + math_isnan.o \ math_ldexp.o \ math_log.o \ math_log10.o \ math_modf.o \ math_pow.o \ + math_rint.o \ + math_rintf.o \ math_sin.o \ math_sinh.o \ math_sqrt.o \ @@ -467,8 +471,6 @@ MATH_LIB = \ stdio_flush.o \ stdio_fprintf.o \ stdio_fscanf.o \ - stdio_isinfinity.o \ - stdio_isnotanumber.o \ stdio_printf.o \ stdio_scanf.o \ stdio_snprintf.o \ diff --git a/library/GNUmakefile.os4 b/library/GNUmakefile.os4 index b99672e..19c7a11 100644 --- a/library/GNUmakefile.os4 +++ b/library/GNUmakefile.os4 @@ -1,5 +1,5 @@ # -# $Id: GNUmakefile.os4,v 1.2 2004-07-28 15:50:44 obarthel Exp $ +# $Id: GNUmakefile.os4,v 1.3 2004-08-07 09:15:32 obarthel Exp $ # # :ts=8 # @@ -445,11 +445,15 @@ MATH_LIB = \ math_fmod.o \ math_frexp.o \ math_init_exit.o \ + math_isnan.o \ + math_isinf.o \ math_ldexp.o \ math_log.o \ math_log10.o \ math_modf.o \ math_pow.o \ + math_rint.o \ + math_rintf.o \ math_sin.o \ math_sinh.o \ math_sqrt.o \ @@ -465,8 +469,6 @@ MATH_LIB = \ stdio_flush.o \ stdio_fprintf.o \ stdio_fscanf.o \ - stdio_isinfinity.o \ - stdio_isnotanumber.o \ stdio_printf.o \ stdio_scanf.o \ stdio_snprintf.o \ diff --git a/library/dirent_closedir.c b/library/dirent_closedir.c index 6c32c57..6c61e41 100644 --- a/library/dirent_closedir.c +++ b/library/dirent_closedir.c @@ -1,5 +1,5 @@ /* - * $Id: dirent_closedir.c,v 1.1.1.1 2004-07-26 16:30:30 obarthel Exp $ + * $Id: dirent_closedir.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/dirent_data.c b/library/dirent_data.c index 964398c..5d517b4 100644 --- a/library/dirent_data.c +++ b/library/dirent_data.c @@ -1,5 +1,5 @@ /* - * $Id: dirent_data.c,v 1.1.1.1 2004-07-26 16:30:30 obarthel Exp $ + * $Id: dirent_data.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/dirent_opendir.c b/library/dirent_opendir.c index 2e93e45..eca54ca 100644 --- a/library/dirent_opendir.c +++ b/library/dirent_opendir.c @@ -1,5 +1,5 @@ /* - * $Id: dirent_opendir.c,v 1.1.1.1 2004-07-26 16:30:31 obarthel Exp $ + * $Id: dirent_opendir.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -49,7 +49,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/dirent_readdir.c b/library/dirent_readdir.c index bd0f718..4a49a26 100644 --- a/library/dirent_readdir.c +++ b/library/dirent_readdir.c @@ -1,5 +1,5 @@ /* - * $Id: dirent_readdir.c,v 1.1.1.1 2004-07-26 16:30:31 obarthel Exp $ + * $Id: dirent_readdir.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/dirent_rewinddir.c b/library/dirent_rewinddir.c index b1445bf..78be8f8 100644 --- a/library/dirent_rewinddir.c +++ b/library/dirent_rewinddir.c @@ -1,5 +1,5 @@ /* - * $Id: dirent_rewinddir.c,v 1.1.1.1 2004-07-26 16:30:31 obarthel Exp $ + * $Id: dirent_rewinddir.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/fcntl_close.c b/library/fcntl_close.c index 67546c4..3d6bf6b 100644 --- a/library/fcntl_close.c +++ b/library/fcntl_close.c @@ -1,5 +1,5 @@ /* - * $Id: fcntl_close.c,v 1.1.1.1 2004-07-26 16:30:32 obarthel Exp $ + * $Id: fcntl_close.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/fcntl_creat.c b/library/fcntl_creat.c index 8c35591..4c57d7d 100644 --- a/library/fcntl_creat.c +++ b/library/fcntl_creat.c @@ -1,5 +1,5 @@ /* - * $Id: fcntl_creat.c,v 1.1.1.1 2004-07-26 16:30:32 obarthel Exp $ + * $Id: fcntl_creat.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/fcntl_fcntl.c b/library/fcntl_fcntl.c index 4f9a598..e8a225f 100644 --- a/library/fcntl_fcntl.c +++ b/library/fcntl_fcntl.c @@ -1,5 +1,5 @@ /* - * $Id: fcntl_fcntl.c,v 1.1.1.1 2004-07-26 16:30:33 obarthel Exp $ + * $Id: fcntl_fcntl.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/fcntl_lseek.c b/library/fcntl_lseek.c index cc5ad0b..59ee39a 100644 --- a/library/fcntl_lseek.c +++ b/library/fcntl_lseek.c @@ -1,5 +1,5 @@ /* - * $Id: fcntl_lseek.c,v 1.1.1.1 2004-07-26 16:30:33 obarthel Exp $ + * $Id: fcntl_lseek.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/fcntl_open.c b/library/fcntl_open.c index cd0357c..2adcf75 100644 --- a/library/fcntl_open.c +++ b/library/fcntl_open.c @@ -1,5 +1,5 @@ /* - * $Id: fcntl_open.c,v 1.1.1.1 2004-07-26 16:30:34 obarthel Exp $ + * $Id: fcntl_open.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -49,7 +49,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/fcntl_read.c b/library/fcntl_read.c index 7f4e833..698471b 100644 --- a/library/fcntl_read.c +++ b/library/fcntl_read.c @@ -1,5 +1,5 @@ /* - * $Id: fcntl_read.c,v 1.1.1.1 2004-07-26 16:30:34 obarthel Exp $ + * $Id: fcntl_read.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/fcntl_write.c b/library/fcntl_write.c index 47fd026..e026b21 100644 --- a/library/fcntl_write.c +++ b/library/fcntl_write.c @@ -1,5 +1,5 @@ /* - * $Id: fcntl_write.c,v 1.1.1.1 2004-07-26 16:30:34 obarthel Exp $ + * $Id: fcntl_write.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/ctype.h b/library/include/ctype.h index 8b9579d..bcdf0c3 100644 --- a/library/include/ctype.h +++ b/library/include/ctype.h @@ -1,5 +1,5 @@ /* - * $Id: ctype.h,v 1.1.1.1 2004-07-26 16:32:50 obarthel Exp $ + * $Id: ctype.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -63,7 +63,7 @@ extern int toupper(int c); /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ #define isascii(c) ((unsigned)(c) <= 127) diff --git a/library/include/dirent.h b/library/include/dirent.h index d14ce2e..cc2e239 100644 --- a/library/include/dirent.h +++ b/library/include/dirent.h @@ -1,5 +1,5 @@ /* - * $Id: dirent.h,v 1.1.1.1 2004-07-26 16:32:50 obarthel Exp $ + * $Id: dirent.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/dos.h b/library/include/dos.h index 45312e3..2629c32 100644 --- a/library/include/dos.h +++ b/library/include/dos.h @@ -1,5 +1,5 @@ /* - * $Id: dos.h,v 1.1.1.1 2004-07-26 16:32:50 obarthel Exp $ + * $Id: dos.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/fcntl.h b/library/include/fcntl.h index 40e8067..f49a59d 100644 --- a/library/include/fcntl.h +++ b/library/include/fcntl.h @@ -1,5 +1,5 @@ /* - * $Id: fcntl.h,v 1.1.1.1 2004-07-26 16:32:51 obarthel Exp $ + * $Id: fcntl.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/grp.h b/library/include/grp.h index 87abbd0..d81256b 100644 --- a/library/include/grp.h +++ b/library/include/grp.h @@ -1,5 +1,5 @@ /* - * $Id: grp.h,v 1.1.1.1 2004-07-26 16:32:52 obarthel Exp $ + * $Id: grp.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/libgen.h b/library/include/libgen.h index 008c35e..55ab428 100644 --- a/library/include/libgen.h +++ b/library/include/libgen.h @@ -1,5 +1,5 @@ /* - * $Id: libgen.h,v 1.1.1.1 2004-07-26 16:32:52 obarthel Exp $ + * $Id: libgen.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/limits.h b/library/include/limits.h index 3b46a26..d9aea2c 100644 --- a/library/include/limits.h +++ b/library/include/limits.h @@ -1,5 +1,5 @@ /* - * $Id: limits.h,v 1.1.1.1 2004-07-26 16:32:52 obarthel Exp $ + * $Id: limits.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -54,7 +54,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/math.h b/library/include/math.h index 8548980..79bdc2c 100644 --- a/library/include/math.h +++ b/library/include/math.h @@ -1,5 +1,5 @@ /* - * $Id: math.h,v 1.1.1.1 2004-07-26 16:32:53 obarthel Exp $ + * $Id: math.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -81,6 +81,17 @@ extern double tanh(double x); /****************************************************************************/ +/* The following is not part of the ISO 'C' (1994) standard. */ + +/****************************************************************************/ + +extern double rint(double x); +extern float rintf(float x); +extern int isinf(double x); +extern int isnan(double x); + +/****************************************************************************/ + #ifdef __cplusplus } #endif /* __cplusplus */ diff --git a/library/include/pwd.h b/library/include/pwd.h index bf3d28e..b557f95 100644 --- a/library/include/pwd.h +++ b/library/include/pwd.h @@ -1,5 +1,5 @@ /* - * $Id: pwd.h,v 1.1.1.1 2004-07-26 16:32:53 obarthel Exp $ + * $Id: pwd.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/signal.h b/library/include/signal.h index 3270481..4227eed 100644 --- a/library/include/signal.h +++ b/library/include/signal.h @@ -1,5 +1,5 @@ /* - * $Id: signal.h,v 1.2 2004-07-28 14:14:38 obarthel Exp $ + * $Id: signal.h,v 1.3 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -62,7 +62,7 @@ extern int raise(int sig); /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/stdio.h b/library/include/stdio.h index 4d81082..7b40ec8 100644 --- a/library/include/stdio.h +++ b/library/include/stdio.h @@ -1,5 +1,5 @@ /* - * $Id: stdio.h,v 1.1.1.1 2004-07-26 16:32:54 obarthel Exp $ + * $Id: stdio.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -308,7 +308,7 @@ extern int __flush(FILE *stream); /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/stdlib.h b/library/include/stdlib.h index d5dc4f0..11046ee 100644 --- a/library/include/stdlib.h +++ b/library/include/stdlib.h @@ -1,5 +1,5 @@ /* - * $Id: stdlib.h,v 1.1.1.1 2004-07-26 16:32:55 obarthel Exp $ + * $Id: stdlib.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -147,7 +147,7 @@ extern long atol(const char *str); /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/string.h b/library/include/string.h index 76a403e..2c0c5b3 100644 --- a/library/include/string.h +++ b/library/include/string.h @@ -1,5 +1,5 @@ /* - * $Id: string.h,v 1.2 2004-07-30 09:25:16 obarthel Exp $ + * $Id: string.h,v 1.3 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -89,7 +89,7 @@ extern void *memset(void *ptr, int val, size_t len); /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/strings.h b/library/include/strings.h index aa96498..b40b937 100644 --- a/library/include/strings.h +++ b/library/include/strings.h @@ -1,5 +1,5 @@ /* - * $Id: strings.h,v 1.1.1.1 2004-07-26 16:32:55 obarthel Exp $ + * $Id: strings.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/sys/amigaos-va.h b/library/include/sys/amigaos-va.h index 1627780..109e71a 100644 --- a/library/include/sys/amigaos-va.h +++ b/library/include/sys/amigaos-va.h @@ -1,5 +1,5 @@ /* - * $Id: amigaos-va.h,v 1.1.1.1 2004-07-26 16:32:57 obarthel Exp $ + * $Id: amigaos-va.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/sys/mount.h b/library/include/sys/mount.h index a0b8fc8..8297861 100644 --- a/library/include/sys/mount.h +++ b/library/include/sys/mount.h @@ -1,5 +1,5 @@ /* - * $Id: mount.h,v 1.1.1.1 2004-07-26 16:32:58 obarthel Exp $ + * $Id: mount.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/sys/stat.h b/library/include/sys/stat.h index fe2d7c1..96376b9 100644 --- a/library/include/sys/stat.h +++ b/library/include/sys/stat.h @@ -1,5 +1,5 @@ /* - * $Id: stat.h,v 1.1.1.1 2004-07-26 16:32:58 obarthel Exp $ + * $Id: stat.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/sys/time.h b/library/include/sys/time.h index 08ecc4b..eb7aefe 100644 --- a/library/include/sys/time.h +++ b/library/include/sys/time.h @@ -1,5 +1,5 @@ /* - * $Id: time.h,v 1.1.1.1 2004-07-26 16:32:58 obarthel Exp $ + * $Id: time.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/sys/types.h b/library/include/sys/types.h index 82c6552..bd5910f 100644 --- a/library/include/sys/types.h +++ b/library/include/sys/types.h @@ -1,5 +1,5 @@ /* - * $Id: types.h,v 1.1.1.1 2004-07-26 16:32:59 obarthel Exp $ + * $Id: types.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/unistd.h b/library/include/unistd.h index c454c0a..91b0405 100644 --- a/library/include/unistd.h +++ b/library/include/unistd.h @@ -1,5 +1,5 @@ /* - * $Id: unistd.h,v 1.3 2004-07-28 15:50:45 obarthel Exp $ + * $Id: unistd.h,v 1.4 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/include/utime.h b/library/include/utime.h index bc69ffd..6fab305 100644 --- a/library/include/utime.h +++ b/library/include/utime.h @@ -1,5 +1,5 @@ /* - * $Id: utime.h,v 1.1.1.1 2004-07-26 16:32:56 obarthel Exp $ + * $Id: utime.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/libgen_basename.c b/library/libgen_basename.c index 0fec9d9..67d7ef8 100644 --- a/library/libgen_basename.c +++ b/library/libgen_basename.c @@ -1,5 +1,5 @@ /* - * $Id: libgen_basename.c,v 1.1.1.1 2004-07-26 16:30:34 obarthel Exp $ + * $Id: libgen_basename.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -36,7 +36,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/libgen_dirname.c b/library/libgen_dirname.c index 28b8d8a..c6c6a36 100644 --- a/library/libgen_dirname.c +++ b/library/libgen_dirname.c @@ -1,5 +1,5 @@ /* - * $Id: libgen_dirname.c,v 1.1.1.1 2004-07-26 16:30:34 obarthel Exp $ + * $Id: libgen_dirname.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -40,7 +40,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdio_isinfinity.c b/library/math_isinf.c old mode 100644 new mode 100755 similarity index 77% rename from library/stdio_isinfinity.c rename to library/math_isinf.c index 69f82c7..95ee965 --- a/library/stdio_isinfinity.c +++ b/library/math_isinf.c @@ -1,5 +1,5 @@ /* - * $Id: stdio_isinfinity.c,v 1.2 2004-07-29 08:14:49 obarthel Exp $ + * $Id: math_isinf.c,v 1.1 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -41,6 +41,10 @@ /****************************************************************************/ +/* The following is not part of the ISO 'C' (1994) standard. */ + +/****************************************************************************/ + union ieee_long_double { long double value; @@ -62,23 +66,23 @@ union ieee_single /****************************************************************************/ int -__is_infinity(long double number) +isinf(double number) { + int is_infinity; int result; ENTER(); /* This assumes that a) 'number' is stored in big endian format - * and b) it is stored in IEEE 754 format. - */ - if(sizeof(number) == 4) /* single precision */ + and b) it is stored in IEEE 754 format. */ + if (sizeof(number) == 4) /* single precision */ { union ieee_single x; x.value = number; /* Exponent = 255 and fraction = 0.0 */ - result = ((x.raw[0] & 0x7FFFFFFF) == 0x7F800000); + is_infinity = ((x.raw[0] & 0x7FFFFFFF) == 0x7F800000); } else if (sizeof(number) == 8) /* double precision */ { @@ -87,7 +91,7 @@ __is_infinity(long double number) x.value = number; /* Exponent = 2047 and fraction = 0.0 */ - result = (((x.raw[0] & 0x7FFFFFFF) == 0x7FF00000) && (x.raw[1] == 0)); + is_infinity = (((x.raw[0] & 0x7FFFFFFF) == 0x7FF00000) && (x.raw[1] == 0)); } else if (sizeof(number) == 12) /* extended precision */ { @@ -96,11 +100,23 @@ __is_infinity(long double number) x.value = number; /* Exponent = 32767 and fraction = 0.0 */ - result = (((x.raw[0] & 0x7FFF0000) == 0x7FFF0000) && (x.raw[1] & 0x7FFFFFFF) == 0 && (x.raw[2] == 0)); + is_infinity = (((x.raw[0] & 0x7FFF0000) == 0x7FFF0000) && (x.raw[1] & 0x7FFFFFFF) == 0 && (x.raw[2] == 0)); } else { /* Can't happen */ + is_infinity = 0; + } + + if(is_infinity) + { + if(number < 0) + result = -1; + else + result = 1; + } + else + { result = 0; } @@ -108,4 +124,6 @@ __is_infinity(long double number) return(result); } +/****************************************************************************/ + #endif /* FLOATING_POINT_SUPPORT */ diff --git a/library/stdio_isnotanumber.c b/library/math_isnan.c old mode 100644 new mode 100755 similarity index 87% rename from library/stdio_isnotanumber.c rename to library/math_isnan.c index 0773e8c..9b6a7b1 --- a/library/stdio_isnotanumber.c +++ b/library/math_isnan.c @@ -1,5 +1,5 @@ /* - * $Id: stdio_isnotanumber.c,v 1.2 2004-07-29 08:14:49 obarthel Exp $ + * $Id: math_isnan.c,v 1.1 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -41,6 +41,10 @@ /****************************************************************************/ +/* The following is not part of the ISO 'C' (1994) standard. */ + +/****************************************************************************/ + union ieee_long_double { long double value; @@ -62,16 +66,15 @@ union ieee_single /****************************************************************************/ int -__is_not_a_number(long double number) +isnan(double number) { int result; ENTER(); /* This assumes that a) 'number' is stored in big endian format - * and b) it is stored in IEEE 754 format. - */ - if(sizeof(number) == 4) /* single precision */ + and b) it is stored in IEEE 754 format. */ + if (sizeof(number) == 4) /* single precision */ { union ieee_single x; @@ -108,4 +111,6 @@ __is_not_a_number(long double number) return(result); } +/****************************************************************************/ + #endif /* FLOATING_POINT_SUPPORT */ diff --git a/library/math_rint.c b/library/math_rint.c index 19f4910..0dccd76 100755 --- a/library/math_rint.c +++ b/library/math_rint.c @@ -1,5 +1,5 @@ /* - * $Id: math_rint.c,v 1.1 2004-08-06 12:56:43 hfrieden Exp $ + * $Id: math_rint.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -44,12 +44,13 @@ #include "math_headers.h" #endif /* _MATH_HEADERS_H */ -#if defined(FLOATING_POINT_SUPPORT) +/****************************************************************************/ + +/* The following is not part of the ISO 'C' (1994) (1994) standard. */ /****************************************************************************/ -extern double rint(double); -extern float rintf(float); +#if defined(FLOATING_POINT_SUPPORT) /****************************************************************************/ @@ -59,10 +60,7 @@ rint(double x) return floor ( x+0.5 ); } -float -rintf(float x) -{ - return (float) floor ( x + 0.5f ); -} +/****************************************************************************/ + +#endif /* FLOATING_POINT_SUPPORT */ -#endif diff --git a/library/math_rintf.c b/library/math_rintf.c new file mode 100755 index 0000000..1caacca --- /dev/null +++ b/library/math_rintf.c @@ -0,0 +1,66 @@ +/* + * $Id: math_rintf.c,v 1.1 2004-08-07 09:15:32 obarthel Exp $ + * + * :ts=4 + * + * Portable ISO 'C' (1994) runtime library for the Amiga computer + * Copyright (c) 2002-2004 by Olaf Barthel + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - Neither the name of Olaf Barthel nor the names of contributors + * may be used to endorse or promote products derived from this + * software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * + * PowerPC math library based in part on work by Sun Microsystems + * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. + * + * Developed at SunPro, a Sun Microsystems, Inc. business. + * Permission to use, copy, modify, and distribute this + * software is freely granted, provided that this notice + * is preserved. + */ + +#ifndef _MATH_HEADERS_H +#include "math_headers.h" +#endif /* _MATH_HEADERS_H */ + +/****************************************************************************/ + +/* The following is not part of the ISO 'C' (1994) (1994) standard. */ + +/****************************************************************************/ + +#if defined(FLOATING_POINT_SUPPORT) + +/****************************************************************************/ + +float +rintf(float x) +{ + return (float) floor ( x + 0.5f ); +} + +/****************************************************************************/ + +#endif /* FLOATING_POINT_SUPPORT */ + diff --git a/library/mount_fstatfs.c b/library/mount_fstatfs.c index 5142449..022f0ae 100644 --- a/library/mount_fstatfs.c +++ b/library/mount_fstatfs.c @@ -1,5 +1,5 @@ /* - * $Id: mount_fstatfs.c,v 1.1.1.1 2004-07-26 16:30:54 obarthel Exp $ + * $Id: mount_fstatfs.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/mount_statfs.c b/library/mount_statfs.c index 49a2dc7..ee3ae72 100644 --- a/library/mount_statfs.c +++ b/library/mount_statfs.c @@ -1,5 +1,5 @@ /* - * $Id: mount_statfs.c,v 1.1.1.1 2004-07-26 16:30:55 obarthel Exp $ + * $Id: mount_statfs.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/releasenotes b/library/releasenotes index 1b6748c..0856976 100644 --- a/library/releasenotes +++ b/library/releasenotes @@ -1,3 +1,13 @@ +- Ditched __is_infinity() and __is_not_a_number(), brought them back + as isinf() and isnan(). + +- Updated code and header files to state exactly which ISO 'C' version + is meant by the "The following is not part of the ISO 'C' standard." + warning. + +- Integrated rint() and rintf(). + + c.lib 1.167 (29.7.2004) - Modified __is_infinity() and __is_not_a_number() to use more portable diff --git a/library/signal_kill.c b/library/signal_kill.c index 2a4b84e..9d38748 100644 --- a/library/signal_kill.c +++ b/library/signal_kill.c @@ -1,5 +1,5 @@ /* - * $Id: signal_kill.c,v 1.1.1.1 2004-07-26 16:31:05 obarthel Exp $ + * $Id: signal_kill.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/signal_sigaddset.c b/library/signal_sigaddset.c index be7d5b4..c847454 100644 --- a/library/signal_sigaddset.c +++ b/library/signal_sigaddset.c @@ -1,5 +1,5 @@ /* - * $Id: signal_sigaddset.c,v 1.1.1.1 2004-07-26 16:31:05 obarthel Exp $ + * $Id: signal_sigaddset.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/signal_sigblock.c b/library/signal_sigblock.c index caa06cd..e014687 100644 --- a/library/signal_sigblock.c +++ b/library/signal_sigblock.c @@ -1,5 +1,5 @@ /* - * $Id: signal_sigblock.c,v 1.1.1.1 2004-07-26 16:31:05 obarthel Exp $ + * $Id: signal_sigblock.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/signal_sigemptyset.c b/library/signal_sigemptyset.c index 63a134f..806dce6 100644 --- a/library/signal_sigemptyset.c +++ b/library/signal_sigemptyset.c @@ -1,5 +1,5 @@ /* - * $Id: signal_sigemptyset.c,v 1.1.1.1 2004-07-26 16:31:06 obarthel Exp $ + * $Id: signal_sigemptyset.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/signal_sigmask.c b/library/signal_sigmask.c index 6ea3c4b..791e843 100644 --- a/library/signal_sigmask.c +++ b/library/signal_sigmask.c @@ -1,5 +1,5 @@ /* - * $Id: signal_sigmask.c,v 1.1.1.1 2004-07-26 16:31:06 obarthel Exp $ + * $Id: signal_sigmask.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/signal_sigprocmask.c b/library/signal_sigprocmask.c index 124cbc1..6ec2769 100644 --- a/library/signal_sigprocmask.c +++ b/library/signal_sigprocmask.c @@ -1,5 +1,5 @@ /* - * $Id: signal_sigprocmask.c,v 1.1.1.1 2004-07-26 16:31:06 obarthel Exp $ + * $Id: signal_sigprocmask.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/signal_sigsetmask.c b/library/signal_sigsetmask.c index 5d5278f..04189a3 100644 --- a/library/signal_sigsetmask.c +++ b/library/signal_sigsetmask.c @@ -1,5 +1,5 @@ /* - * $Id: signal_sigsetmask.c,v 1.1.1.1 2004-07-26 16:31:06 obarthel Exp $ + * $Id: signal_sigsetmask.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/smakefile b/library/smakefile index e63868b..4117a80 100644 --- a/library/smakefile +++ b/library/smakefile @@ -1,5 +1,5 @@ # -# $Id: smakefile,v 1.3 2004-08-06 11:53:49 obarthel Exp $ +# $Id: smakefile,v 1.4 2004-08-07 09:15:32 obarthel Exp $ # # :ts=8 # @@ -190,11 +190,15 @@ MATH_OBJ = \ math_fmod.o \ math_frexp.o \ math_init_exit.o \ + math_isinf.o \ + math_isnan.o \ math_ldexp.o \ math_log.o \ math_log10.o \ math_modf.o \ math_pow.o \ + math_rint.o \ + math_rintf.o \ math_sin.o \ math_sinh.o \ math_sqrt.o \ @@ -314,8 +318,6 @@ STDIO_OBJ = \ stdio_initializeiob.o \ stdio_init_exit.o \ stdio_iobhookentry.o \ - stdio_isinfinity.o \ - stdio_isnotanumber.o \ stdio_locksemaphorename.o \ stdio_nostdio.o \ stdio_openiob.o \ diff --git a/library/stat_chmod.c b/library/stat_chmod.c index 3eab8fd..f8c3439 100644 --- a/library/stat_chmod.c +++ b/library/stat_chmod.c @@ -1,5 +1,5 @@ /* - * $Id: stat_chmod.c,v 1.1.1.1 2004-07-26 16:31:21 obarthel Exp $ + * $Id: stat_chmod.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stat_convertfileinfo.c b/library/stat_convertfileinfo.c index 482b7c5..348b7db 100644 --- a/library/stat_convertfileinfo.c +++ b/library/stat_convertfileinfo.c @@ -1,5 +1,5 @@ /* - * $Id: stat_convertfileinfo.c,v 1.1.1.1 2004-07-26 16:31:21 obarthel Exp $ + * $Id: stat_convertfileinfo.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -41,7 +41,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stat_fchmod.c b/library/stat_fchmod.c index 24efaba..8c10e38 100644 --- a/library/stat_fchmod.c +++ b/library/stat_fchmod.c @@ -1,5 +1,5 @@ /* - * $Id: stat_fchmod.c,v 1.1.1.1 2004-07-26 16:31:22 obarthel Exp $ + * $Id: stat_fchmod.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stat_fstat.c b/library/stat_fstat.c index f0e6207..6f03c05 100644 --- a/library/stat_fstat.c +++ b/library/stat_fstat.c @@ -1,5 +1,5 @@ /* - * $Id: stat_fstat.c,v 1.1.1.1 2004-07-26 16:31:22 obarthel Exp $ + * $Id: stat_fstat.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stat_lstat.c b/library/stat_lstat.c index 49e28d2..18a5fa3 100644 --- a/library/stat_lstat.c +++ b/library/stat_lstat.c @@ -1,5 +1,5 @@ /* - * $Id: stat_lstat.c,v 1.1.1.1 2004-07-26 16:31:22 obarthel Exp $ + * $Id: stat_lstat.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stat_mkdir.c b/library/stat_mkdir.c index 13fd5a5..d88ebb8 100644 --- a/library/stat_mkdir.c +++ b/library/stat_mkdir.c @@ -1,5 +1,5 @@ /* - * $Id: stat_mkdir.c,v 1.1.1.1 2004-07-26 16:31:22 obarthel Exp $ + * $Id: stat_mkdir.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stat_rmdir.c b/library/stat_rmdir.c index 0af0c0c..200e0a8 100644 --- a/library/stat_rmdir.c +++ b/library/stat_rmdir.c @@ -1,5 +1,5 @@ /* - * $Id: stat_rmdir.c,v 1.1.1.1 2004-07-26 16:31:23 obarthel Exp $ + * $Id: stat_rmdir.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stat_stat.c b/library/stat_stat.c index 0b481d3..f646c73 100644 --- a/library/stat_stat.c +++ b/library/stat_stat.c @@ -1,5 +1,5 @@ /* - * $Id: stat_stat.c,v 1.1.1.1 2004-07-26 16:31:23 obarthel Exp $ + * $Id: stat_stat.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -47,7 +47,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stat_umask.c b/library/stat_umask.c index ec572d9..3b3f737 100644 --- a/library/stat_umask.c +++ b/library/stat_umask.c @@ -1,5 +1,5 @@ /* - * $Id: stat_umask.c,v 1.1.1.1 2004-07-26 16:31:23 obarthel Exp $ + * $Id: stat_umask.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdio_asprintf.c b/library/stdio_asprintf.c index f87f87d..6b94e08 100644 --- a/library/stdio_asprintf.c +++ b/library/stdio_asprintf.c @@ -1,5 +1,5 @@ /* - * $Id: stdio_asprintf.c,v 1.1.1.1 2004-07-26 16:31:23 obarthel Exp $ + * $Id: stdio_asprintf.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdio_headers.h b/library/stdio_headers.h index 8b90ee0..756c536 100644 --- a/library/stdio_headers.h +++ b/library/stdio_headers.h @@ -1,5 +1,5 @@ /* - * $Id: stdio_headers.h,v 1.1.1.1 2004-07-26 16:31:35 obarthel Exp $ + * $Id: stdio_headers.h,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -72,7 +72,6 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ #include #include #include diff --git a/library/stdio_popen.c b/library/stdio_popen.c index 8dccd7d..ddedee5 100644 --- a/library/stdio_popen.c +++ b/library/stdio_popen.c @@ -1,5 +1,5 @@ /* - * $Id: stdio_popen.c,v 1.1.1.1 2004-07-26 16:31:38 obarthel Exp $ + * $Id: stdio_popen.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -49,7 +49,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdio_vasprintf.c b/library/stdio_vasprintf.c index 3439c07..f5a143c 100644 --- a/library/stdio_vasprintf.c +++ b/library/stdio_vasprintf.c @@ -1,5 +1,5 @@ /* - * $Id: stdio_vasprintf.c,v 1.1.1.1 2004-07-26 16:31:43 obarthel Exp $ + * $Id: stdio_vasprintf.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -47,7 +47,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdio_vfprintf.c b/library/stdio_vfprintf.c index 163239b..1394f6d 100644 --- a/library/stdio_vfprintf.c +++ b/library/stdio_vfprintf.c @@ -1,5 +1,5 @@ /* - * $Id: stdio_vfprintf.c,v 1.1.1.1 2004-07-26 16:31:46 obarthel Exp $ + * $Id: stdio_vfprintf.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -645,7 +645,7 @@ vfprintf(FILE * stream,const char * format, va_list arg) else v = va_arg(arg, double); - if(__is_infinity(fabs(v))) + if(isinf(v) != 0) { SHOWMSG("infinity"); @@ -657,7 +657,7 @@ vfprintf(FILE * stream,const char * format, va_list arg) fill_character = ' '; } - else if (__is_not_a_number(v)) + else if (isnan(v)) { SHOWMSG("not a number"); diff --git a/library/stdio_vsnprintf.c b/library/stdio_vsnprintf.c index c106ba5..d641802 100644 --- a/library/stdio_vsnprintf.c +++ b/library/stdio_vsnprintf.c @@ -1,5 +1,5 @@ /* - * $Id: stdio_vsnprintf.c,v 1.1.1.1 2004-07-26 16:31:49 obarthel Exp $ + * $Id: stdio_vsnprintf.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdio_vsnprintf_hook_entry.c b/library/stdio_vsnprintf_hook_entry.c index 4dad893..c370039 100644 --- a/library/stdio_vsnprintf_hook_entry.c +++ b/library/stdio_vsnprintf_hook_entry.c @@ -1,5 +1,5 @@ /* - * $Id: stdio_vsnprintf_hook_entry.c,v 1.1.1.1 2004-07-26 16:31:49 obarthel Exp $ + * $Id: stdio_vsnprintf_hook_entry.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdlib_mkdtemp.c b/library/stdlib_mkdtemp.c index 1359e0f..31d0792 100644 --- a/library/stdlib_mkdtemp.c +++ b/library/stdlib_mkdtemp.c @@ -1,5 +1,5 @@ /* - * $Id: stdlib_mkdtemp.c,v 1.1.1.1 2004-07-26 16:32:00 obarthel Exp $ + * $Id: stdlib_mkdtemp.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -47,7 +47,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdlib_mkstemp.c b/library/stdlib_mkstemp.c index b91507e..dcae75c 100644 --- a/library/stdlib_mkstemp.c +++ b/library/stdlib_mkstemp.c @@ -1,5 +1,5 @@ /* - * $Id: stdlib_mkstemp.c,v 1.1.1.1 2004-07-26 16:32:00 obarthel Exp $ + * $Id: stdlib_mkstemp.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -47,7 +47,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdlib_mktemp.c b/library/stdlib_mktemp.c index ebe996e..03a75f1 100644 --- a/library/stdlib_mktemp.c +++ b/library/stdlib_mktemp.c @@ -1,5 +1,5 @@ /* - * $Id: stdlib_mktemp.c,v 1.1.1.1 2004-07-26 16:32:00 obarthel Exp $ + * $Id: stdlib_mktemp.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -48,7 +48,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdlib_putenv.c b/library/stdlib_putenv.c index 12e1ce7..b1323d4 100644 --- a/library/stdlib_putenv.c +++ b/library/stdlib_putenv.c @@ -1,5 +1,5 @@ /* - * $Id: stdlib_putenv.c,v 1.1.1.1 2004-07-26 16:32:02 obarthel Exp $ + * $Id: stdlib_putenv.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdlib_setenv.c b/library/stdlib_setenv.c index 9c94835..6bcd8d1 100644 --- a/library/stdlib_setenv.c +++ b/library/stdlib_setenv.c @@ -1,5 +1,5 @@ /* - * $Id: stdlib_setenv.c,v 1.1.1.1 2004-07-26 16:32:04 obarthel Exp $ + * $Id: stdlib_setenv.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -49,7 +49,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/stdlib_unsetenv.c b/library/stdlib_unsetenv.c index ca24785..1bbaf88 100644 --- a/library/stdlib_unsetenv.c +++ b/library/stdlib_unsetenv.c @@ -1,5 +1,5 @@ /* - * $Id: stdlib_unsetenv.c,v 1.1.1.1 2004-07-26 16:32:13 obarthel Exp $ + * $Id: stdlib_unsetenv.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -49,7 +49,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/string_bcmp.c b/library/string_bcmp.c index c4ae4e6..ca1c282 100644 --- a/library/string_bcmp.c +++ b/library/string_bcmp.c @@ -1,5 +1,5 @@ /* - * $Id: string_bcmp.c,v 1.1.1.1 2004-07-26 16:32:14 obarthel Exp $ + * $Id: string_bcmp.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/string_bcopy.c b/library/string_bcopy.c index 9821635..9c691fc 100644 --- a/library/string_bcopy.c +++ b/library/string_bcopy.c @@ -1,5 +1,5 @@ /* - * $Id: string_bcopy.c,v 1.1.1.1 2004-07-26 16:32:14 obarthel Exp $ + * $Id: string_bcopy.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/string_bzero.c b/library/string_bzero.c index dc7378a..d198ec8 100644 --- a/library/string_bzero.c +++ b/library/string_bzero.c @@ -1,5 +1,5 @@ /* - * $Id: string_bzero.c,v 1.1.1.1 2004-07-26 16:32:14 obarthel Exp $ + * $Id: string_bzero.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/string_index.c b/library/string_index.c index 82104d2..2b4a1d4 100644 --- a/library/string_index.c +++ b/library/string_index.c @@ -1,5 +1,5 @@ /* - * $Id: string_index.c,v 1.1.1.1 2004-07-26 16:32:14 obarthel Exp $ + * $Id: string_index.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/string_rindex.c b/library/string_rindex.c index 8239cab..71ce7f7 100644 --- a/library/string_rindex.c +++ b/library/string_rindex.c @@ -1,5 +1,5 @@ /* - * $Id: string_rindex.c,v 1.1.1.1 2004-07-26 16:32:17 obarthel Exp $ + * $Id: string_rindex.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/string_strdup.c b/library/string_strdup.c index 21b4734..47c4d90 100644 --- a/library/string_strdup.c +++ b/library/string_strdup.c @@ -1,5 +1,5 @@ /* - * $Id: string_strdup.c,v 1.1.1.1 2004-07-26 16:32:18 obarthel Exp $ + * $Id: string_strdup.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -47,7 +47,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/strings_strcasecmp.c b/library/strings_strcasecmp.c index 837f97f..d83af70 100644 --- a/library/strings_strcasecmp.c +++ b/library/strings_strcasecmp.c @@ -1,5 +1,5 @@ /* - * $Id: strings_strcasecmp.c,v 1.1.1.1 2004-07-26 16:32:21 obarthel Exp $ + * $Id: strings_strcasecmp.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/strings_strncasecmp.c b/library/strings_strncasecmp.c index efbeb89..6f9611d 100644 --- a/library/strings_strncasecmp.c +++ b/library/strings_strncasecmp.c @@ -1,5 +1,5 @@ /* - * $Id: strings_strncasecmp.c,v 1.1.1.1 2004-07-26 16:32:21 obarthel Exp $ + * $Id: strings_strncasecmp.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/time_gettimeofday.c b/library/time_gettimeofday.c index f68428a..0db60c0 100644 --- a/library/time_gettimeofday.c +++ b/library/time_gettimeofday.c @@ -1,5 +1,5 @@ /* - * $Id: time_gettimeofday.c,v 1.1.1.1 2004-07-26 16:32:22 obarthel Exp $ + * $Id: time_gettimeofday.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -45,7 +45,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_access.c b/library/unistd_access.c index 6348044..1fe676b 100644 --- a/library/unistd_access.c +++ b/library/unistd_access.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_access.c,v 1.1.1.1 2004-07-26 16:32:25 obarthel Exp $ + * $Id: unistd_access.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_chdir.c b/library/unistd_chdir.c index 8c72dcf..dade598 100644 --- a/library/unistd_chdir.c +++ b/library/unistd_chdir.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_chdir.c,v 1.1.1.1 2004-07-26 16:32:25 obarthel Exp $ + * $Id: unistd_chdir.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_chown.c b/library/unistd_chown.c index ad0b99a..d4b0d25 100644 --- a/library/unistd_chown.c +++ b/library/unistd_chown.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_chown.c,v 1.1.1.1 2004-07-26 16:32:26 obarthel Exp $ + * $Id: unistd_chown.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_data.c b/library/unistd_data.c index a7db6fe..ff4c349 100644 --- a/library/unistd_data.c +++ b/library/unistd_data.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_data.c,v 1.1.1.1 2004-07-26 16:32:26 obarthel Exp $ + * $Id: unistd_data.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_dup.c b/library/unistd_dup.c index bd0945b..d4d5466 100644 --- a/library/unistd_dup.c +++ b/library/unistd_dup.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_dup.c,v 1.1.1.1 2004-07-26 16:32:26 obarthel Exp $ + * $Id: unistd_dup.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_dup2.c b/library/unistd_dup2.c index ba17bbf..1bf333b 100644 --- a/library/unistd_dup2.c +++ b/library/unistd_dup2.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_dup2.c,v 1.1.1.1 2004-07-26 16:32:26 obarthel Exp $ + * $Id: unistd_dup2.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_fchown.c b/library/unistd_fchown.c index cbc6148..591c242 100644 --- a/library/unistd_fchown.c +++ b/library/unistd_fchown.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_fchown.c,v 1.1.1.1 2004-07-26 16:32:26 obarthel Exp $ + * $Id: unistd_fchown.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_fdopen.c b/library/unistd_fdopen.c index e89ad01..8c0cd1b 100644 --- a/library/unistd_fdopen.c +++ b/library/unistd_fdopen.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_fdopen.c,v 1.1.1.1 2004-07-26 16:32:27 obarthel Exp $ + * $Id: unistd_fdopen.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_fileno.c b/library/unistd_fileno.c index e5579f8..ed086e5 100644 --- a/library/unistd_fileno.c +++ b/library/unistd_fileno.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_fileno.c,v 1.1.1.1 2004-07-26 16:32:27 obarthel Exp $ + * $Id: unistd_fileno.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_ftruncate.c b/library/unistd_ftruncate.c index 96e6575..c12eaa9 100644 --- a/library/unistd_ftruncate.c +++ b/library/unistd_ftruncate.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_ftruncate.c,v 1.1.1.1 2004-07-26 16:32:27 obarthel Exp $ + * $Id: unistd_ftruncate.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_getcwd.c b/library/unistd_getcwd.c index 8258af5..80cf31b 100644 --- a/library/unistd_getcwd.c +++ b/library/unistd_getcwd.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_getcwd.c,v 1.1.1.1 2004-07-26 16:32:27 obarthel Exp $ + * $Id: unistd_getcwd.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -53,7 +53,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_getopt.c b/library/unistd_getopt.c index 7baf2a2..cb735eb 100644 --- a/library/unistd_getopt.c +++ b/library/unistd_getopt.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_getopt.c,v 1.1.1.1 2004-07-26 16:32:28 obarthel Exp $ + * $Id: unistd_getopt.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_getpid.c b/library/unistd_getpid.c index 027a3c4..93d88b0 100644 --- a/library/unistd_getpid.c +++ b/library/unistd_getpid.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_getpid.c,v 1.1.1.1 2004-07-26 16:32:28 obarthel Exp $ + * $Id: unistd_getpid.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_init_exit.c b/library/unistd_init_exit.c index a88a12a..8a21e29 100644 --- a/library/unistd_init_exit.c +++ b/library/unistd_init_exit.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_init_exit.c,v 1.1.1.1 2004-07-26 16:32:28 obarthel Exp $ + * $Id: unistd_init_exit.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -41,7 +41,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_isatty.c b/library/unistd_isatty.c index 7b409c7..6505d88 100644 --- a/library/unistd_isatty.c +++ b/library/unistd_isatty.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_isatty.c,v 1.1.1.1 2004-07-26 16:32:28 obarthel Exp $ + * $Id: unistd_isatty.c,v 1.2 2004-08-07 09:15:32 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_lchown.c b/library/unistd_lchown.c index d2f8085..4d78bd6 100644 --- a/library/unistd_lchown.c +++ b/library/unistd_lchown.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_lchown.c,v 1.1.1.1 2004-07-26 16:32:29 obarthel Exp $ + * $Id: unistd_lchown.c,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_link.c b/library/unistd_link.c index 7f980e9..4b04e7b 100644 --- a/library/unistd_link.c +++ b/library/unistd_link.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_link.c,v 1.1.1.1 2004-07-26 16:32:29 obarthel Exp $ + * $Id: unistd_link.c,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_readlink.c b/library/unistd_readlink.c index a2c55c3..b1b2bc6 100644 --- a/library/unistd_readlink.c +++ b/library/unistd_readlink.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_readlink.c,v 1.1.1.1 2004-07-26 16:32:29 obarthel Exp $ + * $Id: unistd_readlink.c,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_realpath.c b/library/unistd_realpath.c index 704cc9f..e9d84d5 100644 --- a/library/unistd_realpath.c +++ b/library/unistd_realpath.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_realpath.c,v 1.1.1.1 2004-07-26 16:32:29 obarthel Exp $ + * $Id: unistd_realpath.c,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_sleep.c b/library/unistd_sleep.c index 7166df9..2bc9dc3 100644 --- a/library/unistd_sleep.c +++ b/library/unistd_sleep.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_sleep.c,v 1.1.1.1 2004-07-26 16:32:30 obarthel Exp $ + * $Id: unistd_sleep.c,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -37,7 +37,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_symlink.c b/library/unistd_symlink.c index 88efb64..dd51118 100644 --- a/library/unistd_symlink.c +++ b/library/unistd_symlink.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_symlink.c,v 1.1.1.1 2004-07-26 16:32:31 obarthel Exp $ + * $Id: unistd_symlink.c,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_truncate.c b/library/unistd_truncate.c index 6c15a84..371ffd9 100644 --- a/library/unistd_truncate.c +++ b/library/unistd_truncate.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_truncate.c,v 1.1.1.1 2004-07-26 16:32:32 obarthel Exp $ + * $Id: unistd_truncate.c,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -43,7 +43,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/unistd_unlink.c b/library/unistd_unlink.c index 99b1218..b82fa7c 100644 --- a/library/unistd_unlink.c +++ b/library/unistd_unlink.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_unlink.c,v 1.1.1.1 2004-07-26 16:32:33 obarthel Exp $ + * $Id: unistd_unlink.c,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -49,7 +49,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/ diff --git a/library/utime_utime.c b/library/utime_utime.c index 1f8ce28..270b05f 100644 --- a/library/utime_utime.c +++ b/library/utime_utime.c @@ -1,5 +1,5 @@ /* - * $Id: utime_utime.c,v 1.1.1.1 2004-07-26 16:32:41 obarthel Exp $ + * $Id: utime_utime.c,v 1.2 2004-08-07 09:15:33 obarthel Exp $ * * :ts=4 * @@ -47,7 +47,7 @@ /****************************************************************************/ -/* The following is not part of the ISO 'C' standard. */ +/* The following is not part of the ISO 'C' (1994) standard. */ /****************************************************************************/