]> granicus.if.org Git - graphviz/commitdiff
Remove define and usage of `_hdr_stdint`
authorErwin Janssen <erwinjanssen@outlook.com>
Sun, 18 Sep 2016 21:16:28 +0000 (23:16 +0200)
committerErwin Janssen <erwinjanssen@outlook.com>
Sun, 18 Sep 2016 21:16:28 +0000 (23:16 +0200)
This define is used in `lib/sfio` to determine if it is alright to include
`<stdint.h>`. Since we are compiling with standard C and stdint.h is part
of the standard, we can safely assume this check always evaluates to true
and remove it.

ast_common.h.in
lib/sfio/sfhdr.h

index 3654e3111c17e8d9553fc84aa77c2d12b2d49382..c727782993c643d2fb757e7a1b548f69c49ce47d 100644 (file)
 #  define _sys_stat 1
 #endif
 
-#ifdef HAVE_STDINT_H
-#  define _hdr_stdint 1
-#endif
-
 #ifdef HAVE_STDARG_H
 #  define _hdr_stdarg 1
 #endif
index 88139add84191bec729999104006525cc57003da..2abd8f9aafd5df12838262f98159b424e290bbde 100644 (file)
@@ -92,10 +92,7 @@ extern "C" {
 
 #include       <stdlib.h>
 #include       <string.h>
-
-#if _hdr_stdint
 #include       <stdint.h>
-#endif
 
 #if _hdr_stddef
 #include       <stddef.h>