date and time created 83/03/09 16:23:34 by ralph
[unix-history] / usr / src / old / uudiff / locpart.c
#ifndef lint
static char sccsid[] = "@(#)locpart.c 4.1 (Berkeley) %G%";
#endif
main(argc,argv)
char *argv[];
{
char *p;
for (p=argv[1]; *p; p++);
while (*p != '/') p--;
printf("%s\n", p+1);
}