Deleted Added
full compact
util.c (40300) util.c (49373)
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

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

34 * SUCH DAMAGE.
35 */
36
37#ifndef lint
38#if 0
39static char sccsid[] = "@(#)util.c 8.3 (Berkeley) 4/2/94";
40#else
41static const char rcsid[] =
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

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

34 * SUCH DAMAGE.
35 */
36
37#ifndef lint
38#if 0
39static char sccsid[] = "@(#)util.c 8.3 (Berkeley) 4/2/94";
40#else
41static const char rcsid[] =
42 "$Id: util.c,v 1.17 1998/04/25 00:12:32 ache Exp $";
42 "$Id: util.c,v 1.18 1998/10/13 12:19:31 des Exp $";
43#endif
44#endif /* not lint */
45
46#include <sys/types.h>
47#include <sys/stat.h>
48
49#include <ctype.h>
50#include <err.h>

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

153 }
154 }
155 return len;
156}
157
158void
159usage()
160{
43#endif
44#endif /* not lint */
45
46#include <sys/types.h>
47#include <sys/stat.h>
48
49#include <ctype.h>
50#include <err.h>

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

153 }
154 }
155 return len;
156}
157
158void
159usage()
160{
161 (void)fprintf(stderr, "usage: ls [-ACFHLPRTWacdfgikloqrstu1]"
161 (void)fprintf(stderr, "usage: ls [-ACFHLPRTWacdfgiklnoqrstu1]"
162 " [file ...]\n");
163 exit(1);
164}
162 " [file ...]\n");
163 exit(1);
164}