37 lines
899 B
Plaintext
37 lines
899 B
Plaintext
*** common/config_unix.h.orig Thu Sep 2 14:49:43 1999
|
|
--- common/config_unix.h Thu Sep 2 14:50:44 1999
|
|
***************
|
|
*** 50,56 ****
|
|
#include <signal.h>
|
|
#include <ctype.h>
|
|
|
|
! #ifndef __FreeBSD__
|
|
#include <malloc.h>
|
|
#endif
|
|
#include <stdio.h>
|
|
--- 50,56 ----
|
|
#include <signal.h>
|
|
#include <ctype.h>
|
|
|
|
! #if !defined(__FreeBSD__) && !defined(__OpenBSD__)
|
|
#include <malloc.h>
|
|
#endif
|
|
#include <stdio.h>
|
|
***************
|
|
*** 73,79 ****
|
|
#include <netdb.h>
|
|
#include <arpa/inet.h>
|
|
extern int h_errno;
|
|
! #if !defined(HPUX) && !defined(Linux) && !defined(__FreeBSD__)
|
|
#include <stropts.h>
|
|
#include <sys/filio.h>
|
|
#endif /* HPUX */
|
|
--- 73,79 ----
|
|
#include <netdb.h>
|
|
#include <arpa/inet.h>
|
|
extern int h_errno;
|
|
! #if !defined(HPUX) && !defined(Linux) && !defined(__FreeBSD__) && !defined(__OpenBSD__)
|
|
#include <stropts.h>
|
|
#include <sys/filio.h>
|
|
#endif /* HPUX */
|