mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 16:50:06 +02:00
22 lines
719 B
Plaintext
22 lines
719 B
Plaintext
From 343d422acde80402cbd7730c74005e29a8f7fade Mon Sep 17 00:00:00 2001
|
|
From: Begasus <begasus@gmail.com>
|
|
Date: Fri, 26 May 2023 13:32:39 +0200
|
|
Subject: Include stdio.h for FILE
|
|
|
|
|
|
diff --git a/programs/util.h b/programs/util.h
|
|
index 8234646..0404999 100644
|
|
--- a/programs/util.h
|
|
+++ b/programs/util.h
|
|
@@ -21,6 +21,7 @@ extern "C" {
|
|
******************************************/
|
|
#include "platform.h" /* PLATFORM_POSIX_VERSION, ZSTD_NANOSLEEP_SUPPORT, ZSTD_SETPRIORITY_SUPPORT */
|
|
#include <stddef.h> /* size_t, ptrdiff_t */
|
|
+#include <stdio.h> /* FILE */
|
|
#include <sys/types.h> /* stat, utime */
|
|
#include <sys/stat.h> /* stat, chmod */
|
|
#include "../lib/common/mem.h" /* U64 */
|
|
--
|
|
2.37.3
|
|
|