Files
libsodium/builds/wasm32-freestanding/include/errno.h
T
Frank Denis ee2972b83e Remove support for WASI
Freestanding WebAssembly is enough, and WASI has always been a
pain to support.
2026-08-26 14:25:41 +02:00

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