mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 20:32:35 +03:00
6 lines
109 B
C
6 lines
109 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void perror(const char *s) {
|
||
|
debug_printf("%s: It's some error, maybe...\n", s);
|
||
|
}
|