xref: /original-bsd/bin/ls/extern.h (revision 630dccfa)
1 /*-
2  * Copyright (c) 1991 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)extern.h	5.1 (Berkeley) 10/28/91
8  */
9 
10 int	 acccmp __P((LS *, LS *));
11 void	*emalloc __P((u_int));
12 void	 err __P((const char *, ...));
13 int	 modcmp __P((LS *, LS *));
14 int	 namecmp __P((LS *, LS *));
15 void	 prcopy __P((char *, char *, int));
16 void	 printcol __P((LS *, int));
17 void	 printlong __P((LS *, int));
18 void	 printscol __P((LS *, int));
19 int	 revacccmp __P((LS *, LS *));
20 int	 revmodcmp __P((LS *, LS *));
21 int	 revnamecmp __P((LS *, LS *));
22 int	 revstatcmp __P((LS *, LS *));
23 int	 statcmp __P((LS *, LS *));
24 void	 usage __P((void));
25 void	 warn __P((const char *, ...));
26