diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-12-29 19:49:11 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-12-30 13:00:13 -0500 |
commit | 9c89fca6e0bd8ecf72c793965b8bdf51b883a64d (patch) | |
tree | f9d2da42275d315595262434ed94bcfc2230e591 /math | |
parent | 085ec079e37b0013b421c97b467c6b8ea36a1289 (diff) | |
download | glibc-9c89fca6e0bd8ecf72c793965b8bdf51b883a64d.tar.gz |
math: use existing nonnull attribute define
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'math')
-rw-r--r-- | math/bits/mathcalls.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h index e0b160e19d..9fed0c3a3d 100644 --- a/math/bits/mathcalls.h +++ b/math/bits/mathcalls.h @@ -112,8 +112,7 @@ __MATHCALL (log,, (_Mdouble_ __x)); __MATHCALL (log10,, (_Mdouble_ __x)); /* Break VALUE into integral and fractional parts. */ -__MATHCALL (modf,, (_Mdouble_ __x, _Mdouble_ *__iptr)) - __attribute__ ((__nonnull__ (2))); +__MATHCALL (modf,, (_Mdouble_ __x, _Mdouble_ *__iptr)) __nonnull ((2)); _Mdouble_END_NAMESPACE #ifdef __USE_GNU |