summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro Matz Matsumoto <[email protected]>2013-01-30 07:38:14 +0900
committerYukihiro Matz Matsumoto <[email protected]>2013-01-30 07:38:14 +0900
commit900b8564158b66616492d7e072d8da73830d249d (patch)
tree9844f07b6658d7a99b5fbd4080be06d944530434 /include
parent24679c6dd64a09a18d9576b4d87a11b3fd223268 (diff)
parentcf81a88b04cff0ed59a2f73b345e494a18e8577d (diff)
downloadmruby-900b8564158b66616492d7e072d8da73830d249d.tar.gz
mruby-900b8564158b66616492d7e072d8da73830d249d.zip
remove src/cdump.c to resolve; need make clean
Diffstat (limited to 'include')
-rw-r--r--include/mruby/cdump.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/include/mruby/cdump.h b/include/mruby/cdump.h
deleted file mode 100644
index ccb5fc06b..000000000
--- a/include/mruby/cdump.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
-** mruby/cdump.h - mruby binary dumper (C source format)
-**
-** See Copyright Notice in mruby.h
-*/
-
-#ifndef MRUBY_CDUMP_H
-#define MRUBY_CDUMP_H
-
-#if defined(__cplusplus)
-extern "C" {
-#endif
-
-#include "mruby.h"
-#ifdef DISABLE_STDIO
-# error "Configuration conflict. Can't use with DISABLE_STDIO option."
-#else
-# include <stdio.h>
-#endif
-
-int mrb_cdump_irep(mrb_state *mrb, int n, FILE *f,const char *initname);
-
-/* error code */
-#define MRB_CDUMP_OK 0
-#define MRB_CDUMP_GENERAL_FAILURE -1
-#define MRB_CDUMP_WRITE_FAULT -2
-#define MRB_CDUMP_INVALID_IREP -6
-#define MRB_CDUMP_INVALID_ARGUMENT -7
-
-#if defined(__cplusplus)
-} /* extern "C" { */
-#endif
-
-#endif /* MRUBY_CDUMP_H */