16 lines
230 B
C
16 lines
230 B
C
#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);
|
|
}
|