mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-29 02:11:16 +02:00
22 lines
552 B
Diff
22 lines
552 B
Diff
diff --git a/keepalived/vrrp/vrrp_if.c b/keepalived/vrrp/vrrp_if.c
|
|
index 7360369..12dda84 100644
|
|
--- a/keepalived/vrrp/vrrp_if.c
|
|
+++ b/keepalived/vrrp/vrrp_if.c
|
|
@@ -23,11 +23,11 @@
|
|
/* global include */
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
-#include <sys/types.h>
|
|
-typedef __uint64_t u64;
|
|
-typedef __uint32_t u32;
|
|
-typedef __uint16_t u16;
|
|
-typedef __uint8_t u8;
|
|
+#include <stdint.h>
|
|
+typedef uint64_t u64;
|
|
+typedef uint32_t u32;
|
|
+typedef uint16_t u16;
|
|
+typedef uint8_t u8;
|
|
#include <sys/socket.h>
|
|
#include <sys/ioctl.h>
|
|
#include <netinet/in.h>
|