mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-07 13:14:51 +00:00
11 lines
118 B
C
11 lines
118 B
C
#include <stdlib.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
const char * progname;
|
|
|
|
progname = getprogname();
|
|
return progname == NULL;
|
|
}
|