1 /* Prototypes of runtime functions needed by this library */
3 #ifndef BOOTSTRAP_RUNTIME_H_
4 #define BOOTSTRAP_RUNTIME_H_
6 /* Print information message to the debug console */
7 void kprintf(const char *, ...);
9 /* Display critical error. On hosted flavours this can be host OS window */
10 void DisplayError(char *fmt
, ...);