From abf5c24bea874bad397923467139f6232addc853 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Sat, 28 Feb 2026 23:35:42 +0000 Subject: [PATCH] Move stdint.h to top --- tar.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tar.c b/tar.c index fde54bf..fd3f88b 100755 --- a/tar.c +++ b/tar.c @@ -1,6 +1,8 @@ /****************************************************************************** * @file tar.c *****************************************************************************/ +#include "stdint.h" + #include #include #include @@ -10,7 +12,6 @@ #include "lib.h" #include "report.h" -#include "stdint.h" #include "tar.h" struct tar_state *state = 0; -- 2.34.1