re PR libquadmath/55473 (quadmath.h should have extern "C" for C++ users)
PR libquadmath/55473 * quadmath.h: Add 'extern "C"' block for C++ use. From-SVN: r196517
This commit is contained in:
parent
17d53ff0ac
commit
5709153c3f
@ -1,3 +1,8 @@
|
||||
2013-03-06 Shakthi Kannan <shakthimaan@gmail.com>
|
||||
|
||||
PR libquadmath/55473
|
||||
* quadmath.h: Add 'extern "C"' block for C++ use.
|
||||
|
||||
2013-02-19 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR libquadmath/56379
|
||||
|
@ -23,6 +23,10 @@ Boston, MA 02110-1301, USA. */
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* Define the complex type corresponding to __float128
|
||||
("_Complex __float128" is not allowed) */
|
||||
typedef _Complex float __attribute__((mode(TC))) __complex128;
|
||||
@ -189,4 +193,8 @@ __quadmath_nth (conjq (__complex128 __z))
|
||||
return __extension__ ~__z;
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user