aboutsummaryrefslogtreecommitdiff
path: root/src/include/open-axiom.h
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-04-28 02:13:31 +0000
committerdos-reis <gdr@axiomatics.org>2008-04-28 02:13:31 +0000
commit3223409ab97b1a6a8e60d541b0c7b5b69c8b9a83 (patch)
tree5c7ffe18c0f939cfcc57bfe33f999815d6c3a317 /src/include/open-axiom.h
parent97b5280bd5ff44b94213559391421ba39e11249a (diff)
downloadopen-axiom-3223409ab97b1a6a8e60d541b0c7b5b69c8b9a83.tar.gz
* configure.ac.pamphlet: Check from uint8_t.
* config/openaxiom-c-macros.h.in: Rename from config/axiom-c-macros.h.in. * src: Propagate change.
Diffstat (limited to 'src/include/open-axiom.h')
-rw-r--r--src/include/open-axiom.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/include/open-axiom.h b/src/include/open-axiom.h
index 729adb86..2c0335f0 100644
--- a/src/include/open-axiom.h
+++ b/src/include/open-axiom.h
@@ -45,4 +45,11 @@
# define OPENAXIOM_EXPORT /* nothing */
#endif /* __MINGW32__ */
+#if defined(HAVE_STDINT_H)
+# include <stdint.h>
+#elif defined (HAVE_INTTYPES_H)
+# include <inttypes.h>
+#endif
+typedef uint8_t openaxiom_byte;
+
#endif /* OPENAXIOM_included */