/* tftpyale.h:
 * Alan S. Watt, Yale University
 * 10-Aug-92
 */

#include <sys/param.h>

	/* globals */

extern int	configLineNumber;
extern char*	tftpDefaultDirectory;
extern int	tftpDebugLevel;
extern char*	tftpRootDirectory;
extern char	configFile[];

	/* defaults */
extern char*	dfltConfigFile;
extern char*	dfltDefaultDirectory;
extern char*	dfltRootDirectory;
extern int	dfltDebugLevel;

#if (defined(BSD) && (BSD >= 199306))
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#else				/* not sane unix */

#  ifdef __STDC__
	extern char*		strchr(const char*, int);
	extern void*		malloc(unsigned);
#  else
	extern char*		malloc();
	extern char*		index();
#       define strchr(S,C)	index((S),(C))
#  endif
   extern int	errno;
#endif


syntax highlighted by Code2HTML, v. 0.9.1