new copyright notice
[unix-history] / usr / src / old / uudiff / lenrem.c
CommitLineData
3c78a94e
SL
1#ifndef lint
2static char sccsid[] = "@(#)lenrem.c 4.1 (Berkeley) %G%";
3#endif
4
5main(argc,argv)
6 char *argv[];
7{
8/* args: 1 is name to fix, 2 is this directory */
9if (argv[1][0] == '/')
10 printf("%s\n",argv[1]);
11else
12 printf("%s/%s\n", argv[2], argv[1]);
13}