diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/fenv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/fenv.h b/math/fenv.h index bda3ee9..0e2904a 100644 --- a/math/fenv.h +++ b/math/fenv.h @@ -119,12 +119,12 @@ extern int feupdateenv (__const fenv_t *__envp) __THROW; /* Enable individual exceptions. Will not enable more exceptions than EXCEPTS specifies. Returns the previous enabled exceptions if all - exceptions are successfull set, otherwise returns -1. */ + exceptions are successfully set, otherwise returns -1. */ extern int feenableexcept (int __excepts) __THROW; /* Disable individual exceptions. Will not disable more exceptions than EXCEPTS specifies. Returns the previous enabled exceptions if all - exceptions are successfull disabled, otherwise returns -1. */ + exceptions are successfully disabled, otherwise returns -1. */ extern int fedisableexcept (int __excepts) __THROW; /* Return enabled exceptions. */ |