mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
10 lines
113 B
C
10 lines
113 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
|
||
|
#ifndef ERRNO_H
|
||
|
#define ERRNO_H
|
||
|
|
||
|
#define ENOMEM 12
|
||
|
#define EINVAL 22
|
||
|
|
||
|
#endif
|