Deleted Added
full compact
print.c (103373) print.c (110949)
1/*
2 * print.c - debugging printout routines
3 *
4 * Copyright (c) Ian F. Darwin, 1987.
5 * Written by Ian F. Darwin.
6 *
7 * This software is not subject to any license of the American Telephone
8 * and Telegraph Company or of the Regents of the University of California.

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

22 * misrepresented as being the original software. Since few users
23 * ever read sources, credits must appear in the documentation.
24 *
25 * 4. This notice may not be removed or altered.
26 */
27
28#include "file.h"
29#include <string.h>
1/*
2 * print.c - debugging printout routines
3 *
4 * Copyright (c) Ian F. Darwin, 1987.
5 * Written by Ian F. Darwin.
6 *
7 * This software is not subject to any license of the American Telephone
8 * and Telegraph Company or of the Regents of the University of California.

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

22 * misrepresented as being the original software. Since few users
23 * ever read sources, credits must appear in the documentation.
24 *
25 * 4. This notice may not be removed or altered.
26 */
27
28#include "file.h"
29#include <string.h>
30#ifdef __STDC__
31# include <stdarg.h>
32#else
33# include <varargs.h>
34#endif
30#include <stdarg.h>
35#include <stdlib.h>
36#ifdef HAVE_UNISTD_H
37#include <unistd.h>
38#endif
39#include <time.h>
40
41#ifndef lint
31#include <stdlib.h>
32#ifdef HAVE_UNISTD_H
33#include <unistd.h>
34#endif
35#include <time.h>
36
37#ifndef lint
42FILE_RCSID("@(#)$Id: print.c,v 1.38 2002/07/03 18:37:44 christos Exp $")
38FILE_RCSID("@(#)$Id: print.c,v 1.39 2002/07/09 15:46:23 christos Exp $")
43#endif /* lint */
44
45#define SZOF(a) (sizeof(a) / sizeof(a[0]))
46
47#ifndef COMPILE_ONLY
48void
49mdump(struct magic *m)
50{

--- 180 unchanged lines hidden ---
39#endif /* lint */
40
41#define SZOF(a) (sizeof(a) / sizeof(a[0]))
42
43#ifndef COMPILE_ONLY
44void
45mdump(struct magic *m)
46{

--- 180 unchanged lines hidden ---