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.

27 lines
698 B

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