mactel-boot/mactel-boot-c99.patch
Fedora Release Engineering 3d5ed19498 Unretirement request: pagure.io/releng/issue/12642
Revert "Orphaned for 6+ weeks"

This reverts commit da1c3e396c.

Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2025-03-20 16:28:59 +00:00

15 lines
381 B
Diff

Include <unistd.h> for the close function. This prevents a future
build failure due to an implicit function declaration.
diff --git a/bless.c b/bless.c
index 4d107feff0c0ece4..60d426e897c37e4d 100644
--- a/bless.c
+++ b/bless.c
@@ -25,6 +25,7 @@
#include <sys/ioctl.h>
#include <sys/vfs.h>
#include <fcntl.h>
+#include <unistd.h>
#define HFSPLUS_IOC_BLESS _IO('h', 0x80)