mirror of https://github.com/F-Stack/f-stack.git
11 lines
132 B
C
11 lines
132 B
C
|
#define _GNU_SOURCE
|
||
|
#include <errno.h>
|
||
|
#include "compat.h"
|
||
|
|
||
|
const char *
|
||
|
getprogname(void)
|
||
|
{
|
||
|
return program_invocation_name;
|
||
|
}
|
||
|
|