mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-23 10:53:04 -04:00
[BUILD] <stdint> is not present on OpenBSD. Prefer <sys/types.h>
This commit is contained in:
parent
fddaec02ee
commit
014b4fecb2
2 changed files with 3 additions and 2 deletions
|
|
@ -29,7 +29,7 @@
|
|||
#ifndef _COMMON_EPOLL_H
|
||||
#define _COMMON_EPOLL_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
#include <linux/unistd.h>
|
||||
|
||||
#include <common/config.h>
|
||||
|
|
|
|||
|
|
@ -25,7 +25,8 @@
|
|||
#include <common/config.h>
|
||||
#include <common/memory.h>
|
||||
|
||||
#include <stdint.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
/* The BF_* macros designate Buffer Flags, which may be ORed in the bit field
|
||||
* member 'flags' in struct buffer.
|
||||
|
|
|
|||
Loading…
Reference in a new issue