1327Sjkh/*
2228990Suqs * FreeBSD install - a package for the installation and maintenance
3327Sjkh * of non-core utilities.
4327Sjkh *
5327Sjkh * Redistribution and use in source and binary forms, with or without
6327Sjkh * modification, are permitted provided that the following conditions
7327Sjkh * are met:
8327Sjkh * 1. Redistributions of source code must retain the above copyright
9327Sjkh *    notice, this list of conditions and the following disclaimer.
10327Sjkh * 2. Redistributions in binary form must reproduce the above copyright
11327Sjkh *    notice, this list of conditions and the following disclaimer in the
12327Sjkh *    documentation and/or other materials provided with the distribution.
13327Sjkh *
14327Sjkh * Jordan K. Hubbard
15327Sjkh
16327Sjkh * 18 July 1993
17327Sjkh *
18327Sjkh * Semi-convenient place to stick some needed globals.
19327Sjkh *
20327Sjkh */
21327Sjkh
2293520Sobrien#include <sys/cdefs.h>
2393520Sobrien__FBSDID("$FreeBSD$");
2493520Sobrien
25327Sjkh#include "lib.h"
26327Sjkh
271338Sjkh/* These are global for all utils */
28136643SobrienBoolean	Quiet		= FALSE;
29327SjkhBoolean	Fake		= FALSE;
3017338SjkhBoolean	Force		= FALSE;
311338Sjkhint AutoAnswer		= FALSE;
32159554Sobrienint	Verbose			= 0;		/* Allow multiple levels of verbose. */
33