xref: /original-bsd/usr.sbin/accton/accton.c (revision e9b82df0)
1 /*
2  * Copyright (c) 1988 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 char copyright[] =
10 "@(#) Copyright (c) 1988 Regents of the University of California.\n\
11  All rights reserved.\n";
12 #endif /* not lint */
13 
14 #ifndef lint
15 static char sccsid[] = "@(#)accton.c	4.3 (Berkeley) 06/01/90";
16 #endif /* not lint */
17 
18 #include <stdio.h>
19 
20 main(argc, argv)
21 	int argc;
22 	char **argv;
23 {
24 	if (argc > 2) {
25 		fputs("usage: accton [file]\n", stderr);
26 		exit(1);
27 	}
28 	if (acct(argc == 2 ? argv[1] : (char *)NULL)) {
29 		perror("accton");
30 		exit(1);
31 	}
32 	exit(0);
33 }
34