#include <stdlib.h>
#include "mathlink.h"
int main(int argc, char **argv)
{
MLENV env;
MLParameters p;
if(! MLNewParameters((char *)p, MLREVISION, MLAPIREVISION))
{ /* unable to initialize the parameters object */
MLSetAllocParameter((char *)p, malloc, free);
env = MLInitialize((char *)p);
if(env
(MLENV)0)
{ /* unable to initialize the MathLink environment */ }
/* ... */
MLDeinitialize(env);
return 0;
}