Blame view

build6/epsilon-master/liba/include/errno.h 203 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  #ifndef LIBA_ERRNO_H
  #define LIBA_ERRNO_H
  
  /* No such file or directory */
  #define ENOENT 2
  
  /* Invalid argument */
  #define EINVAL 22
  
  /* Not enough space */
  #define ENOMEM 12
  
  extern int errno;
  
  #endif