~ubuntu-branches/ubuntu/hardy/ruby1.8/hardy-updates

« back to all changes in this revision

Viewing changes to wince/errno.h

  • Committer: Bazaar Package Importer
  • Author(s): akira yamada
  • Date: 2007-03-13 22:11:58 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070313221158-h3oql37brlaf2go2
Tags: 1.8.6-1
* new upstream version, 1.8.6.
* libruby1.8 conflicts with libopenssl-ruby1.8 (< 1.8.6) (closes: #410018)
* changed packaging style to cdbs from dbs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef ERRNO_H
 
2
#define ERRNO_H 1
 
3
 
 
4
 
 
5
#define EPERM           1
 
6
#define ENOENT          2
 
7
#define ESRCH           3
 
8
#define EINTR           4
 
9
#define EIO             5
 
10
#define ENXIO           6
 
11
#define E2BIG           7
 
12
#define ENOEXEC         8
 
13
#define EBADF           9
 
14
#define ECHILD          10
 
15
#define EAGAIN          11
 
16
#define ENOMEM          12
 
17
#define EACCES          13
 
18
#define EFAULT          14
 
19
#define EOSERR          15 // rk
 
20
#define EBUSY           16
 
21
#define EEXIST          17
 
22
#define EXDEV           18
 
23
#define ENODEV          19
 
24
#define ENOTDIR         20
 
25
#define EISDIR          21
 
26
#define EINVAL          22
 
27
#define ENFILE          23
 
28
#define EMFILE          24
 
29
#define ENOTTY          25
 
30
#define EFBIG           27
 
31
#define ENOSPC          28
 
32
#define ESPIPE          29
 
33
#define EROFS           30
 
34
#define EMLINK          31
 
35
#define EPIPE           32
 
36
#define EDOM            33
 
37
#define ERANGE          34
 
38
#define EDEADLK         36
 
39
#define ENOSYS          37
 
40
 
 
41
#ifdef __cplusplus
 
42
extern "C" {
 
43
#endif
 
44
 
 
45
extern int errno;
 
46
extern int _doserrno;
 
47
extern int _sys_nerr;
 
48
 
 
49
#define sys_nerr _sys_nerr
 
50
 
 
51
#ifdef __cplusplus
 
52
};
 
53
#endif
 
54
 
 
55
#endif