The branch main has been updated by cy: URL: https://cgit.FreeBSD.org/src/commit/?id=380ee9b3c0c54680ac26dbd80ea812671052fae2
commit 380ee9b3c0c54680ac26dbd80ea812671052fae2 Author: Cy Schubert <c...@freebsd.org> AuthorDate: 2024-05-23 21:02:06 +0000 Commit: Cy Schubert <c...@freebsd.org> CommitDate: 2024-05-23 21:03:55 +0000 sys/netinet/icmp6.h: Fix build Fix stdint.h file not found. Fixes: 4b75afe885d4 --- sys/netinet/icmp6.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/icmp6.h b/sys/netinet/icmp6.h index 0bccba3754b0..9de8daaa3390 100644 --- a/sys/netinet/icmp6.h +++ b/sys/netinet/icmp6.h @@ -63,7 +63,7 @@ #ifndef _NETINET_ICMP6_H_ #define _NETINET_ICMP6_H_ -#include <stdint.h> +#include <sys/stdint.h> #define ICMPV6_PLD_MAXLEN 1232 /* IPV6_MMTU - sizeof(struct ip6_hdr) - sizeof(struct icmp6_hdr) */