bonding: improve link-status update in mii-monitoring
[linux-2.6/btrfs-unstable.git] / scripts / check-lc_ctype.c
blob9097ff5449fb7a4a54e72b87a9b74b966422ebb3
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 */
6 #include <locale.h>
8 int main(void)
10 return !setlocale(LC_CTYPE, "");