Staging
v0.5.1
Revision bbff2dce2baf840cca6ddfd79be3c27f93322f47 authored by Junio C Hamano on 27 December 2007, 02:16:52 UTC, committed by Junio C Hamano on 27 December 2007, 02:16:52 UTC
Although everybody was quiet during the Christmas holiday, it's been
a week since -rc1, so here is -rc2.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 49e6be5
Raw File
test-absolute-path.c
#include "cache.h"

int main(int argc, char **argv)
{
	while (argc > 1) {
		puts(make_absolute_path(argv[1]));
		argc--;
		argv++;
	}
	return 0;
}
back to top