25 lines
495 B
Diff
25 lines
495 B
Diff
From b2330784e89a54dfdc5c2ddcefb904841eb49426 Mon Sep 17 00:00:00 2001
|
|
From: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
|
|
Date: Sun, 14 Apr 2024 13:42:09 +0200
|
|
Subject: [PATCH] Fix missing inclusion of string.h in hpwd.c
|
|
|
|
---
|
|
hpwd.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/hpwd.c b/hpwd.c
|
|
index cd3b100..84c34cf 100644
|
|
--- a/hpwd.c
|
|
+++ b/hpwd.c
|
|
@@ -24,6 +24,7 @@
|
|
# endif
|
|
|
|
# include <stdio.h>
|
|
+# include <string.h>
|
|
|
|
# include "hfs.h"
|
|
# include "hcwd.h"
|
|
--
|
|
2.44.0
|
|
|