blob: 4bc97973b96938a0be9468e005135387654aac01 [file] [log] [blame]
Alexandre Lision7fd5d3d2013-12-04 13:06:40 -05001/*
2 * bn00.c - auto-size-detecting bn??.c file.
3 *
4 * Written in 1995 by Colin Plumb.
5 * For licensing and other legal details, see the file legal.c.
6 */
7
8#include "bnsize00.h"
9
10#if BNSIZE64
11
12/* Include all of the C source file by reference */
13#include "bn64.c"
14#include "bninit64.c"
15
16#elif BNSIZE32
17
18/* Include all of the C source file by reference */
19#include "bn32.c"
20#include "bninit32.c"
21
22#else /* BNSIZE16 */
23
24/* Include all of the C source file by reference */
25#include "bn16.c"
26#include "bninit16.c"
27
28#endif