summaryrefslogtreecommitdiffstats
path: root/Tests/FindIntl/Test/main.cxx
blob: d90c095414b35f849de5bb6ef5db026fa8e6f061 (plain)
1
2
3
4
5
6
7
8
9
10
11
extern "C" {
#include <libintl.h>
}

int main()
{
  // Check if we include the directory correctly and have no link errors
  bindtextdomain("", "");
  gettext("");
  return 0;
}