Deleted Added
full compact
ls.c (105836) ls.c (106053)
1/*
2 * Copyright (c) 1989, 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 * Michael Fischbein.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

41#endif /* not lint */
42
43#if 0
44#ifndef lint
45static char sccsid[] = "@(#)ls.c 8.5 (Berkeley) 4/2/94";
46#endif /* not lint */
47#endif
48#include <sys/cdefs.h>
1/*
2 * Copyright (c) 1989, 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 * Michael Fischbein.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

41#endif /* not lint */
42
43#if 0
44#ifndef lint
45static char sccsid[] = "@(#)ls.c 8.5 (Berkeley) 4/2/94";
46#endif /* not lint */
47#endif
48#include <sys/cdefs.h>
49__FBSDID("$FreeBSD: head/bin/ls/ls.c 105836 2002-10-24 01:01:53Z rwatson $");
49__FBSDID("$FreeBSD: head/bin/ls/ls.c 106053 2002-10-27 17:44:33Z wollman $");
50
51#include <sys/types.h>
52#include <sys/stat.h>
50
51#include <sys/types.h>
52#include <sys/stat.h>
53#include <sys/syslimits.h>
54#include <sys/ioctl.h>
55#include <sys/mac.h>
56
57#include <dirent.h>
58#include <err.h>
59#include <errno.h>
60#include <fts.h>
61#include <grp.h>

--- 787 unchanged lines hidden ---
53#include <sys/ioctl.h>
54#include <sys/mac.h>
55
56#include <dirent.h>
57#include <err.h>
58#include <errno.h>
59#include <fts.h>
60#include <grp.h>

--- 787 unchanged lines hidden ---