https://github.com/JuliaLang/julia
Revision f7b8e6b8fc60a4d9c062f714fec10410eb07d3d7 authored by tecosaur on 28 October 2023, 17:24:54 UTC, committed by GitHub on 28 October 2023, 17:24:54 UTC
1 parent 98542d7
Raw File
Tip revision: f7b8e6b8fc60a4d9c062f714fec10410eb07d3d7 authored by tecosaur on 28 October 2023, 17:24:54 UTC
Move the banner function from versions.jl to REPL (#51867)
Tip revision: f7b8e6b
ccalllazybar.c
// This file is a part of Julia. License is MIT: https://julialang.org/license

#include "ccalltest_common.h"

// We expect this to come from `libccalllazyfoo`
extern int foo(int);

DLLEXPORT int bar(int a) {
    return foo(a + 1);
}
back to top