Home | History | Annotate | Download | only in src

Lines Matching refs:b2

2810 	struct stat b1, b2;
2927 (((s = stat(opnd2, &b2)) == 0 &&
2928 b1.st_mtime > b2.st_mtime) || s < 0));
2933 return (stat(opnd2, &b2) == 0 &&
2935 b1.st_mtime < b2.st_mtime) || s < 0));
2937 return (stat (opnd1, &b1) == 0 && stat (opnd2, &b2) == 0 &&
2938 b1.st_dev == b2.st_dev && b1.st_ino == b2.st_ino);