mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-14 14:55:41 +00:00
61d06d6bd1
Approved by: re (kib) MFC after: 1 week
11 lines
118 B
C
11 lines
118 B
C
#include <stdlib.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
const char * progname;
|
|
|
|
progname = getprogname();
|
|
return progname == NULL;
|
|
}
|