diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-09-01 04:41:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-09-01 04:41:12 +0000 |
commit | 858db9cbc8e3286694a6874c282b759ddbe90a1f (patch) | |
tree | 8ad0a65b1af2e744d6cf64b438d37b34b106d5f9 /sysdeps/mips/bits | |
parent | ce5c1dab0dff8d85589639a27ff740fe85113103 (diff) | |
download | glibc-858db9cbc8e3286694a6874c282b759ddbe90a1f.tar glibc-858db9cbc8e3286694a6874c282b759ddbe90a1f.tar.gz glibc-858db9cbc8e3286694a6874c282b759ddbe90a1f.tar.bz2 glibc-858db9cbc8e3286694a6874c282b759ddbe90a1f.zip |
Change type of FE_*_ENV macros to const fenv_t*.
Diffstat (limited to 'sysdeps/mips/bits')
-rw-r--r-- | sysdeps/mips/bits/fenv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mips/bits/fenv.h b/sysdeps/mips/bits/fenv.h index efa90b6dbd..72dd281b9d 100644 --- a/sysdeps/mips/bits/fenv.h +++ b/sysdeps/mips/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -69,4 +69,4 @@ typedef struct fenv_t; /* If the default argument is used we use this value. */ -#define FE_DFL_ENV ((fenv_t *) -1) +#define FE_DFL_ENV ((__const fenv_t *) -1) |