]> git.ipfire.org Git - thirdparty/git.git/blame - test-absolute-path.c
git-name-rev.txt: document --no-undefined and --always
[thirdparty/git.git] / test-absolute-path.c
CommitLineData
e5392c51
JS
1#include "cache.h"
2
3int 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}