[ARMLLB]: Make DbgPrint compatible so we can use debug.h.

svn path=/trunk/; revision=49734
This commit is contained in:
Sir Richard 2010-11-23 16:40:10 +00:00
parent befced9244
commit 589fe32c63

View file

@ -40,7 +40,7 @@ int printf(const char *fmt, ...)
return puts(printbuffer);
}
VOID
ULONG
DbgPrint(const char *fmt, ...)
{
va_list args;
@ -52,6 +52,7 @@ DbgPrint(const char *fmt, ...)
va_end(args);
for (j = 0; j < i; j++) LlbSerialPutChar(Buffer[j]);
return 0;
}
/* EOF */