home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / cmd / uucp / sysacct.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  176 b   |  16 lines

  1. #include <sys/types.h>
  2.  
  3.  
  4. /*******
  5.  *    sysacct(bytes, time)    output accounting info
  6.  *    time_t time;
  7.  *    long bytes;
  8.  */
  9.  
  10. sysacct(bytes, time)
  11. time_t time;
  12. long bytes;
  13. {
  14.     return;
  15. }
  16.