[BUILD] fix build on FreeBSD (missing fd_set declaration)

Sorin Pop reported a patch to fix build on FreeBSD.
The file common/standard.h used an fd_set in a declaration
but did not include enough headers for it to be known.
This commit is contained in:
Willy Tarreau 2007-01-24 18:20:50 +01:00
parent e7a2438cae
commit ca28d1e1cb

View File

@ -24,6 +24,7 @@
#include <netinet/in.h>
#include <common/config.h>
#include <proto/fd.h>
/****** string-specific macros and functions ******/
/* if a > max, then bound <a> to <max>. The macro returns the new <a> */