~aghuloum/ikarus/ikarus.dev

« back to all changes in this revision

Viewing changes to src/ikarus-errno.c

  • Committer: Abdulaziz Ghuloum
  • Date: 2008-06-09 06:15:25 UTC
  • Revision ID: aghuloum@cs.indiana.edu-20080609061525-z12bxxl4394ry02p
EAI_SYSTEM and ECANCELED are undefined under cygwin; added
conditional #define.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
  ikptr c;
28
28
} errno_info;
29
29
 
 
30
#ifndef ECANCELED
 
31
#define ECANCELED 140
 
32
#endif
 
33
 
30
34
static errno_info errno_table[] = {
31
35
  /* errnos from POSIX IEEE Std 1003.1 2004 Edition */
32
36
  {E2BIG,            "E2BIG",            fix(-1)},