mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
10 lines
226 B
C
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_ */
|