mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-21 14:17:30 -04:00
BUILD: Missing inclusion header for ssize_t type
Compilation issue detected as follows by gcc: In file included from src/ncbuf.c:19: src/ncbuf.c: In function 'ncb_write_off': include/haproxy/bug.h:144:10: error: unknown type name 'ssize_t' 144 | extern ssize_t write(int, const void *, size_t); \
This commit is contained in:
parent
2d27c80288
commit
bc9821fd26
1 changed files with 1 additions and 0 deletions
|
|
@ -29,6 +29,7 @@
|
|||
#define _HAPROXY_BUG_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <sys/types.h>
|
||||
#include <haproxy/atomic.h>
|
||||
#include <haproxy/compiler.h>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue