Newer
Older
UbixOS / lib / libc_bsd / gen / setprogname.c
@Charlie Root Charlie Root on 31 Dec 2017 347 bytes Moving Files
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: releng/10.2/lib/libc/gen/setprogname.c 93399 2002-03-29 22:43:43Z markm $");

#include <stdlib.h>
#include <string.h>

#include "libc_private.h"

void
setprogname(const char *progname)
{
	const char *p;

	p = strrchr(progname, '/');
	if (p != NULL)
		__progname = p + 1;
	else
		__progname = progname;
}