xref: /netbsd-src/external/bsd/mdocml/dist/test-progname.c (revision d90047b5d07facf36e6c01dcc0bded8997ce9cc2)
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