mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-18 17:53:10 +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
|