home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff256.lzh / Stevie / bsd.h < prev    next >
C/C++ Source or Header  |  1989-10-19  |  410b  |  27 lines

  1. /*
  2.  * BSD 4.3 Machine-dependent routines. 
  3.  */
  4.  
  5. void set_ostate();
  6. void set_nstate();
  7.  
  8. int  inchar();
  9.  
  10. #ifdef OLD_IO
  11. void flushbuf();
  12. void outchar();
  13. void outstr();
  14. #else
  15. # define flushbuf() fflush(stdout)
  16. # define outchar(C) putchar(C)
  17. # define outstr(S)  fputs((S), stdout)
  18. #endif
  19.  
  20. void beep();
  21. #define remove(path) unlink(path)
  22. int rename();
  23. void windinit();
  24. void windexit();
  25. void windgoto();
  26. void delay();
  27.