Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
1882 clevermous 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 
6
#include 
7
#include 
8
 
9
unsigned int alarm(unsigned int seconds)
10
{
11
  return seconds;
12
}