aboutsummaryrefslogtreecommitdiffstats
path: root/make/stub_includes/common/stdint.h
diff options
context:
space:
mode:
authorWade Walker <[email protected]>2015-07-12 14:24:15 -0500
committerWade Walker <[email protected]>2015-07-12 14:24:15 -0500
commit02ef8884a2ca07de510bbc3fb17ff2a68083ad14 (patch)
tree615a6a9b9bbce78a4fe4b75985c001a46095bbda /make/stub_includes/common/stdint.h
parent6affe9ce21fddc307712545a38caf735da52c1cf (diff)
Remove stub includes that are duplicates of gluegen's and jogl's
Removes jocl stub includes that are already defined in gluegen and jogl, and refers to those in gluegen and jogl instead. Requires the literalInclude parameter to the gluegen Ant task, since it must now refer to files outside the jocl project.
Diffstat (limited to 'make/stub_includes/common/stdint.h')
-rw-r--r--make/stub_includes/common/stdint.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/make/stub_includes/common/stdint.h b/make/stub_includes/common/stdint.h
deleted file mode 100644
index 4e456608..00000000
--- a/make/stub_includes/common/stdint.h
+++ /dev/null
@@ -1,48 +0,0 @@
-#ifndef __stdint_h_
-#define __stdint_h_
-
- /**
- * Look in the GlueGen.java API documentation for the build-in types (terminal symbols)
- * definition.
- *
- * The following types are build-in:
- *
- * __int32
- * int32_t
- * uint32_t
- * __int64
- * int64_t
- * uint64_t
- * ptrdiff_t
- * size_t
- */
-
- typedef signed char int8_t;
- typedef unsigned short int16_t;
-
- typedef unsigned char uint8_t;
- typedef unsigned short uint16_t;
-
- typedef ptrdiff_t intptr_t;
- typedef size_t uintptr_t;
-
- /* Greatest-width integer types */
- /* Modern GCCs provide __INTMAX_TYPE__ */
- #if defined(__INTMAX_TYPE__)
- typedef __INTMAX_TYPE__ intmax_t;
- #elif __have_longlong64
- typedef signed long long intmax_t;
- #else
- typedef int64_t intmax_t;
- #endif
-
- /* Modern GCCs provide __UINTMAX_TYPE__ */
- #if defined(__UINTMAX_TYPE__)
- typedef __UINTMAX_TYPE__ uintmax_t;
- #elif __have_longlong64
- typedef unsigned long long uintmax_t;
- #else
- typedef uint64_t uintmax_t;
- #endif
-
-#endif /* __stdint_h_ */