forked from ROMEO/obsw
25 lines
386 B
C
25 lines
386 B
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
void mission(void);
|
|
|
|
void done() {
|
|
printf("done.");
|
|
exit(0);
|
|
}
|
|
|
|
// Don't ask me, it makes the linker happy and does not seem
|
|
// to break anything ¯\_(ツ)_/¯
|
|
void rust_eh_personality() {
|
|
puts("eh_personality");
|
|
}
|
|
|
|
void outbyte(uint8_t byte){
|
|
printf("%c", byte);
|
|
}
|
|
|
|
int main(void) {
|
|
mission();
|
|
return 0;
|
|
} |