diff options
| author | Earlopain <14981592+Earlopain@users.noreply.github.com> | 2025-11-07 13:55:17 +0100 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu.nakada@gmail.com> | 2025-11-07 23:35:51 +0900 |
| commit | a2201570bd12e096b0cecf9d82f4d45eb19c8676 (patch) | |
| tree | a558a62a73419d861baaf8289e23151dc7341c54 | |
| parent | 41865bb6712a14ad1fc2e729316b4e2d8452babc (diff) | |
Remove `rb_path_check` declaration
Implementation was removed in https://github.com/ruby/ruby/commit/a4c051b870ac7f7b3c5482baf05600e1f6751b47
| -rw-r--r-- | include/ruby/internal/intern/file.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/ruby/internal/intern/file.h b/include/ruby/internal/intern/file.h index b669758d21..8508b7ab9e 100644 --- a/include/ruby/internal/intern/file.h +++ b/include/ruby/internal/intern/file.h @@ -211,22 +211,6 @@ int rb_is_absolute_path(const char *path); */ rb_off_t rb_file_size(VALUE file); -#ifdef RBIMPL_ATTR_DEPRECATED_INTERNAL_ONLY -RBIMPL_ATTR_DEPRECATED_INTERNAL_ONLY() -#endif -/** - * If the PATH_SEPARATOR-separated list of directory names contains the name of - * a world-writable directory, issue a warning for it. This may do nothing on - * some platforms. - * - * @param[in] path A local path. - * @retval 0 The "check" succeeded. - * @retval otherwise The "check" failed. - * @note This feature may be disabled by setting `ENABLE_PATH_CHECK` - * macro to zero at compilation time. - */ -int rb_path_check(const char *path); - RBIMPL_SYMBOL_EXPORT_END() #endif /* RBIMPL_INTERN_FILE_H */ |
