Deleted Added
sdiff udiff text old ( 302408 ) new ( 303432 )
full compact
1/*-
2 * Copyright (c) 1986, 1988, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)subr_prf.c 8.3 (Berkeley) 1/21/94
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: stable/11/sys/kern/subr_prf.c 301750 2016-06-09 18:24:51Z cem $");
39
40#ifdef _KERNEL
41#include "opt_ddb.h"
42#include "opt_printf.h"
43#endif /* _KERNEL */
44
45#include <sys/param.h>
46#ifdef _KERNEL

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

1191 sbuf_printf(sb, ".");
1192 }
1193 sbuf_printf(sb, "|");
1194 }
1195 sbuf_printf(sb, "\n");
1196 }
1197}
1198