xref: /freebsd/usr.bin/at/at.h (revision d78e98d22e6c097de0f6001730622254aee8f6e2)
1d78e98d2SNate Williams /*
2d78e98d2SNate Williams  * at.h -  header for at(1)
3d78e98d2SNate Williams  * Copyright (c) 1993 by Thomas Koenig
4d78e98d2SNate Williams  * All rights reserved.
5d78e98d2SNate Williams  *
6d78e98d2SNate Williams  * Redistribution and use in source and binary forms, with or without
7d78e98d2SNate Williams  * modification, are permitted provided that the following conditions
8d78e98d2SNate Williams  * are met:
9d78e98d2SNate Williams  * 1. Redistributions of source code must retain the above copyright
10d78e98d2SNate Williams  *    notice, this list of conditions and the following disclaimer.
11d78e98d2SNate Williams  * 2. The name of the author(s) may not be used to endorse or promote
12d78e98d2SNate Williams  *    products derived from this software without specific prior written
13d78e98d2SNate Williams  *    permission.
14d78e98d2SNate Williams  *
15d78e98d2SNate Williams  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
16d78e98d2SNate Williams  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17d78e98d2SNate Williams  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18d78e98d2SNate Williams  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19d78e98d2SNate Williams  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20d78e98d2SNate Williams  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21d78e98d2SNate Williams  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22d78e98d2SNate Williams  * THEORY OF LIABILITY, WETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23d78e98d2SNate Williams  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24d78e98d2SNate Williams  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25d78e98d2SNate Williams  *
26d78e98d2SNate Williams  *	$Id: at.h,v 1.1 1993/12/05 11:36:45 cgd Exp $
27d78e98d2SNate Williams  */
28d78e98d2SNate Williams 
29d78e98d2SNate Williams extern int fcreated;
30d78e98d2SNate Williams extern char *namep;
31d78e98d2SNate Williams extern char atfile[];
32d78e98d2SNate Williams extern char atverify;
33d78e98d2SNate Williams 
34d78e98d2SNate Williams #define AT_MAXJOBS	255	/* max jobs outstanding per user */
35