summaryrefslogtreecommitdiff
path: root/include/module.h
blob: 7b4db02a2b33550ccbb8814051bfc1a478f309d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MODULE_H
#define MODULE_H

#include "services.h"
#include "commands.h"
#include "modules.h"

#if HAVE_GETTEXT
# include <libintl.h>
# define _(x) gettext(x)
#else
# define _(x) x
#endif

#endif // MODULE_H