diff options
| author | christos <christos@NetBSD.org> | 1998-11-15 16:51:45 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 1998-11-15 16:51:45 +0000 |
| commit | e6bf91675eb11f6dbe5479c1aaa1a535e13aec47 (patch) | |
| tree | 55c01b35c62190e667bb922841f6fdedffb92899 /include/math.h | |
| parent | 186efef26d818c684bd78605e344643b49b55a98 (diff) | |
s/void/const void/
Diffstat (limited to 'include/math.h')
| -rw-r--r-- | include/math.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/math.h b/include/math.h index 7139cc8d3d0..3af25a26398 100644 --- a/include/math.h +++ b/include/math.h @@ -1,4 +1,4 @@ -/* $NetBSD: math.h,v 1.16 1998/11/15 15:57:25 christos Exp $ */ +/* $NetBSD: math.h,v 1.17 1998/11/15 16:51:45 christos Exp $ */ /* * ==================================================== @@ -24,7 +24,7 @@ * ANSI/POSIX */ extern const char __infinity[]; -#define HUGE_VAL (*(const double *)(void *)__infinity) +#define HUGE_VAL (*(const double *)(const void *)__infinity) /* * XOPEN/SVID |
