Sign in
gem5
/
arm
/
linux
/
93c5bdf7ab71bbdae27f8f51fa175e06f000d69d
/
.
/
scripts
/
check-lc_ctype.c
blob: 9097ff5449fb7a4a54e72b87a9b74b966422ebb3 [
file
]
/*
* Check that a specified locale works as LC_CTYPE. Used by the
* DocBook build system to probe for C.UTF-8 support.
*/
#include
<locale.h>
int
main
(
void
)
{
return
!
setlocale
(
LC_CTYPE
,
""
);
}