Przeglądaj źródła

Fixed non-android bb_print for C.

Mark Sibly 7 lat temu
rodzic
commit
47153f6bd7
1 zmienionych plików z 3 dodań i 0 usunięć
  1. 3 0
      modules/monkey/native/bbmonkey_c.c

+ 3 - 0
modules/monkey/native/bbmonkey_c.c

@@ -14,6 +14,9 @@ void bb_printf( const char *fmt,... ){
 
 #else
 
+#include <stdio.h>
+#include <stdarg.h>
+
 void bb_printf( const char *fmt,... ){
 	va_list args;
 	va_start( args,fmt );