source: trunk/athena/bin/aklog/aklog.c @ 5323

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)
9static 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__
15main(int argc, char *argv[])
16#else
17main(argc, argv)
18  int argc;
19  char *argv[];
20#endif /* __STDC__ */
21{
22    aklog_params params;
23
24    aklog_init_params(&params);
25    aklog(argc, argv, &params);
26}
Note: See TracBrowser for help on using the repository browser.