[BUILD] fixed build of files including standard.h on OpenBSD

The file standard.h included netinet/in.h without including
sys/types.h. This broke build on OpenBSD.
This commit is contained in:
Willy Tarreau 2007-05-10 06:39:03 +02:00
parent 13398d3896
commit 938b303a04

View File

@ -23,6 +23,7 @@
#define _COMMON_STANDARD_H
#include <limits.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <common/config.h>
#include <proto/fd.h>