[ARMLLB]: Make DbgPrint compatible so we can use debug.h.
[reactos.git] / reactos / boot / armllb / crtsupp.c
index ba2dde3..f535a17 100644 (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 */