From 065a055037dde6534b0899a371cd5c8b45d8407c Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 18 Jan 2008 08:56:11 +0000 Subject: * eval_intern.h, insnhelper.h, thread_pthread.h, vm_core.h, vm_opts.h: prefixed include guards with RUBY. * id.h: added include guard. * regenc.h, regint.h, regparse.h: prefixed include guards with ONIGURUMA. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15112 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_opts.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'vm_opts.h') diff --git a/vm_opts.h b/vm_opts.h index 5f607e7aa..5ccf1f105 100644 --- a/vm_opts.h +++ b/vm_opts.h @@ -10,8 +10,8 @@ **********************************************************************/ -#ifndef VM_OPTS_H_INCLUDED -#define VM_OPTS_H_INCLUDED +#ifndef RUBY_VM_OPTS_H +#define RUBY_VM_OPTS_H /* Compile options. * You can change these options at runtime by VM::CompileOption. @@ -47,5 +47,4 @@ /* misc */ #define SUPPORT_JOKE 0 -#endif /* VM_OPTS_H_INCLUDED */ - +#endif /* RUBY_VM_OPTS_H */ -- cgit