utah rcsid 1.8 87/04/18 01:42:25: Extensive hacking to weed out bugs in
[unix-history] / usr / src / old / uudiff / lenrem.c
#ifndef lint
static char sccsid[] = "@(#)lenrem.c 4.1 (Berkeley) %G%";
#endif
main(argc,argv)
char *argv[];
{
/* args: 1 is name to fix, 2 is this directory */
if (argv[1][0] == '/')
printf("%s\n",argv[1]);
else
printf("%s/%s\n", argv[2], argv[1]);
}