Home | History | Annotate | Download | only in src

Lines Matching defs:stat

234 /* alias of stat() */
235 extern int _std_stat(const char *, struct stat *);
237 /* replacement for stat() of kLIBC which fails if there are trailing dots */
239 stat(const char *name, struct stat *buffer)
298 /* stat() version */
300 stat_ex(const char *name, struct stat *buffer)
302 return (access_stat_ex(stat, name, buffer));
308 struct stat sb;
310 if (stat(name, &sb) < 0 || !S_ISREG(sb.st_mode))