has_tommath.cpp 337 B

123456789101112131415
  1. // Copyright John Maddock 2011.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #include <tommath.h>
  6. int main()
  7. {
  8. mp_int v;
  9. mp_init(&v);
  10. if (v.dp)
  11. mp_clear(&v);
  12. return 0;
  13. }