mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
CONTRIB: tcploop: add limits.h to fix build issue with some compilers
Just got this while cross-compiling : tcploop.c: In function 'tcp_recv': tcploop.c:444:48: error: 'INT_MAX' undeclared (first use in this function) tcploop.c:444:48: note: each undeclared identifier is reported only once for each function it appears in
This commit is contained in:
parent
f5f26e824a
commit
5cd60670a6
1 changed files with 1 additions and 0 deletions
|
|
@ -39,6 +39,7 @@
|
|||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <limits.h>
|
||||
#include <netdb.h>
|
||||
#include <poll.h>
|
||||
#include <signal.h>
|
||||
|
|
|
|||
Loading…
Reference in a new issue