global.c revision 327
1#ifndef lint
2static const char *rcsid = "$Id$";
3#endif
4
5/*
6 * FreeBSD install - a package for the installation and maintainance
7 * of non-core utilities.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 *    notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 *    notice, this list of conditions and the following disclaimer in the
16 *    documentation and/or other materials provided with the distribution.
17 *
18 * Jordan K. Hubbard
19
20 * 18 July 1993
21 *
22 * Semi-convenient place to stick some needed globals.
23 *
24 */
25
26#include "lib.h"
27
28/* These two are global for all utils */
29Boolean	Verbose		= FALSE;
30Boolean	Fake		= FALSE;
31
32