You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
262 B

28 years ago
  1. #include <io.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <errno.h>
  5. #define access _access
  6. #define X_OK 0
  7. #ifndef ENOENT
  8. #define ENOENT 136
  9. #endif
  10. #ifndef EINVAL
  11. #define EINVAL 131
  12. #endif
  13. int readlink(char *, char *, int);
  14. int checkroot(char *path);