Hi,
I hope it isn't just a mistake on my side, but I think I encountered a small problem while trying to convert a wdl file to lite-c. It seems that the min and max functions are not available in lite-c (I am using A7 Extra edition, 7.10)
Running this wdl works:
var x;
function main()
{
x = max(8,5);
}
while this c throws: 'max' undeclared identifier...
#include <acknex.h>
#include <default.c>
var x;
function main()
{
x = max(5,8);
}
Best regards.
Stefan