View | Details | Raw Unified | Return to bug 65933 | Differences between
and this patch

Collapse All | Expand All

(-)grub/files/patch-ufs2 (-2 / +2 lines)
Lines 587-598 Link Here
587
+ * __uint* constants already defined in
587
+ * __uint* constants already defined in
588
+ * FreeBSD's /usr/include/machine/_types.h
588
+ * FreeBSD's /usr/include/machine/_types.h
589
+ */
589
+ */
590
+#ifndef _MACHINE__TYPES_H_
590
+#if !defined(_MACHINE__TYPES_H_) && !defined(_MACHINE_ANSI_H_)
591
+typedef uint8_t                __uint8_t;
591
+typedef uint8_t                __uint8_t;
592
+typedef uint16_t               __uint16_t;
592
+typedef uint16_t               __uint16_t;
593
+typedef uint32_t               __uint32_t;
593
+typedef uint32_t               __uint32_t;
594
+typedef uint64_t               __uint64_t;
594
+typedef uint64_t               __uint64_t;
595
+#endif /* _MACHINE__TYPES_H_ */
595
+#endif /* !_MACHINE__TYPES_H_ && !_MACHINE_ANSI_H_ */
596
+
596
+
597
+#define i_size di_size
597
+#define i_size di_size
598
+
598
+

Return to bug 65933