1*48292Sbostic /*-
2*48292Sbostic  * %sccs.include.proprietary.c%
3*48292Sbostic  *
4*48292Sbostic  *	@(#)what..c	4.3 (Berkeley) 04/18/91
5*48292Sbostic  */
614506Ssam 
712306Stut #include <stdio.h>
812306Stut #include <ctype.h>
912306Stut #include <sys/types.h>
1012306Stut #include <sys/stat.h>
1112306Stut #include <assert.h>
1212306Stut #define NFILES 100
1312306Stut #define NAMES 2000
1412306Stut #define NFEED 5
1512306Stut extern exch(), comp();
1612306Stut struct filans {
1712306Stut 	char *nm;
1812306Stut 	long fdate;
1912306Stut 	long size;
2012306Stut 	int uid;
2112306Stut 	};
2212306Stut extern struct filans files[NFILES];
2312306Stut extern char fnames[NAMES];
24