1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-26 11:47:31 +00:00
freebsd/lib/libc/gen/setprogname.c

14 lines
219 B
C
Raw Normal View History

#if defined(LIBC_RCS) && !defined(lint)
static const char rcsid[] =
"$FreeBSD$";
#endif /* LIBC_RCS and not lint */
extern const char *__progname;
void
setprogname(const char *progname)
{
__progname = progname;
}