stage1: add missing math.h includes

This commit is contained in:
Andrew Kelley 2020-07-24 17:02:03 -07:00
parent bd121f3af4
commit 2475f653fd
2 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,7 @@
#include <stdio.h>
#include <errno.h>
#include <math.h>
enum ResumeId {
ResumeIdManual,

View File

@ -19,6 +19,7 @@
#include "all_types.hpp"
#include <errno.h>
#include <math.h>
struct IrBuilderSrc {
CodeGen *codegen;