Advertisement
Guest User

gmp.h (stub)

a guest
Sep 16th, 2019
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1. /* gmp.h - Stub Header  */
  2. #ifndef __STUB__GMP_H__
  3.  #define __STUB__GMP_H__
  4.  
  5. #if defined(__x86_64__) || \
  6. #    if defined(__ILP32__)
  7. #        include "gmp-x32.h"
  8. #    else
  9. #        include "gmp-64.h"
  10. #    endif
  11. #else
  12. #    include "gmp-32.h"
  13. #endif
  14.  
  15. #endif /* __STUB__GMP_H__ */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement