summaryrefslogtreecommitdiff
path: root/src/port/stdint.h
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2008-08-25 21:36:24 +0200
committerAndreas Baumann <abaumann@yahoo.com>2008-08-25 21:36:24 +0200
commitabbdd96699bd8ba0b1b388a598ddbd249b9d3dd6 (patch)
tree3d1784d3b7a039b01d627bb67971125f83a135fb /src/port/stdint.h
downloadwolfbones-abbdd96699bd8ba0b1b388a598ddbd249b9d3dd6.tar.gz
wolfbones-abbdd96699bd8ba0b1b388a598ddbd249b9d3dd6.tar.bz2
checked in initial version from SVN (as SVN is dead!)
Diffstat (limited to 'src/port/stdint.h')
-rw-r--r--src/port/stdint.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/port/stdint.h b/src/port/stdint.h
new file mode 100644
index 0000000..d5d830a
--- /dev/null
+++ b/src/port/stdint.h
@@ -0,0 +1,15 @@
+#ifndef __STDINT_H
+#define __STDINT_H
+
+#include "sys.h"
+
+#if defined HAVE_STDINT_H
+#include <stdint.h>
+#endif /* defined HAVE_STDINT_H */
+
+/* Solaris 8 weirdness */
+#if defined HAVE_LINK_H
+#include <link.h>
+#endif /* defined HAVE_LINK_H */
+
+#endif /* ifndef __STDINT_H */