git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@678 ec53bebd-3082-4978-b11e-865c3cabbd6b
67 lines
1.1 KiB
C
67 lines
1.1 KiB
C
/* $Id$ */
|
|
|
|
#ifndef __FTP_LOCL_H__
|
|
#define __FTP_LOCL_H__
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include "roken.h"
|
|
|
|
#include <sys/bitypes.h>
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <pwd.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/time.h>
|
|
#ifdef HAVE_SYS_RESOURCE_H
|
|
#include <sys/resource.h>
|
|
#endif
|
|
#include <sys/wait.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
#include <netinet/in_systm.h>
|
|
#include <netinet/ip.h>
|
|
|
|
#include <arpa/ftp.h>
|
|
#include <arpa/inet.h>
|
|
#include <arpa/telnet.h>
|
|
|
|
#include <errno.h>
|
|
#include <ctype.h>
|
|
#include <glob.h>
|
|
#include <netdb.h>
|
|
|
|
#ifdef HAVE_SYS_MMAN_H
|
|
#include <sys/mman.h>
|
|
#endif
|
|
|
|
#include "ftp_var.h"
|
|
#include "extern.h"
|
|
#include "common.h"
|
|
#include "pathnames.h"
|
|
|
|
#include "krb4.h"
|
|
|
|
extern char *optarg;
|
|
extern int optind, opterr;
|
|
|
|
#if defined(__sun__) && !defined(__svr4)
|
|
int fclose(FILE*);
|
|
int pclose(FILE*);
|
|
#endif
|
|
|
|
#endif /* __FTP_LOCL_H__ */
|