mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
a141370704
Most of the files already had this, at least. Signed-off-by: Uli Schlachter <psychon@znc.in>
14 lines
216 B
C
14 lines
216 B
C
/*
|
|
* build-tests/__builtin_clz.c
|
|
*
|
|
* test if the compiler has __builtin_clz().
|
|
*/
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
|
|
return (__builtin_clz(42));
|
|
}
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|