2022-06-27 21:36:56 +04:00
|
|
|
/*
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
UMKa - User-Mode KolibriOS developer tools
|
|
|
|
|
|
|
|
Copyright (C) 2021 Magomed Kostoev <mkostoevr@yandex.ru>
|
|
|
|
*/
|
|
|
|
|
2021-12-13 15:58:19 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2021-12-12 13:35:35 +03:00
|
|
|
void reset_procmask(void) {
|
|
|
|
printf("STUB: %s:%d", __FILE__, __LINE__);
|
|
|
|
}
|
|
|
|
|
|
|
|
int get_fake_if(void *ctx) {
|
|
|
|
printf("STUB: %s:%d", __FILE__, __LINE__);
|
|
|
|
return 0;
|
|
|
|
}
|