17 lines
140 B
C
17 lines
140 B
C
|
|
#ifndef SYSTEMLIB_H
|
|
#define SYSTEMLIB_H
|
|
|
|
int systemlib()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int unusedFunc()
|
|
{
|
|
int unused;
|
|
return systemlib();
|
|
}
|
|
|
|
#endif
|