home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume4 / s5nap / nap.c < prev    next >
Encoding:
Text File  |  1989-02-03  |  115 b   |  12 lines

  1.  
  2. nap(ticks)
  3. unsigned ticks;
  4. {
  5. static int fd=0;
  6.  
  7. if (fd == 0) fd = open("/dev/ft",0);
  8. read(fd,(char *)0,ticks);
  9.  
  10. }
  11.  
  12.