blob: e9257a0f82afe2f30e78f507327fcfb9d4bb2ab6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef BN_TCL_H_
#define BN_TCL_H_
#ifdef MP_NO_STDINT
#ifdef HAVE_STDINT_H
# include <stdint.h>
#else
# include "../compat/stdint.h"
#endif
#endif
#include "tommath.h"
#include "tclTomMathDecls.h"
#endif
|