Guest User

Untitled

a guest
Jan 21st, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #ifdef __cplusplus
  2. extern "C" {
  3. #endif
  4.  
  5. //...
  6.  
  7. #ifdef __cplusplus
  8. }
  9. #endif
  10.  
  11. complex sqrt(complex); //C++ linkage by default
  12. extern "C" {
  13. double sqrt(double);//C linkage
  14. }
Add Comment
Please, Sign In to add comment