diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-08-30 22:49:03 -0400 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-08-30 22:49:03 -0400 |
| commit | 094184621b0bcc27c2a977ee0dd8bdd9931ec448 (patch) | |
| tree | 3b6eb1b685339773c488bc012030aba07254fba1 /include | |
| parent | beb3e03072c706554acdfdd38dc7fb920ff2bb41 (diff) | |
| download | math-utils-094184621b0bcc27c2a977ee0dd8bdd9931ec448.tar.gz | |
Code cleanup+documentation
Diffstat (limited to 'include')
| -rw-r--r-- | include/cdf.h | 1 | ||||
| -rw-r--r-- | include/cumsum.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/cdf.h b/include/cdf.h index 956e630..6c218cf 100644 --- a/include/cdf.h +++ b/include/cdf.h @@ -8,6 +8,7 @@ #include <unistd.h> #include <stdio.h> #include <getopt.h> +#include <ctype.h> #include <string.h> #include <stdint.h> #include <assert.h> diff --git a/include/cumsum.h b/include/cumsum.h index 9761a08..50ff0b1 100644 --- a/include/cumsum.h +++ b/include/cumsum.h @@ -5,6 +5,7 @@ #define H_CDF #include <stdlib.h> +#include <errno.h> #include <unistd.h> #include <stdio.h> #include <ctype.h> |