/*LINTLIBRARY*/

#include "fslib.h"

/*	from file next.c */
/**
 ** next_dir() - GO TO NEXT DIRECTORY ENTRY UNDER PARENT DIRECTORY
 ** next_file() - GO TO NEXT FILE ENTRY UNDER PARENT DIRECTORY
 **/
char			*next_dir (parent, lastdirp)
	char			*parent;
	long			*lastdirp;
{	static char			* _returned_value;
	return _returned_value;
}
char			*next_file (parent, lastdirp)
	char			*parent;
	long			*lastdirp;
{	static char			* _returned_value;
	return _returned_value;
}
