Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1995 Charles Sandmann (sandmann@clio.rice.edu)
  2.    alarm() implmentation using setitimer
  3.    This software may be freely distributed, no warranty. */
  4.  
  5. #include <libc/stubs.h>
  6. #include <unistd.h>
  7. #include <sys/time.h>
  8.  
  9. unsigned int alarm(unsigned int seconds)
  10. {
  11.   return seconds;
  12. }
  13.