diff options
| author | Markus Uhlin <markus@nifty-networks.net> | 2025-10-17 04:04:02 +0200 |
|---|---|---|
| committer | Markus Uhlin <markus@nifty-networks.net> | 2025-10-17 04:04:02 +0200 |
| commit | 32449e7db3f1b79cdeecd5017888d1325d03dcd4 (patch) | |
| tree | 3eb432664c7ef083b4ff52b99a327024465a2d3a | |
| parent | f5bf5aca870c475d0621003b43eacdde808539c7 (diff) | |
Added includes
| -rw-r--r-- | FICS/copyfile.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/FICS/copyfile.c b/FICS/copyfile.c index 524a036..c6035b2 100644 --- a/FICS/copyfile.c +++ b/FICS/copyfile.c @@ -1,10 +1,12 @@ // SPDX-FileCopyrightText: 2025 Markus Uhlin <maxxe@rpblc.net> // SPDX-License-Identifier: ISC +#include <sys/types.h> #include <sys/stat.h> #include <err.h> #include <fcntl.h> +#include <md5.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |
