2020-04-10 14:11:40 +09:00
|
|
|
#ifndef RUBY_BACKWARD_ST_H /*-*-C++-*-vi:se ft=cpp:*/
|
|
|
|
#define RUBY_BACKWARD_ST_H
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @author Ruby developers <ruby-core@ruby-lang.org>
|
|
|
|
* @copyright This file is a part of the programming language Ruby.
|
|
|
|
* Permission is hereby granted, to either redistribute and/or
|
|
|
|
* modify this file, provided that the conditions mentioned in the
|
|
|
|
* file COPYING are met. Consult the file for details.
|
|
|
|
*/
|
2008-08-17 06:58:10 +00:00
|
|
|
#if defined __GNUC__
|
|
|
|
#warning use "ruby/st.h" instead of bare "st.h"
|
2015-10-18 02:10:34 +00:00
|
|
|
#elif defined _MSC_VER
|
2008-08-17 06:58:10 +00:00
|
|
|
#pragma message("warning: use \"ruby/st.h\" instead of bare \"st.h\"")
|
|
|
|
#endif
|
|
|
|
#include "ruby/st.h"
|
2020-04-10 14:11:40 +09:00
|
|
|
|
|
|
|
#endif /* RUBY_BACKWARD_ST_H */
|