/* stub revoke */ #ifdef HAVE_CONFIG_H #include #endif #include #if !HAVE_DECL_ERRNO extern int errno; #endif int revoke (char *path) { (void)path; #ifdef ENOSYS errno = ENOSYS; #else errno = EINVAL; /* ? */ #endif return -1; }