Merge tag 'wireless-drivers-for-davem-2016-09-08' of git://git.kernel.org/pub/scm...
[deliverable/linux.git] / scripts / check-lc_ctype.c
CommitLineData
b479bfd0
BH
1/*
2 * Check that a specified locale works as LC_CTYPE. Used by the
3 * DocBook build system to probe for C.UTF-8 support.
4 */
5
6#include <locale.h>
7
8int main(void)
9{
10 return !setlocale(LC_CTYPE, "");
11}
This page took 0.065028 seconds and 5 git commands to generate.