diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-30 19:07:43 -0600 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-30 19:07:43 -0600 |
| commit | 562ba9a9b6efd8cc27fc506f83b1125c2cfa4619 (patch) | |
| tree | f801276f9332462084966ee731e2e90c0f180cb2 /inc/macros.h | |
| parent | 81979f09cf100db32deb0e1917dabb1fe435194c (diff) | |
| download | math-4610-562ba9a9b6efd8cc27fc506f83b1125c2cfa4619.tar.gz math-4610-562ba9a9b6efd8cc27fc506f83b1125c2cfa4619.zip | |
hw 5
Diffstat (limited to 'inc/macros.h')
| -rw-r--r-- | inc/macros.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/macros.h b/inc/macros.h index eab1b41..d081869 100644 --- a/inc/macros.h +++ b/inc/macros.h @@ -52,7 +52,7 @@ #define c_max(x, y) (((x) >= (y)) ? (x) : (y)) #define c_min(x, y) (((x) <= (y)) ? (x) : (y)) -#define true 1; -#define false 0; +#define true 1 +#define false 0 #endif // MACROS_H |
