blob: 8f9086285ee8bd0176ebc741d2fb4d7b38fe4841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Gnome-specific code to help with argp integration.
Written by Tom Tromey <tromey@cygnus.com>. */
#include <config.h>
#ifndef HAVE_PROGRAM_INVOCATION_SHORT_NAME
char *program_invocation_short_name;
#endif
#ifndef HAVE_PROGRAM_INVOCATION_NAME
char *program_invocation_name;
#endif
|