From 462564f31bbdc9939bf1d2376e2782defa7ef655 Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Wed, 23 Feb 2011 13:32:37 +0100 Subject: Minor cleanups for core/ui Makefile separation. This patch contains minor cleanups that will be needed by a few future patches that will improve the way core and ui sources are separated and built. - remove a few compiler warnings - formatting - remove the memcheck CONFIG_MEMCHECK checks (they later get in the way) - refine hw/hw.h inclusion's of cpu.h (this comes from upstream) - add missing definitions for PRUd64 and PRUx64 (used later) - remove CONFIG_SHAPER test, replace with CONFIG_ANDROID instead. - add missing strdup() calls. Change-Id: Ic7d6681a51af718c298f0ee4bd884b1d8750f28e --- android/utils/system.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'android/utils') diff --git a/android/utils/system.h b/android/utils/system.h index c8163c6..464957d 100644 --- a/android/utils/system.h +++ b/android/utils/system.h @@ -173,6 +173,12 @@ extern void sleep_ms( int timeout ); #ifndef PRIx64 # define PRIx64 "llx" #endif +#ifndef PRUd64 +# define PRUd64 "llu" +#endif +#ifndef PRUx64 +# define PRUx64 "llx" +#endif /* */ -- cgit v1.1