From db2c65cac90513f310803b9e8a7005123cf25dfb Mon Sep 17 00:00:00 2001 From: Mattia Montanari Date: Sun, 2 Apr 2023 09:55:13 +0200 Subject: [PATCH] Export csFunction when defined --- openGJK.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openGJK.c b/openGJK.c index c7bc73e..73cb2a8 100644 --- a/openGJK.c +++ b/openGJK.c @@ -867,7 +867,7 @@ mexFunction(int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]) { /** * @brief Invoke this function from C# applications */ -gkFloat +extern gkFloat csFunction(int nCoordsA, gkFloat* inCoordsA, int nCoordsB, gkFloat* inCoordsB) { gkFloat distance = 0; int i, j;