xref: /csrg-svn/usr.bin/uucp/libuu/sysacct.c (revision 62386)
148652Sbostic /*-
2*62386Sbostic  * Copyright (c) 1985, 1993
3*62386Sbostic  *	The Regents of the University of California.  All rights reserved.
448652Sbostic  *
548652Sbostic  * %sccs.include.proprietary.c%
648652Sbostic  */
748652Sbostic 
813671Ssam #ifndef lint
9*62386Sbostic static char sccsid[] = "@(#)sysacct.c	8.1 (Berkeley) 06/06/93";
1048652Sbostic #endif /* not lint */
1113671Ssam 
1213671Ssam #include <sys/types.h>
1313671Ssam 
1423674Sbloom /*LINTLIBRARY*/
1523674Sbloom 
1617838Sralph /*
1717838Sralph  *	output accounting info
1813671Ssam  */
1913671Ssam 
2023674Sbloom /*ARGSUSED*/
sysacct(bytes,time)2113671Ssam sysacct(bytes, time)
2213671Ssam time_t time;
2313671Ssam long bytes;
2413671Ssam {
2513671Ssam 	return;
2613671Ssam }
27