_alarm.c 186 B

123456789
  1. #include <lib.h>
  2. #define alarm _alarm
  3. #include <unistd.h>
  4. PUBLIC unsigned int alarm(sec)
  5. unsigned int sec;
  6. {
  7. return(_callm1(MM, ALARM, (int) sec, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR));
  8. }