2021-09-14 00:13:48 +02:00

12 lines
178 B
C++

extern "C" {
#include <libintl.h>
}
int main()
{
// Check if we include the directory correctly and have no link errors
bindtextdomain("", "");
gettext("");
return 0;
}