GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / tools / misc / xz / src / common / tuklib_progname.h
blob791b12517e59c9643856d7c4705c7467c83f75a5
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file tuklib_progname.h
4 /// \brief Program name to be displayed in messages
5 //
6 // Author: Lasse Collin
7 //
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
11 ///////////////////////////////////////////////////////////////////////////////
13 #ifndef TUKLIB_PROGNAME_H
14 #define TUKLIB_PROGNAME_H
16 #include "tuklib_common.h"
17 #include <errno.h>
19 TUKLIB_DECLS_BEGIN
21 #if HAVE_DECL_PROGRAM_INVOCATION_NAME
22 # define progname program_invocation_name
23 #else
24 # define progname TUKLIB_SYMBOL(tuklib_progname)
25 extern char *progname;
26 #endif
28 #define tuklib_progname_init TUKLIB_SYMBOL(tuklib_progname_init)
29 extern void tuklib_progname_init(char **argv);
31 TUKLIB_DECLS_END
32 #endif