From 0b8635d1924de82443d153c615a5869f703341f0 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Thu, 4 Sep 2025 12:52:56 +0100 Subject: [PATCH] stdint.h fix for macOS --- stdint.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stdint.h b/stdint.h index 07b51cc..75072de 100644 --- a/stdint.h +++ b/stdint.h @@ -3,9 +3,11 @@ *****************************************************************************/ #ifndef _STDINT_H_INCLUDED #ifndef _STDINT_H +#ifndef _STDINT_H_ #define _STDINT_H_INCLUDED #define _STDINT_H +#define _STDINT_H_ #include @@ -17,6 +19,7 @@ typedef signed long long int64_t; typedef unsigned long long uint64_t; #endif +endif /* _STDINT_H_ */ #endif /* _STDINT_H */ #endif /* _STDINT_H_INCLUDED */ -- 2.34.1