cosmopolitan/dsp/core/half.h
2024-08-04 12:52:25 -07:00

10 lines
226 B
C

#ifndef COSMOPOLITAN_DSP_CORE_HALF_H_
#define COSMOPOLITAN_DSP_CORE_HALF_H_
#include "libc/macros.h"
/**
* Divides integer in half w/ rounding.
*/
#define HALF(X) (((X) + 1) / 2)
#endif /* COSMOPOLITAN_DSP_CORE_HALF_H_ */