Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
common.h are supposed to be included from other header, so call it wi…
…th quotes; ref #3032
- Loading branch information
Showing
20 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -33,7 +33,7 @@ | ||
#include <limits.h> | ||
|
||
#include "mrbconf.h" | ||
#include <mruby/common.h> | ||
#include "mruby/common.h" | ||
#include <mruby/value.h> | ||
#include <mruby/gc.h> | ||
#include <mruby/version.h> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_ARRAY_H | ||
#define MRUBY_ARRAY_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/* | ||
* Array class | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_CLASS_H | ||
#define MRUBY_CLASS_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* Class class | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,5 +1,5 @@ | ||
/* | ||
** mruby/common.h - mruby common platform definitions | ||
**"common.h - mruby common platform definition" | ||
** | ||
** See Copyright Notice in mruby.h | ||
*/ | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_COMPILE_H | ||
#define MRUBY_COMPILE_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* MRuby Compiler | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_DATA_H | ||
#define MRUBY_DATA_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* Custom C wrapped data. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_DEBUG_H | ||
#define MRUBY_DEBUG_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* MRuby Debugging. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -9,7 +9,7 @@ | ||
|
||
#include <mruby.h> | ||
#include <mruby/irep.h> | ||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* Dumping compiled mruby script. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_ERROR_H | ||
#define MRUBY_ERROR_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* MRuby error handling. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_GC_H | ||
#define MRUBY_GC_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* Uncommon memory management stuffs. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_HASH_H | ||
#define MRUBY_HASH_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* Hash class | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_IREP_H | ||
#define MRUBY_IREP_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
#include <mruby/compile.h> | ||
|
||
/** | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -10,7 +10,7 @@ | ||
#include <string.h> | ||
|
||
#include <mruby.h> | ||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* khash definitions used in mruby's hash table. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_NUMERIC_H | ||
#define MRUBY_NUMERIC_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* Numeric class and it's sub-classes. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_PROC_H | ||
#define MRUBY_PROC_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
#include <mruby/irep.h> | ||
|
||
/** | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_RANGE_H | ||
#define MRUBY_RANGE_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* Range class | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_STRING_H | ||
#define MRUBY_STRING_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* String class | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_VALUE_H | ||
#define MRUBY_VALUE_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* MRuby Value definition functions and macros. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_VARIABLE_H | ||
#define MRUBY_VARIABLE_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* Functions to access mruby variables. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,7 +7,7 @@ | ||
#ifndef MRUBY_VERSION_H | ||
#define MRUBY_VERSION_H | ||
|
||
#include <mruby/common.h> | ||
#include "common.h" | ||
|
||
/** | ||
* mruby version definition macros | ||