#ifndef SYSTEMLIB_H
#define SYSTEMLIB_H

int systemlib()
{
  return 0;
}

int unusedFunc()
{
  int unused;
  return systemlib();
}

#endif
