Staging
v0.8.1
Revision aba201c6e8d9934157b9ba39b8e6b54c2fa7b6e1 authored by Pascal Obry on 06 April 2008, 16:56:08 UTC, committed by Junio C Hamano on 07 April 2008, 03:03:09 UTC
Signed-off-by: Pascal Obry <pascal@obry.net>
Acked-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent f2b3e3c
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