annotate src/fftw-3.3.5/libbench2/pow2.c @ 57:e56993504470

Fixes and updates for 32-bit Windows build
author Chris Cannam
date Mon, 09 Jan 2017 11:53:06 +0000
parents 2cd0e3b3e1fd
children
rev   line source
Chris@42 1 #include "bench.h"
Chris@42 2
Chris@42 3 int power_of_two(int n)
Chris@42 4 {
Chris@42 5 return (((n) > 0) && (((n) & ((n) - 1)) == 0));
Chris@42 6 }