mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
7 lines
117 B
C
7 lines
117 B
C
#ifndef __LIB_MATH_H__
|
|
#define __LIB_MATH_H__
|
|
|
|
#define min(x, y) (((x) < (y)) ? x : y)
|
|
|
|
#endif /* __LIB_MATH_H__ */
|