global.c revision 222035
1/*
2 * FreeBSD install - a package for the installation and maintainance
3 * of non-core utilities.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * Jordan K. Hubbard
15
16 * 18 July 1993
17 *
18 * Semi-convenient place to stick some needed globals.
19 *
20 */
21
22#include <sys/cdefs.h>
23__FBSDID("$FreeBSD: head/usr.sbin/pkg_install/lib/global.c 159554 2006-06-12 22:39:32Z obrien $");
24
25#include "lib.h"
26
27/* These are global for all utils */
28Boolean	Quiet		= FALSE;
29Boolean	Fake		= FALSE;
30Boolean	Force		= FALSE;
31int AutoAnswer		= FALSE;
32int	Verbose			= 0;		/* Allow multiple levels of verbose. */
33