Deleted Added
full compact
cron.h (17436) cron.h (20573)
1/* Copyright 1988,1990,1993,1994 by Paul Vixie
2 * All rights reserved
3 *
4 * Distribute freely, except: don't remove my name from the source or
5 * documentation (don't take credit for my work), mark your changes (don't
6 * get me blamed for your possible bugs), don't alter or remove this
7 * notice. May be sold if buildable source is provided to buyer. No
8 * warrantee of any kind, express or implied, is included with this
9 * software; use at your own risk, responsibility for damages (if any) to
10 * anyone resulting from the use of this software rests entirely with the
11 * user.
12 *
13 * Send bug reports, bug fixes, enhancements, requests, flames, etc., and
14 * I'll try to keep a version up to date. I can be reached as follows:
15 * Paul Vixie <paul@vix.com> uunet!decwrl!vixie!paul
16 */
17
18/* cron.h - header for vixie's cron
19 *
1/* Copyright 1988,1990,1993,1994 by Paul Vixie
2 * All rights reserved
3 *
4 * Distribute freely, except: don't remove my name from the source or
5 * documentation (don't take credit for my work), mark your changes (don't
6 * get me blamed for your possible bugs), don't alter or remove this
7 * notice. May be sold if buildable source is provided to buyer. No
8 * warrantee of any kind, express or implied, is included with this
9 * software; use at your own risk, responsibility for damages (if any) to
10 * anyone resulting from the use of this software rests entirely with the
11 * user.
12 *
13 * Send bug reports, bug fixes, enhancements, requests, flames, etc., and
14 * I'll try to keep a version up to date. I can be reached as follows:
15 * Paul Vixie <paul@vix.com> uunet!decwrl!vixie!paul
16 */
17
18/* cron.h - header for vixie's cron
19 *
20 * $Id: cron.h,v 1.2 1995/05/30 03:46:59 rgrimes Exp $
20 * $Id: cron.h,v 1.3 1996/08/05 00:31:24 pst Exp $
21 *
22 * vix 14nov88 [rest of log is in RCS]
23 * vix 14jan87 [0 or 7 can be sunday; thanks, mwm@berkeley]
24 * vix 30dec86 [written]
25 */
26
27/* reorder these #include's at your peril */
28
29#include <sys/types.h>
30#include <sys/param.h>
31#include "compat.h"
32
33#include <stdio.h>
21 *
22 * vix 14nov88 [rest of log is in RCS]
23 * vix 14jan87 [0 or 7 can be sunday; thanks, mwm@berkeley]
24 * vix 30dec86 [written]
25 */
26
27/* reorder these #include's at your peril */
28
29#include <sys/types.h>
30#include <sys/param.h>
31#include "compat.h"
32
33#include <stdio.h>
34#include <errno.h>
34#include <ctype.h>
35#include <bitstring.h>
36#include <pwd.h>
37#include <sys/wait.h>
38#include <time.h>
39#include <signal.h>
40
41#include "pathnames.h"

--- 238 unchanged lines hidden ---
35#include <ctype.h>
36#include <bitstring.h>
37#include <pwd.h>
38#include <sys/wait.h>
39#include <time.h>
40#include <signal.h>
41
42#include "pathnames.h"

--- 238 unchanged lines hidden ---