diff options
-rw-r--r-- | src/main.c | 2 | ||||
-rw-r--r-- | src/pindaiba.h | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,7 @@ #include "config.h" +#include <stddef.h> + #include "pindaiba.h" int diff --git a/src/pindaiba.h b/src/pindaiba.h index 37511c7..6c2199b 100644 --- a/src/pindaiba.h +++ b/src/pindaiba.h @@ -1,2 +1,5 @@ +const size_t +NULL_TERMINATOR = sizeof((char)'\0'); + int pindaiba_main(int argc, char **argv); |