diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-17 13:06:51 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-17 13:11:00 -0600 |
commit | 037df4afccb4577351f8155a0b9a36825ac7eb15 (patch) | |
tree | b03f0e5abfd0602df56d7548c161966de8e74895 /lib9p/tests | |
parent | ef72481ffee3403dc50e93b5686c30ed841e0257 (diff) |
Tidy #includes: We don't use PRI* anymore
Diffstat (limited to 'lib9p/tests')
-rw-r--r-- | lib9p/tests/test_server/fs_whoami.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib9p/tests/test_server/fs_whoami.c b/lib9p/tests/test_server/fs_whoami.c index 8d9752a..7e1d635 100644 --- a/lib9p/tests/test_server/fs_whoami.c +++ b/lib9p/tests/test_server/fs_whoami.c @@ -4,8 +4,9 @@ * SPDX-License-Identifier: AGPL-3.0-or-later */ -#include <stdio.h> /* for snprintf() */ -#include <stdlib.h> /* for realloc(), free() */ +#include <inttypes.h> /* for PRI* */ +#include <stdio.h> /* for snprintf() */ +#include <stdlib.h> /* for realloc(), free() */ #include <libmisc/alloc.h> |