1*48652Sbostic /*- 2*48652Sbostic * Copyright (c) 1985 The Regents of the University of California. 3*48652Sbostic * All rights reserved. 4*48652Sbostic * 5*48652Sbostic * %sccs.include.proprietary.c% 6*48652Sbostic */ 7*48652Sbostic 813671Ssam #ifndef lint 9*48652Sbostic static char sccsid[] = "@(#)sysacct.c 5.4 (Berkeley) 04/24/91"; 10*48652Sbostic #endif /* not lint */ 1113671Ssam 1213671Ssam #include <sys/types.h> 1313671Ssam 1423674Sbloom /*LINTLIBRARY*/ 1523674Sbloom 1617838Sralph /* 1717838Sralph * output accounting info 1813671Ssam */ 1913671Ssam 2023674Sbloom /*ARGSUSED*/ 2113671Ssam sysacct(bytes, time) 2213671Ssam time_t time; 2313671Ssam long bytes; 2413671Ssam { 2513671Ssam return; 2613671Ssam } 27