blob: f8f5022223bcbef190dd6366045d2878f3b9c2a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef prefix_h
#define prefix_h
#include "CommonPrefix.h"
// Hack to automatically call SIOUX's CLI interface for the test apps
#include <console.h>
#include <SIOUX.h>
int fmain ();
int main (int argc, char **argv) { argc = ccommand(&argv); return fmain(); }
#define main() fmain()
#endif // prefix_h
|