home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / SYS / PORTACCE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  238 b   |  12 lines

  1. /* sys/portacce.c (emx+gcc) -- Copyright (c) 1992-1993 by Eberhard Mattes */
  2.  
  3. #include <sys/emx.h>
  4. #include <errno.h>
  5. #include "syscalls.h"
  6.  
  7. int __portaccess (unsigned first, unsigned last)
  8. {
  9.   errno = EACCES;
  10.   return (-1);
  11. }
  12.