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 <libc/stubs.h>
  3. #include <sys/stat.h>
  4. #include <errno.h>
  5. #include <fcntl.h>
  6. #include <unistd.h>
  7. #include <assert.h>
  8.  
  9. /* ARGSUSED */
  10. int
  11. mknod(const char *path, mode_t mode, dev_t dev)
  12. {
  13.   errno = EACCES;
  14.   return -1;
  15. }
  16.