4cd0119367
Also, make an internal _getprogname() that is used only inside libc. For libc, getprogname(3) is a weak symbol in case a function of the same name is defined in userland.
20 lines
273 B
C
20 lines
273 B
C
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#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;
|
|
}
|