mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-30 05:37:13 +09:00
Freestanding WebAssembly is enough, and WASI has always been a pain to support.
18 lines
231 B
C
18 lines
231 B
C
#ifndef _ERRNO_H
|
|
#define _ERRNO_H
|
|
|
|
extern int errno;
|
|
|
|
#define EPERM 1
|
|
#define EINTR 4
|
|
#define EIO 5
|
|
#define ENXIO 6
|
|
#define EAGAIN 11
|
|
#define ENOMEM 12
|
|
#define EINVAL 22
|
|
#define EFBIG 27
|
|
#define ERANGE 34
|
|
#define ENOSYS 38
|
|
|
|
#endif
|