forked from ROMEO/obsw
27 lines
395 B
C
27 lines
395 B
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
void mission(void);
|
|
|
|
int get_descriptor_rw() {
|
|
return 1;
|
|
}
|
|
|
|
void done() {
|
|
printf("done.\n");
|
|
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");
|
|
}
|
|
|
|
int main(void) {
|
|
mission();
|
|
return 0;
|
|
} |