Cleaning: tweaks.

svn path=/branches/powerpc/; revision=24015
This commit is contained in:
Art Yerkes
2006-09-10 06:07:08 +00:00
parent 716a587e86
commit 1cc1dd2ddd
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ extern "C" {
#ifndef VOID
#define VOID void
#endif
typedef signed char CHAR;
typedef char CHAR;
typedef short SHORT;
#ifndef LONG_DEFINED
#define LONG_DEFINED
+3
View File
@@ -1663,6 +1663,9 @@ extern LPSTR _strupr(LPSTR str); /* FIXME: Doesn't belong here */
#if defined(__i386__) && defined(__GNUC__)
static inline void WINAPI DbgBreakPoint(void) { __asm__ __volatile__("int3"); }
static inline void WINAPI DbgUserBreakPoint(void) { __asm__ __volatile__("int3"); }
#elif defined(__PowerPC__) && defined(__GNUC__)
static inline void WINAPI DbgBreakPoint(void) { __asm__ __volatile__("ti 0,7,0"); }
static inline void WINAPI DbgUserBreakPoint(void) { __asm__ __volatile__("ti 0,7,0"); }
#else /* __i386__ && __GNUC__ */
void WINAPI DbgBreakPoint(void);
void WINAPI DbgUserBreakPoint(void);