00001 #ifndef __NEURO_H 00002 #define __NEURO_H 00003 00004 #define OK 0 00005 00006 #define rassert(x) if (!(x)) { void exit(int); fprintf(stderr, "FAIL: %s:%d:%s\n", __FILE__, __LINE__, #x); exit(1); } 00007 00008 #include <neuro/stringtable.h> 00009 #include <neuro/cmdhandler.h> 00010 #include <neuro/ns2net.h> 00011 00012 #endif