mirror of
https://github.com/plappermaul/realtek-doc.git
synced 2025-12-10 07:44:41 +01:00
9 lines
147 B
C
Executable file
9 lines
147 B
C
Executable file
#ifndef _ERRNO_H
|
|
|
|
#include <asm-generic/errno.h>
|
|
|
|
extern int errno;
|
|
|
|
#define __set_errno(val) do { errno = val; } while (0)
|
|
|
|
#endif /* _ERRNO_H */
|