Deleted Added
full compact
extern.h (31492) extern.h (39084)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 21 unchanged lines hidden (view full) ---

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)extern.h 8.1 (Berkeley) 6/6/93
35 */
36
37
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 21 unchanged lines hidden (view full) ---

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)extern.h 8.1 (Berkeley) 6/6/93
35 */
36
37
38#include <sys/types.h>
38#include <sys/cdefs.h>
39
40
41__BEGIN_DECLS
42void clean __P((struct printer *));
43void disable __P((struct printer *));
44void doabort __P((struct printer *));
45void down __P((int, char **));

--- 6 unchanged lines hidden (view full) ---

52void status __P((struct printer *));
53void stop __P((struct printer *));
54void topq __P((int, char **));
55void up __P((struct printer *));
56__END_DECLS
57
58extern int NCMDS;
59extern struct cmd cmdtab[];
39#include <sys/cdefs.h>
40
41
42__BEGIN_DECLS
43void clean __P((struct printer *));
44void disable __P((struct printer *));
45void doabort __P((struct printer *));
46void down __P((int, char **));

--- 6 unchanged lines hidden (view full) ---

53void status __P((struct printer *));
54void stop __P((struct printer *));
55void topq __P((int, char **));
56void up __P((struct printer *));
57__END_DECLS
58
59extern int NCMDS;
60extern struct cmd cmdtab[];
61extern uid_t uid, euid;