File: bigint.h

package info (click to toggle)
spigot 0.2017-01-15.gdad1bbc6-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, stretch, trixie
  • size: 904 kB
  • ctags: 1,521
  • sloc: cpp: 9,516; sh: 1,225; python: 643; makefile: 24
file content (10 lines) | stat: -rw-r--r-- 194 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
/*
 * Switch header which includes an appropriate bi_* header to get one
 * or other implementation of bigints.
 */

#ifdef HAVE_LIBGMP
#include "bi_gmp.h"
#else
#include "bi_internal.h"
#endif