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