creating a fake lib to re-activate the lib test closes #231 Signed-off-by: Fiorentino Ing. Stefano <stefano.fiore84@gmail.com>
10 lines
131 B
C++
10 lines
131 B
C++
#include <stdio.h>
|
|
|
|
extern "C" int fake_func(double *);
|
|
|
|
int fake_func(double *d) {
|
|
if (d)
|
|
*d = -*d;
|
|
return -42;
|
|
}
|