1: #ifndef lint 2: static char sccsid[] = "@(#)sysacct.c 5.1 (Berkeley) 7/2/83"; 3: #endif 4: 5: #include <sys/types.h> 6: 7: /******* 8: * sysacct(bytes, time) output accounting info 9: * time_t time; 10: * long bytes; 11: */ 12: 13: sysacct(bytes, time) 14: time_t time; 15: long bytes; 16: { 17: return; 18: }