File:  [GCC 2.x] / gcc / config / winnt / oldnames.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 18:27:53 2018 UTC (8 years, 3 months ago) by root
Branches: fsf, MAIN
CVS tags: gcc-2723, gcc-2722, gcc-2721, gcc-272, HEAD
gcc-2.7.2

int
access (const char *path, int mode)
{
  return _access (path, mode);
}

int
chmod (const char *filename, int pmode)
{
  return _chmod (filename, pmode);
}

int
close (int handle)
{
  return _close (handle);
}

char *
mktemp (char *template)
{
   return (char *) _mktemp (template);
}

int
open (const char *filename, int oflag, int pmode)
{
  return _open (filename, oflag, pmode);
} 

int
read (int handle, void *buffer, unsigned int count)
{
  return _read (handle, buffer, count);
}

int
unlink (const char *path)
{
  return _unlink (path);
}

int
write (int handle, void *buffer, unsigned int count)
{
  return _write (handle, buffer, count);
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.