Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <sys/types.h>
  3. #include <sys/mman.h>
  4. #include <errno.h>
  5. #include <assert.h>
  6.  
  7. int mprotect(void *addr, size_t len, int prot)
  8. {
  9.  return -1;
  10. }
  11.