Skip to content
Snippets Groups Projects
Commit cb35def2 authored by Mark Grondona's avatar Mark Grondona
Browse files

o conditionally include config.h

 o include inittypes.h if available (for systems w/out stdint.h)
parent 437db9d0
No related branches found
No related tags found
No related merge requests found
......@@ -15,11 +15,22 @@
* bitstrings are zero origin
*/
#include <stdint.h>
#ifndef _BITSTRING_H_
#define _BITSTRING_H_
#if HAVE_CONFIG_H
# include <config.h>
# if HAVE_INTTYPES_H
# include <inttypes.h>
# else
# if HAVE_STDINT_H
# include <stdint.h>
# endif
# endif /* HAVE_INTTYPES_H */
#else /* !HAVE_CONFIG_H */
# include <inttypes.h>
#endif /* HAVE_CONFIG_H */
#define BITSTR_SHIFT_WORD8 3
#define BITSTR_SHIFT_WORD32 5
#define BITSTR_SHIFT_WORD64 6
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment