mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
48e251df47
It fixed segmentation fault related with GC. https://github.com/ruby/psych/pull/296 and removed deprecated code of Ruby 1.8. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56944 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
17 lines
238 B
C
17 lines
238 B
C
#ifndef PSYCH_H
|
|
#define PSYCH_H
|
|
|
|
#include <ruby.h>
|
|
#include <ruby/encoding.h>
|
|
|
|
#include <yaml.h>
|
|
|
|
#include <psych_parser.h>
|
|
#include <psych_emitter.h>
|
|
#include <psych_to_ruby.h>
|
|
#include <psych_yaml_tree.h>
|
|
|
|
extern VALUE mPsych;
|
|
|
|
|
|
#endif
|