This repository has been archived on 2024-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
|
#ifndef MATH_H
|
|
#define MATH_H 1
|
|
|
|
#define min(a, b) (((a) < (b)) ? (a) : (b))
|
|
#define max(a, b) (((a) > (b)) ? (a) : (b))
|
|
|
|
#endif
|