This is an automated email from the ASF dual-hosted git repository. nickva pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/couchdb-jiffy.git
commit 6b04965ca668ecc84196a7c6360267cbc63c914f Author: Nick Vatamaniuc <[email protected]> AuthorDate: Sun Apr 12 22:16:50 2026 -0400 Header cleanups `include-what-you-use` says we don't need <stdio.h> in decoder and encoder so removing them --- c_src/decoder.c | 1 - c_src/encoder.c | 1 - 2 files changed, 2 deletions(-) diff --git a/c_src/decoder.c b/c_src/decoder.c index 46abfec..861f32b 100644 --- a/c_src/decoder.c +++ b/c_src/decoder.c @@ -3,7 +3,6 @@ #include <assert.h> #include <errno.h> -#include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/c_src/encoder.c b/c_src/encoder.c index 01c5533..8ad4067 100644 --- a/c_src/encoder.c +++ b/c_src/encoder.c @@ -2,7 +2,6 @@ // See the LICENSE file for more information. #include <assert.h> -#include <stdio.h> #include <string.h> #include "jiffy.h"
