blob: f9913e50906c84904b750055d0d4124a4a17b22e (
plain)
1
2
3
4
5
6
7
8
9
|
/* ISC license. */
#ifndef ERROR_H
#define ERROR_H
#include <skalibs/gccattributes.h>
extern int error_temp (int) gccattr_const ;
#define error_isagain(e) (((e) == EAGAIN) || ((e) == EWOULDBLOCK))
|