annotate src/fftw-3.3.3/libbench2/pow2.c @ 49:3ab5a40c4e3b

Add Capnp and KJ builds for OSX
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 25 Oct 2016 14:48:23 +0100
parents 37bf6b4a2645
children
rev   line source
Chris@10 1 #include "bench.h"
Chris@10 2
Chris@10 3 int power_of_two(int n)
Chris@10 4 {
Chris@10 5 return (((n) > 0) && (((n) & ((n) - 1)) == 0));
Chris@10 6 }