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