#include "syscall.h" int main(){ int x = SemCreate(5); SemWait(2); SemSignal(2); SemDestroy(2); }