add more #ifdef before #include-ing

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@805 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1996-09-29 23:40:23 +00:00
parent c09b123995
commit f27321a1d6
8 changed files with 102 additions and 0 deletions

View File

@@ -38,13 +38,19 @@
#ifndef _EXTERN_H_
#define _EXTERN_H_
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
#include <stdio.h>
#include <stdarg.h>
#include <setjmp.h>
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
void blkfree(char **);
char **copyblk(char **);