Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/jlapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@ JL_DLLEXPORT void jl_init_with_image_file(const char *julia_bindir,
jl_exception_clear();
}

// Deprecated function, kept for backward compatibility
JL_DLLEXPORT void jl_init_with_image(const char *julia_bindir,
const char *image_path)
{
jl_init_with_image_file(julia_bindir, image_path);
}

/**
* @brief Initialize the Julia runtime.
*
Expand Down