ciabatta/inc/errno.h

13 lines
175 B
C
Raw Normal View History

2022-06-11 04:49:07 +00:00
#pragma once
#if defined (_MSC_VER)
#define _Thread_local __declspec(thread)
#endif
2022-06-11 04:49:07 +00:00
#define EDOM 1
#define EILSEQ 2
#define ERANGE 3
extern _Thread_local int errno;