arch/cpu.resource: remove dead code
[AROS.git] / bootstrap / include / runtime.h
blobfaf3ed299419b3597e0fdbbabc29f99724fbbf0b
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, ...);
12 #endif