summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/ext/psych/psych.h
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/ext/psych/psych.h')
-rw-r--r--ruby_1_9_3/ext/psych/psych.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/ruby_1_9_3/ext/psych/psych.h b/ruby_1_9_3/ext/psych/psych.h
new file mode 100644
index 0000000000..9f1be449a2
--- /dev/null
+++ b/ruby_1_9_3/ext/psych/psych.h
@@ -0,0 +1,20 @@
+#ifndef PSYCH_H
+#define PSYCH_H
+
+#include <ruby.h>
+
+#ifdef HAVE_RUBY_ENCODING_H
+#include <ruby/encoding.h>
+#endif
+
+#include <yaml.h>
+
+#include <parser.h>
+#include <emitter.h>
+#include <to_ruby.h>
+#include <yaml_tree.h>
+
+extern VALUE mPsych;
+
+
+#endif