ciabatta/inc/errno.h

10 lines
116 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
2022-06-24 02:43:47 +00:00
#define EIO 4
2022-06-11 04:49:07 +00:00
extern _Thread_local int errno;