diff options
Diffstat (limited to 'src/lisiblestd/math.h')
| -rw-r--r-- | src/lisiblestd/math.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lisiblestd/math.h b/src/lisiblestd/math.h new file mode 100644 index 0000000..96771fa --- /dev/null +++ b/src/lisiblestd/math.h @@ -0,0 +1,6 @@ +#ifndef LSTD_MATH_H +#define LSTD_MATH_H + +#define MAX(a, b) (a > b ? a : b) + +#endif // LSTD_MATH_H |
