summaryrefslogtreecommitdiffstats
path: root/src/printf.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-03-11 09:51:03 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-03-11 13:41:29 -0400
commit2c3ef3a06ee1f951f6d68be6d0d3f6a1822b05b7 (patch)
tree1474b759607c47db6c7cc95986a4f9ef9956ba18 /src/printf.c
parentf9e9e5f9013cc2e9d238cbcad9a1dfaf3a529aac (diff)
downloadbfs-2c3ef3a06ee1f951f6d68be6d0d3f6a1822b05b7.tar.xz
Re-run include-what-you-use
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c
index 34ed606..487f039 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -2,6 +2,7 @@
// SPDX-License-Identifier: 0BSD
#include "printf.h"
+#include "alloc.h"
#include "bfstd.h"
#include "bftw.h"
#include "color.h"
@@ -14,10 +15,10 @@
#include "mtab.h"
#include "pwcache.h"
#include "stat.h"
-#include "xtime.h"
#include <errno.h>
#include <grp.h>
#include <pwd.h>
+#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>