Guest User

Untitled

a guest
Aug 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. main(){
  4.  
  5. int t;
  6.  
  7. #if (defined(__VFP_FP__)
  8. t = 0;
  9. # warning "__VFP_FP__ macro is defined!"
  10. #else
  11. t = 1;
  12. # warning "__VFP_FP__ macro is no defined!"
  13. #endif
  14.  
  15. return t;
  16.  
  17. }
Add Comment
Please, Sign In to add comment