]> rtime.felk.cvut.cz Git - git.git/blob - test-absolute-path.c
autoconf: define NO_SYS_SELECT_H on systems without <sys/select.h>.
[git.git] / test-absolute-path.c
1 #include "cache.h"
2
3 int main(int argc, char **argv)
4 {
5         while (argc > 1) {
6                 puts(make_absolute_path(argv[1]));
7                 argc--;
8                 argv++;
9         }
10         return 0;
11 }