mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 12:28:22 +01:00
24 lines
360 B
C
24 lines
360 B
C
|
|
|
|
#ifndef WINGS_CONFIG_H_
|
|
#define WINGS_CONFIG_H_
|
|
|
|
#include "../src/config.h"
|
|
|
|
#if defined(HAVE_LIBINTL_H) && defined(I18N)
|
|
# include <libintl.h>
|
|
# define _(text) dgettext("WINGs", text)
|
|
#else
|
|
# define _(text) (text)
|
|
#endif
|
|
|
|
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
|
|
# define INLINE inline
|
|
#else
|
|
# define INLINE
|
|
#endif
|
|
|
|
|
|
#endif /* WINGS_CONFIG_H_ */
|
|
|