1*a824f5a1SJean-Baptiste Boric /* $NetBSD: global.c,v 1.1.1.2 2009/02/02 20:44:06 joerg Exp $ */ 2*a824f5a1SJean-Baptiste Boric 3*a824f5a1SJean-Baptiste Boric #if HAVE_CONFIG_H 4*a824f5a1SJean-Baptiste Boric #include "config.h" 5*a824f5a1SJean-Baptiste Boric #endif 6*a824f5a1SJean-Baptiste Boric #include <nbcompat.h> 7*a824f5a1SJean-Baptiste Boric #if HAVE_SYS_CDEFS_H 8*a824f5a1SJean-Baptiste Boric #include <sys/cdefs.h> 9*a824f5a1SJean-Baptiste Boric #endif 10*a824f5a1SJean-Baptiste Boric __RCSID("$NetBSD: global.c,v 1.1.1.2 2009/02/02 20:44:06 joerg Exp $"); 11*a824f5a1SJean-Baptiste Boric 12*a824f5a1SJean-Baptiste Boric /* 13*a824f5a1SJean-Baptiste Boric * FreeBSD install - a package for the installation and maintainance 14*a824f5a1SJean-Baptiste Boric * of non-core utilities. 15*a824f5a1SJean-Baptiste Boric * 16*a824f5a1SJean-Baptiste Boric * Redistribution and use in source and binary forms, with or without 17*a824f5a1SJean-Baptiste Boric * modification, are permitted provided that the following conditions 18*a824f5a1SJean-Baptiste Boric * are met: 19*a824f5a1SJean-Baptiste Boric * 1. Redistributions of source code must retain the above copyright 20*a824f5a1SJean-Baptiste Boric * notice, this list of conditions and the following disclaimer. 21*a824f5a1SJean-Baptiste Boric * 2. Redistributions in binary form must reproduce the above copyright 22*a824f5a1SJean-Baptiste Boric * notice, this list of conditions and the following disclaimer in the 23*a824f5a1SJean-Baptiste Boric * documentation and/or other materials provided with the distribution. 24*a824f5a1SJean-Baptiste Boric * 25*a824f5a1SJean-Baptiste Boric * Jordan K. Hubbard 26*a824f5a1SJean-Baptiste Boric 27*a824f5a1SJean-Baptiste Boric * 18 July 1993 28*a824f5a1SJean-Baptiste Boric * 29*a824f5a1SJean-Baptiste Boric * Semi-convenient place to stick some needed globals. 30*a824f5a1SJean-Baptiste Boric * 31*a824f5a1SJean-Baptiste Boric */ 32*a824f5a1SJean-Baptiste Boric 33*a824f5a1SJean-Baptiste Boric #include "lib.h" 34*a824f5a1SJean-Baptiste Boric 35*a824f5a1SJean-Baptiste Boric /* These are global for all utils */ 36*a824f5a1SJean-Baptiste Boric Boolean Verbose = FALSE; 37*a824f5a1SJean-Baptiste Boric Boolean Fake = FALSE; 38*a824f5a1SJean-Baptiste Boric Boolean Force = FALSE; 39