xref: /freebsd/lib/libc/gen/getprogname.c (revision c17d43407fe04133a94055b0dbc7ea8965654a9f)
1 #include <sys/cdefs.h>
2 __FBSDID("$FreeBSD$");
3 
4 #include <stdlib.h>
5 
6 extern const char *__progname;
7 
8 const char *
9 getprogname(void)
10 {
11 
12 	return (__progname);
13 }
14