Testing latest pari + WASM + node.js... and it works?! Wow.
License: GPL3
ubuntu2004
/* Copyright (C) 2000 The PARI group.12This file is part of the PARI/GP package.34PARI/GP is free software; you can redistribute it and/or modify it under the5terms of the GNU General Public License as published by the Free Software6Foundation; either version 2 of the License, or (at your option) any later7version. It is distributed in the hope that it will be useful, but WITHOUT8ANY WARRANTY WHATSOEVER.910Check the License for details. You should have received a copy of it, along11with the package; see the file 'COPYING'. If not, write to the Free Software12Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */1314#ifndef __GENPARI__15#define __GENPARI__16#include "paricfg.h"1718#include <stdlib.h> /* malloc, free, atoi */19#ifdef UNIX20# define _INCLUDE_POSIX_SOURCE /* for HPUX */21# include <sys/types.h> /* size_t */22#endif2324#include <signal.h>25#include <stdio.h>26#include <stdarg.h>27#include <setjmp.h>28#include <string.h>29#if !defined(_WIN32)30# include <unistd.h>31#else32# include <io.h>33#endif34#include <math.h>35#include <memory.h>36#include <ctype.h>3738#include "parisys.h"39#include "parigen.h"40#include "paricast.h"41#include "paristio.h"42#include "paricom.h"43#include "parierr.h"44#include "paridbglvl.h"45BEGINEXTERN46#include "paridecl.h"47#include "paritune.h"48#include "parimt.h"49#ifndef PARI_NO_MPINL_H50# include "mpinl.h"51#endif52#ifndef PARI_NO_PARIINL_H53# include "pariinl.h"54#endif55ENDEXTERN56#include "pariold.h"57#endif585960