blob: 1aaafa9f40cdc4ce17be91353b84981f7389192a [file] [log] [blame]
#ifndef SYSTEMLIB_H
#define SYSTEMLIB_H
int systemlib()
{
return 0;
}
int unusedFunc()
{
int unused;
return systemlib();
}
#endif