mirror of
https://github.com/encounter/osdev.git
synced 2026-07-10 12:18:43 -07:00
5 lines
78 B
C
5 lines
78 B
C
#include "errno.h"
|
|
|
|
char *strerror(int errno) {
|
|
return "ERROR"; // FIXME
|
|
} |