diff options
-rw-r--r-- | libgloss/ChangeLog | 9 | ||||
-rw-r--r-- | libgloss/mips/cfe_api.h | 7 |
2 files changed, 9 insertions, 7 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 4b288cd5a..698ba7843 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,12 @@ +2013-04-19 Steve Ellcey <sellcey@imgtec.com> + + * mips/cfe_api.h (int64_t): Remove define. + (uint64_t): Remove define. + (intptr_t): Remove define. + (uintptr_t): Remove define. + (sys/types.h): Remove include. + (_ansi.h): Remove include. + 2013-04-19 Yufeng Zhang <yufeng.zhang@arm.com> * aarch64/Makefile.in (rdimon-crt0.o, rdimon-trap.o) diff --git a/libgloss/mips/cfe_api.h b/libgloss/mips/cfe_api.h index afe46834e..b17f929c4 100644 --- a/libgloss/mips/cfe_api.h +++ b/libgloss/mips/cfe_api.h @@ -59,13 +59,6 @@ * CFE_API_* can be defined here as desired. */ /* Begin customization. */ -#include <sys/types.h> /* for __uint64_t and __int64_t. */ -#define int64_t __int64_t -#define uint64_t __int64_t -#include <_ansi.h> /* for _POINTER_INT. */ -typedef _POINTER_INT intptr_t; -typedef unsigned _POINTER_INT uintptr_t; - #include <string.h> #define cfe_strlen(s) strlen(s) |