1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-07 13:14:51 +00:00
freebsd/contrib/mdocml/test-progname.c
2016-01-15 23:28:12 +00:00

11 lines
118 B
C

#include <stdlib.h>
int
main(void)
{
const char * progname;
progname = getprogname();
return progname == NULL;
}