xref: /netbsd-src/external/bsd/mdocml/dist/test-progname.c (revision 479d8f7d843cc1b22d497efdf1f27a50ee8418d4)
1 #include <stdlib.h>
2 
3 int
4 main(void)
5 {
6 	const char * progname;
7 
8 	progname = getprogname();
9 	return progname == NULL;
10 }
11