From 5bd2c4d0bf7e99257c71291170f8c2b7bef5b6bc Mon Sep 17 00:00:00 2001 From: Brian Hannan Date: Thu, 28 Nov 2024 10:21:59 -0800 Subject: [PATCH] Include stdint.h --- vol-3-sort-and-search/src/distribution_count_sort.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vol-3-sort-and-search/src/distribution_count_sort.c b/vol-3-sort-and-search/src/distribution_count_sort.c index efcf8fe..ebc19bf 100644 --- a/vol-3-sort-and-search/src/distribution_count_sort.c +++ b/vol-3-sort-and-search/src/distribution_count_sort.c @@ -1,5 +1,6 @@ #include "distribution_count_sort.h" #include +#include static unsigned int get_max(const unsigned int K[], const unsigned int len);