umka/windows/thread.c
Ivan Baravy be21f83af2 Split vnet driver to generic vnet part, tap and file interfaces
Fix most compilation issues of umka_shell on Windows(R)(TM), not all
of them.
2023-02-01 18:55:20 +00:00

20 lines
369 B
C
Executable File

/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
*/
#include <stdio.h>
void reset_procmask(void) {
printf("STUB: %s:%d", __FILE__, __LINE__);
}
int get_fake_if(void *ctx) {
(void)ctx;
printf("STUB: %s:%d", __FILE__, __LINE__);
return 0;
}