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