On Friday, December 4, 2020 5:53 AM, James Park jpark37@lagfreegames.com wrote:
+#ifdef DRM_FOURCC_STANDALONE +#include <stdint.h>
+typedef uint32_t __u32; +typedef uint64_t __u64; +#else #include "drm.h" +#endif
C11 allows duplicate typedefs, but older versions of the standard don't AFAIK. If this is a concern, a solution would be to guard the typedefs.