mirror of
https://github.com/vale981/arb
synced 2025-03-04 08:51:40 -05:00
missing C++ include guards
This commit is contained in:
parent
185b6eab10
commit
af96e2cf20
2 changed files with 16 additions and 0 deletions
|
@ -26,6 +26,10 @@
|
|||
#include "arb_poly.h"
|
||||
#include "acb_poly.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define ARB_FMPZ_POLY_ROOTS_VERBOSE 1
|
||||
|
||||
void _arb_fmpz_poly_evaluate_acb_horner(acb_t res, const fmpz * f, slong len, const acb_t x, slong prec);
|
||||
|
@ -55,4 +59,8 @@ void arb_fmpz_poly_cos_minpoly(fmpz_poly_t res, ulong n)
|
|||
|
||||
void arb_fmpz_poly_gauss_period_minpoly(fmpz_poly_t res, ulong q, ulong n);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
8
dlog.h
8
dlog.h
|
@ -29,6 +29,10 @@
|
|||
#include "flint/ulong_extras.h"
|
||||
#include "flint/nmod_vec.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
enum
|
||||
{
|
||||
DLOG_MODPE, DLOG_CRT, DLOG_POWER, DLOG_BSGS, DLOG_TABLE, DLOG_23
|
||||
|
@ -272,4 +276,8 @@ void dlog_vec_sieve_precomp(ulong *v, ulong nv, dlog_precomp_t pre, ulong a, ul
|
|||
void dlog_vec_sieve_add_precomp(ulong *v, ulong nv, dlog_precomp_t pre, ulong a, ulong va, nmod_t mod, ulong na, nmod_t order);
|
||||
void dlog_vec_add_precomp(ulong *v, ulong nv, dlog_precomp_t pre, ulong a, ulong va, nmod_t mod, ulong na, nmod_t order);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue