From cd3b0e3ed508f18874e2a8c907bf82a4b2be2584 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Wed, 13 Feb 2008 20:14:39 +0100 Subject: [PATCH] Use for precise integer types if the compiler claims C99 support. --- lib/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/types.h b/lib/types.h index 3405bb9..3e0e5c3 100644 --- a/lib/types.h +++ b/lib/types.h @@ -1,7 +1,7 @@ /* * The PCI Library -- Types and Format Strings * - * Copyright (c) 1997--2007 Martin Mares + * Copyright (c) 1997--2008 Martin Mares * * Can be freely distributed and used under the terms of the GNU GPL. */ @@ -15,7 +15,7 @@ typedef BYTE u8; typedef WORD u16; typedef DWORD u32; -#elif defined(PCI_HAVE_STDINT_H) +#elif defined(PCI_HAVE_STDINT_H) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) #include typedef uint8_t u8; typedef uint16_t u16; -- 2.39.2