Most of the strto* functions are only stubbed out, but they're there for things that link to them but don't call them.
15 lines
221 B
C
15 lines
221 B
C
#pragma once
|
|
/// \file arch/amd64/errno.h
|
|
/// errno implementation for amd64
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int * __errno_location();
|
|
#define errno (*__errno_location())
|
|
|
|
#ifdef __cplusplus
|
|
} // extern C
|
|
#endif
|