Split functions into many files, remove string from std.

This commit is contained in:
2018-09-01 23:19:28 -07:00
parent 3c949c9ed3
commit 22ac8ba2d0
13 changed files with 90 additions and 55 deletions

View File

@@ -1,4 +1,11 @@
#include "functions.hpp"
#include "operator_functions.hpp"
#include <mpfr.h>
#include "types.hpp"
#include "ref.hpp"
#include "util.hpp"
extern "C" {
#include "util.h"
}
FUNCTION_MPFR2(plus, add)
FUNCTION_MPFR2(minus, sub)