Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.7-rc6 11 lines 201 B view raw
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}