https://github.com/JuliaLang/julia
Raw File
Tip revision: 5a9f88699c7388b7ba5a963c5c42d1c9ae9c7623 authored by Keno Fischer on 21 September 2023, 12:03:29 UTC
Add libgen header for non-glibc platforms
Tip revision: 5a9f886
ccalllazyfoo.c
// This file is a part of Julia. License is MIT: https://julialang.org/license

#include "ccalltest_common.h"

DLLEXPORT int foo(int a) {
    return a*2;
}
back to top