summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorYoshinori Sato <ysato@users.sourceforge.jp>2015-05-24 02:06:23 +0900
committerWaldemar Brodkorb <wbx@openadk.org>2015-06-10 10:19:39 -0500
commite9fd792344b30b370346d0224d54edb6a96d5cff (patch)
treee3feb8528bb5d576fde29e0e3bc7fc332225eb11 /include
parent8df92aac2ccb8fa20899c4b025e8dfaa7414919b (diff)
h8300: 64bit integer support
Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/stdint.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/stdint.h b/include/stdint.h
index b1349256c..9ca84453c 100644
--- a/include/stdint.h
+++ b/include/stdint.h
@@ -238,7 +238,6 @@ typedef unsigned long long int uintmax_t;
# endif
-#if !defined(__H8300H__) && !defined(__H8300S__)
/* Minimum for largest signed integral type. */
# define INTMAX_MIN (-__INT64_C(9223372036854775807)-1)
/* Maximum for largest signed integral type. */
@@ -246,15 +245,6 @@ typedef unsigned long long int uintmax_t;
/* Maximum for largest unsigned integral type. */
# define UINTMAX_MAX (__UINT64_C(18446744073709551615))
-#else
-/* Minimum for largest signed integral type. */
-# define INTMAX_MIN (-LONG_LONG_MAX-1)
-/* Maximum for largest signed integral type. */
-# define INTMAX_MAX (LONG_LONG_MAX)
-
-/* Maximum for largest unsigned integral type. */
-# define UINTMAX_MAX (LONG_LONG_MAX<<1+1)
-#endif
/* Limits of other integer types. */