14 lines
197 B
C
14 lines
197 B
C
|
// 2016, Georg Sauthoff <mail@georg.so>, CDDL
|
||
|
#ifndef COMP_PROGNAME_H
|
||
|
#define COMP_PROGNAME_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
const char *getprogname();
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|