Rev: nettle/sexp-format.c:1.2
#include "sexp.h"
#include "buffer.h"
-#if HAVE_LIBGMP
-# include "bignum.h"
-#endif
+#include "bignum.h"
-/* Code copied from sexp-conv.c: sexp_put_length */
static unsigned
format_prefix(struct nettle_buffer *buffer,
unsigned length)
}
case 'b':
{
-#if HAVE_LIBGMP
const MP_INT *n = va_arg(args, const MP_INT *);
unsigned length;
unsigned prefix_length;
done += length;
-#else /* ! HAVE_LIBGMP */
- abort();
-#endif /* ! HAVE_LIBGMP */
break;
}
}