Deleted Added
full compact
args.c (133762) args.c (250469)
1/*-
2 * Copyright (c) 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Keith Muller of the University of California, San Diego and Lance
7 * Visser of Convex Computer Corporation.
8 *

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

32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)args.c 8.3 (Berkeley) 4/2/94";
37#endif
38#endif /* not lint */
39#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Keith Muller of the University of California, San Diego and Lance
7 * Visser of Convex Computer Corporation.
8 *

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

32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)args.c 8.3 (Berkeley) 4/2/94";
37#endif
38#endif /* not lint */
39#include <sys/cdefs.h>
40__FBSDID("$FreeBSD: head/bin/dd/args.c 133762 2004-08-15 19:10:05Z rwatson $");
40__FBSDID("$FreeBSD: head/bin/dd/args.c 250469 2013-05-10 18:43:36Z eadler $");
41
42#include <sys/types.h>
43
44#include <err.h>
45#include <errno.h>
46#include <inttypes.h>
47#include <limits.h>
41
42#include <sys/types.h>
43
44#include <err.h>
45#include <errno.h>
46#include <inttypes.h>
47#include <limits.h>
48#include <signal.h>
48#include <stdlib.h>
49#include <string.h>
50
51#include "dd.h"
52#include "extern.h"
53
54static int c_arg(const void *, const void *);
55static int c_conv(const void *, const void *);

--- 443 unchanged lines hidden ---
49#include <stdlib.h>
50#include <string.h>
51
52#include "dd.h"
53#include "extern.h"
54
55static int c_arg(const void *, const void *);
56static int c_conv(const void *, const void *);

--- 443 unchanged lines hidden ---