Skip to content

Commit

Permalink
complex.h: fix __NO_LONG_DOUBLE_MATH test
Browse files Browse the repository at this point in the history
PPC doesn't support long double yet...
  • Loading branch information
mmuman committed Sep 18, 2015
1 parent 22dc6b7 commit dab2aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/system/libroot/posix/glibc/math/complex.h
Expand Up @@ -84,7 +84,7 @@ __BEGIN_DECLS

/* And the long double versions. It is non-critical to define them
here unconditionally since `long double' is required in ISO C99. */
#if __STDC__ - 0 || __GNUC__ - 0 && !defined __NO_LONG_DOUBLE_MATH
#if (__STDC__ - 0 || __GNUC__ - 0) && !defined __NO_LONG_DOUBLE_MATH
# ifndef _Mlong_double_
# define _Mlong_double_ long double
# endif
Expand Down

0 comments on commit dab2aa8

Please sign in to comment.