diff options
| author | isuckatcs <65320245+isuckatcs@users.noreply.github.com> | 2025-11-13 23:29:50 +0100 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu.nakada@gmail.com> | 2025-11-14 09:37:49 +0900 |
| commit | 6e5bbbc598684b80bfa3fc6dff0a83a949e7d078 (patch) | |
| tree | 6f9f5577f8508cd4c043e7aa1cd027fd845d9445 /internal | |
| parent | d9bb60271cf94d099214f02a0226dd7d29873412 (diff) | |
Remove `include` prefix from include paths
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/set_table.h | 2 | ||||
| -rw-r--r-- | internal/st.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/set_table.h b/internal/set_table.h index 6242e979c6..3c29abb4f5 100644 --- a/internal/set_table.h +++ b/internal/set_table.h @@ -1,7 +1,7 @@ #ifndef INTERNAL_SET_TABLE_H #define INTERNAL_SET_TABLE_H -#include "include/ruby/st.h" +#include "ruby/st.h" struct set_table_entry; diff --git a/internal/st.h b/internal/st.h index a26b224505..c220edd9f0 100644 --- a/internal/st.h +++ b/internal/st.h @@ -1,7 +1,7 @@ #ifndef INTERNAL_ST_H #define INTERNAL_ST_H -#include "include/ruby/st.h" +#include "ruby/st.h" st_table *rb_st_replace(st_table *new_tab, st_table *old_tab); #define st_replace rb_st_replace |
