Minor compilation fixes for Windows(R)(TM)

This commit is contained in:
2023-02-05 08:06:14 +00:00
parent 9d54898197
commit ac55d2ddf2
3 changed files with 18 additions and 7 deletions

View File

@@ -7,13 +7,21 @@
*/
#include <stdio.h>
#include <stdlib.h>
void reset_procmask(void) {
void
reset_procmask(void) {
printf("STUB: %s:%d", __FILE__, __LINE__);
}
int get_fake_if(void *ctx) {
int
get_fake_if(void *ctx) {
(void)ctx;
printf("STUB: %s:%d", __FILE__, __LINE__);
return 0;
}
void
system_shutdown(void) {
exit(0);
}