summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/getprogname.c
blob: 7edf99843db615dd2fa55646dffbadc5b8d28c08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if defined(LIBC_RCS) && !defined(lint)
static const char rcsid[] =
  "$FreeBSD$";
#endif /* LIBC_RCS and not lint */

#include <stdlib.h>

extern const char *__progname;

const char *
getprogname(void)
{

	return (__progname);
}
OpenPOWER on IntegriCloud