mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
9 lines
80 B
C
9 lines
80 B
C
#include <errno.h>
|
|
|
|
int errno;
|
|
|
|
int *__errno_location(void)
|
|
{
|
|
return &errno;
|
|
}
|