From 27c97e3e2e3cd699cdb0653d4443a64ed05164ea Mon Sep 17 00:00:00 2001 From: "David E. Tiller" <3858971+dtiller@users.noreply.github.com> Date: Tue, 5 Apr 2022 21:30:11 -0400 Subject: [PATCH] Debian needs stdint.h in more places. --- src/bch.c | 1 + src/eotd.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/bch.c b/src/bch.c index beddea8..5c49b7f 100644 --- a/src/bch.c +++ b/src/bch.c @@ -77,6 +77,7 @@ #include #include #include +#include #include "bch.h" int init_bch(bch_t *bch, int m, int length, int t) { diff --git a/src/eotd.c b/src/eotd.c index 96b9138..4e7493b 100644 --- a/src/eotd.c +++ b/src/eotd.c @@ -34,6 +34,7 @@ #include #include #include +#include #include #include "textcolor.h"