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