You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
669 B

  1. #ifdef _CL_CONFIG_PUBLIC_H
  2. #include "cln/host_cpu.h"
  3. #include "cln/version.h"
  4. /*
  5. * FIXME: this should not be exposed to user. Or at least it should be
  6. * renamed to CL_HAVE_LONGLONG or something like that.
  7. */
  8. /* compiler supports the `long long' type */
  9. #undef HAVE_LONGLONG
  10. /*
  11. * Numbers in the heap are stored as "digit" (or "limb" in GMP speak)
  12. * sequences. A digit is an unsigned int with sizeof(void *)*CHAR_BIT bits.
  13. * It should be 8 or 16 or 32 or 64 bits. If CLN is sitting on top of GMP
  14. * it should match mp_limb_t
  15. */
  16. #undef GMP_DEMANDS_UINTD_INT
  17. #undef GMP_DEMANDS_UINTD_LONG
  18. #undef GMP_DEMANDS_UINTD_LONG_LONG
  19. #endif /* _CL_CONFIG_PUBLIC_H */