Revision 5323,
578 bytes
checked in by probe, 33 years ago
(diff) |
Added copyright notice
|
Line | |
---|
1 | /* |
---|
2 | * $Id: aklog.c,v 1.3 1991-07-16 06:25:13 probe Exp $ |
---|
3 | * |
---|
4 | * Copyright 1990,1991 by the Massachusetts Institute of Technology |
---|
5 | * For distribution and copying rights, see the file "mit-copyright.h" |
---|
6 | */ |
---|
7 | |
---|
8 | #if !defined(lint) && !defined(SABER) |
---|
9 | static char *rcsid = "$Id: aklog.c,v 1.3 1991-07-16 06:25:13 probe Exp $"; |
---|
10 | #endif /* lint || SABER */ |
---|
11 | |
---|
12 | #include "aklog.h" |
---|
13 | |
---|
14 | #ifdef __STDC__ |
---|
15 | main(int argc, char *argv[]) |
---|
16 | #else |
---|
17 | main(argc, argv) |
---|
18 | int argc; |
---|
19 | char *argv[]; |
---|
20 | #endif /* __STDC__ */ |
---|
21 | { |
---|
22 | aklog_params params; |
---|
23 | |
---|
24 | aklog_init_params(¶ms); |
---|
25 | aklog(argc, argv, ¶ms); |
---|
26 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.