summaryrefslogtreecommitdiffhomepage
path: root/src/gc.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-07-13 21:54:19 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2012-07-13 21:54:19 -0700
commit89a67f4e4eb179f4173da0fd26e25df33d8a164b (patch)
treea0ea5f5df41847e0978ddeeb73ceccb698121438 /src/gc.c
parent08f7fab377dab2ed4d9e6d7f4a304f2ce804d12c (diff)
parent96366117ea4bd91bccf00110469765ebc1ebaa8c (diff)
downloadmruby-89a67f4e4eb179f4173da0fd26e25df33d8a164b.tar.gz
mruby-89a67f4e4eb179f4173da0fd26e25df33d8a164b.zip
Merge pull request #366 from junjis0203/remove_unnecessary_header
Remove unnecessary header inclusion
Diffstat (limited to 'src/gc.c')
-rw-r--r--src/gc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gc.c b/src/gc.c
index ada0bf31f..3c00bb015 100644
--- a/src/gc.c
+++ b/src/gc.c
@@ -11,12 +11,10 @@
#include "mruby/string.h"
#include "mruby/hash.h"
#include "mruby/range.h"
-#include "mruby/khash.h"
#include <string.h>
#include "mruby/struct.h"
#include "mruby/proc.h"
#include "mruby/data.h"
-#include "mruby/numeric.h"
#include "mruby/variable.h"
/*
@@ -101,6 +99,7 @@ typedef struct {
} RVALUE;
#ifdef GC_PROFILE
+#include <stdio.h>
#include <sys/time.h>
static double program_invoke_time = 0;