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