blob: 79ed5bfeb0db1584c6d427d5d94f0f4467af8fbf (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef PURGATORY_H
#define PURGATORY_H
void putchar(int ch);
void printf(const char *fmt, ...);
void setup_arch(void);
void post_verification_setup_arch(void);
#endif /* PURGATORY_H */
|