Fixed problem with header include order on Irix.

Henning Meier-Geinitz <henning@meier-geinitz.de>
DEVEL_2_0_BRANCH-1
Henning Geinitz 2002-01-27 15:11:44 +00:00
rodzic 0f2b241654
commit d439aa7678
1 zmienionych plików z 9 dodań i 2 usunięć

Wyświetl plik

@ -3,8 +3,15 @@
#ifndef HAVE_INET_NTOP
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#ifdef HAVE_OS2_H
# include <sys/socket.h>
# include <sys/types.h>
#else
# include <sys/types.h>
# include <sys/socket.h>
#endif
#include <netinet/in.h>
#include <arpa/inet.h>