blob: 33bb85fde5d49c19804a8f7678fddb3f67098e4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*--------------------------------------------------------------------------*/
/* INRIA 2006 */
/* Allan CORNET */
/*--------------------------------------------------------------------------*/
#include "gw_scicos.h"
#include "Scierror.h"
/*--------------------------------------------------------------------------*/
int gw_scicos(void)
{
Scierror(999, "Scicos interface not installed.\n");
return 0;
}
/*--------------------------------------------------------------------------*/
|