diff --git a/src/rtutils.c b/src/rtutils.c index 1973560cf5204..de4e8b478eabd 100644 --- a/src/rtutils.c +++ b/src/rtutils.c @@ -562,6 +562,7 @@ JL_DLLEXPORT void jl_flush_cstdio(void) JL_NOTSAFEPOINT fflush(stderr); } +// Please do not remove jl_stdout_obj (again breaking r-juliacall). Maybe after https://github.com/Non-Contradiction/JuliaCall/pull/237 JL_DLLEXPORT jl_value_t *jl_stdout_obj(void) JL_NOTSAFEPOINT { if (jl_base_module == NULL) @@ -570,7 +571,6 @@ JL_DLLEXPORT jl_value_t *jl_stdout_obj(void) JL_NOTSAFEPOINT return stdout_obj ? jl_atomic_load_relaxed(&stdout_obj->value) : NULL; } -// Please do not remove (again breaking r-juliacall). Maybe after https://github.com/Non-Contradiction/JuliaCall/pull/237 JL_DLLEXPORT jl_value_t *jl_stderr_obj(void) JL_NOTSAFEPOINT { if (jl_base_module == NULL)