Skip to content

Commit

Permalink
move compile.h to mruby/compile.h
Browse files Browse the repository at this point in the history
  • Loading branch information
matz committed May 18, 2012
1 parent bbf7b0c commit 2191621
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/codegen.c
Expand Up @@ -9,7 +9,7 @@

#include "mruby.h"
#include "mruby/irep.h"
#include "compile.h"
#include "mruby/compile.h"
#include "mruby/proc.h"
#include "opcode.h"
#include "mruby/string.h"
Expand Down
2 changes: 1 addition & 1 deletion src/parse.y
Expand Up @@ -14,7 +14,7 @@

#include "mruby.h"
#include "st.h"
#include "compile.h"
#include "mruby/compile.h"
#include <stdio.h>
#include <errno.h>
#include <ctype.h>
Expand Down
2 changes: 1 addition & 1 deletion tools/mirb/mirb.c
Expand Up @@ -11,7 +11,7 @@
#include <mruby.h>
#include <mruby/proc.h>
#include <mruby/data.h>
#include <compile.h>
#include <mruby/compile.h>

/* Guess if the user might want to enter more
* or if he wants an evaluation of his code now */
Expand Down
2 changes: 1 addition & 1 deletion tools/mrbc/mrbc.c
Expand Up @@ -2,7 +2,7 @@
#include "mruby/proc.h"
#include "mruby/dump.h"
#include "mruby/cdump.h"
#include "compile.h"
#include "mruby/compile.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
Expand Down
2 changes: 1 addition & 1 deletion tools/mruby/mruby.c
Expand Up @@ -2,7 +2,7 @@
#include "mruby/proc.h"
#include "mruby/array.h"
#include "mruby/string.h"
#include "compile.h"
#include "mruby/compile.h"
#include "mruby/dump.h"
#include <stdio.h>
#include <string.h>
Expand Down

0 comments on commit 2191621

Please sign in to comment.