Revision 5a9f88699c7388b7ba5a963c5c42d1c9ae9c7623 authored by Keno Fischer on 21 September 2023, 12:03:29 UTC, committed by Keno Fischer on 21 September 2023, 12:03:29 UTC
1 parent 32c7367
Raw File
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