Skip to content
Snippets Groups Projects
Commit aa1b95a7 authored by Antonio El Khoury's avatar Antonio El Khoury
Browse files

[C++] Implement SINCOS macro for QNX.

parent 6b81f2f9
Branches
Tags
No related merge requests found
......@@ -24,6 +24,8 @@
#define SINCOS sincos
#elif __APPLE__
#define SINCOS __sincos
#elif __QNXNTO__
#define SINCOS(a,sa,ca) (*sa) = std::sin(a); (*ca) = std::cos(a)
#endif
#endif //#ifndef __math_sincos_hpp__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment