diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-05-22 02:09:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-05-22 02:09:54 +0000 |
commit | cca4aa58b57d34c33b7a066651419a0b19a4d674 (patch) | |
tree | 7a4faa9590997a6542b3d001bafb44168fabddc1 /math/test-fenv.c | |
parent | 84c9409e9c038a79d993da5fb30e6dcf162796bf (diff) | |
download | glibc-cca4aa58b57d34c33b7a066651419a0b19a4d674.tar.gz glibc-cca4aa58b57d34c33b7a066651419a0b19a4d674.tar.xz glibc-cca4aa58b57d34c33b7a066651419a0b19a4d674.zip |
Update.
2003-05-21 H.J. Lu <hongjiu.lu@intel.com> * math/test-fenv.c (feexcp_nomask_test): Fix comment (feexcp_mask_test): Likewise.
Diffstat (limited to 'math/test-fenv.c')
-rw-r--r-- | math/test-fenv.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/math/test-fenv.c b/math/test-fenv.c index 1fcefc732a..78127c338e 100644 --- a/math/test-fenv.c +++ b/math/test-fenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1998, 2000, 2001 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1998, 2000, 2001, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger <aj@suse.de> and Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -350,7 +350,8 @@ feexcp_nomask_test (const char *flag_name, int fe_exc) int status; pid_t pid; - printf ("Test: after fedisable (%s) processes will abort\n", flag_name); + printf ("Test: after fedisableexcept (%s) processes will abort\n", + flag_name); printf (" when feraiseexcept (%s) is called.\n", flag_name); pid = fork (); if (pid == 0) @@ -403,7 +404,8 @@ feexcp_mask_test (const char *flag_name, int fe_exc) int exception; pid_t pid; - printf ("Test: after fedisable (%s) processes will not abort\n", flag_name); + printf ("Test: after fedisableexcept (%s) processes will not abort\n", + flag_name); printf (" when feraiseexcept (%s) is called.\n", flag_name); pid = fork (); if (pid == 0) |