diff options
author | Vincent Douillet <vincent@vdouillet.fr> | 2022-12-02 17:52:41 +0100 |
---|---|---|
committer | Vincent Douillet <vincent@vdouillet.fr> | 2022-12-02 17:52:41 +0100 |
commit | be3abab7de115e3093a2d085275d0f8d8b1ba42d (patch) | |
tree | d14df0266b2af82f016fc9953d1586f153916b83 /input.h | |
parent | 076d2ca0e0c2f0308373628272a3972241575653 (diff) |
day 2
Diffstat (limited to 'input.h')
-rw-r--r-- | input.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,8 @@ #ifndef DEF_INPUTH #define DEF_INPUTH +#include <stddef.h> + /* simple macro to check a result against an expected value */ #define CHECK(actual, expected) {\ if(actual == expected)\ |