Deleted Added
full compact
global.c (136643) global.c (159554)
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

--- 6 unchanged lines hidden (view full) ---

15
16 * 18 July 1993
17 *
18 * Semi-convenient place to stick some needed globals.
19 *
20 */
21
22#include <sys/cdefs.h>
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

--- 6 unchanged lines hidden (view full) ---

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 136643 2004-10-18 05:34:54Z obrien $");
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;
24
25#include "lib.h"
26
27/* These are global for all utils */
28Boolean Quiet = FALSE;
29Boolean Verbose = FALSE;
30Boolean Fake = FALSE;
31Boolean Force = FALSE;
32int AutoAnswer = FALSE;
29Boolean Fake = FALSE;
30Boolean Force = FALSE;
31int AutoAnswer = FALSE;
32int Verbose = 0; /* Allow multiple levels of verbose. */