~galfy/helenos/bird-port-mainline

« back to all changes in this revision

Viewing changes to uspace/lib/c/include/errno.h

  • Committer: Stanislav Galfy
  • Date: 2017-02-05 15:27:31 UTC
  • Revision ID: stanislav.galfy@nomail-20170205152731-nbnd0jy3hbh7sq2g
socket refactoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
extern int *__errno(void) __attribute__((const));
43
43
 
44
 
#define EMFILE        (-18)
45
 
#define ENAMETOOLONG  (-256)
46
 
#define EISDIR        (-257)
47
 
#define ENOTDIR       (-258)
48
 
#define ENOSPC        (-259)
49
 
#define ENOTEMPTY     (-261)
50
 
#define EBADF         (-262)
51
 
#define EDOM          (-263)
52
 
#define ERANGE        (-264)
53
 
#define EXDEV         (-265)
54
 
#define EIO           (-266)
55
 
#define EMLINK        (-267)
56
 
#define ENXIO         (-268)
 
44
#define EMFILE          (-18)
 
45
#define EPROTONOSUPPORT (-93)
 
46
#define ESOCKTNOSUPPORT (-94)
 
47
#define EOPNOTSUPP      (-95)
 
48
#define ENAMETOOLONG    (-256)
 
49
#define EISDIR          (-257)
 
50
#define ENOTDIR         (-258)
 
51
#define ENOSPC          (-259)
 
52
#define ENOTEMPTY       (-261)
 
53
#define EBADF           (-262)
 
54
#define EDOM            (-263)
 
55
#define ERANGE          (-264)
 
56
#define EXDEV           (-265)
 
57
#define EIO             (-266)
 
58
#define EMLINK          (-267)
 
59
#define ENXIO           (-268)
57
60
 
58
61
/** Bad checksum. */
59
62
#define EBADCHECKSUM  (-300)