diff options
author | 卜部昌平 <shyouhei@ruby-lang.org> | 2020-04-08 13:28:13 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-08 13:28:13 +0900 |
commit | 9e6e39c3512f7a962c44dc3729c98a0f8be90341 (patch) | |
tree | 901a22676d54d78240e450b64a8cd06eb1703910 /internal/imemo.h | |
parent | 5ac4bf2cd87e1eb5779ca5ae7f96a1a22e8436d9 (diff) | |
download | ruby-9e6e39c3512f7a962c44dc3729c98a0f8be90341.tar.gz |
Merge pull request #2991 from shyouhei/ruby.h
Split ruby.h
Diffstat (limited to 'internal/imemo.h')
-rw-r--r-- | internal/imemo.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/internal/imemo.h b/internal/imemo.h index f09a195e7b..3475606e90 100644 --- a/internal/imemo.h +++ b/internal/imemo.h @@ -1,19 +1,19 @@ -#ifndef INTERNAL_IMEMO_H /* -*- C -*- */ -#define INTERNAL_IMEMO_H -/** +/** \noop-*-C-*-vi:ft=c * @file - * @brief IMEMO: Internal memo object. - * @author \@shyouhei + * @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. + * @brief IMEMO: Internal memo object. */ -#include "ruby/config.h" +#ifndef INTERNAL_IMEMO_H +#define INTERNAL_IMEMO_H +#include "ruby/3/config.h" #include <stddef.h> /* for size_t */ #include "internal/array.h" /* for rb_ary_tmp_new_fill */ #include "internal/gc.h" /* for RB_OBJ_WRITE */ -#include "internal/stdbool.h" /* for bool */ +#include "ruby/3/stdbool.h" /* for bool */ #include "ruby/ruby.h" /* for rb_block_call_func_t */ #ifndef IMEMO_DEBUG |