ciabatta/inc/errno.h

10 lines
129 B
C
Raw Normal View History

2022-06-11 04:49:07 +00:00
#pragma once
#define EDOM 1
#define EILSEQ 2
#define ERANGE 3
// TODO: make it thread-local
2022-06-16 05:17:19 +00:00
extern _Thread_local int errno;