mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-11 16:51:55 -06:00
960fc66447
Fixes errors about implicit function declaration and moves duplicated gettext code into a common module. Also silences some warnings. Signed-off-by: Simo Sorce <ssorce@redhat.com>
10 lines
177 B
C
10 lines
177 B
C
#ifndef __IPA_CLIENT_COMMON_H
|
|
#define __IPA_CLIENT_COMMON_H
|
|
|
|
#include <libintl.h>
|
|
#define _(STRING) gettext(STRING)
|
|
|
|
int init_gettext(void);
|
|
|
|
#endif /* __IPA_CLIENT_COMMON_H */
|