mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
13 lines
196 B
C
13 lines
196 B
C
#include "error.h"
|
|
#include "strerr.h"
|
|
|
|
struct strerr strerr_sys;
|
|
|
|
void strerr_sysinit(void)
|
|
{
|
|
strerr_sys.who = 0;
|
|
strerr_sys.x = error_str(errno);
|
|
strerr_sys.y = "";
|
|
strerr_sys.z = "";
|
|
}
|