ciabatta/inc/errno.h

10 lines
124 B
C
Raw Normal View History

#pragma once
2022-06-02 06:28:17 +00:00
#define EDOM 1
#define EILSEQ 2
#define ERANGE 3
2022-06-03 09:31:16 +00:00
// TODO: make it thread-local
extern int errno;