Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports
Path: blob/main/multimedia/dvb-apps/files/patch-include_frontend.h
18157 views
1
--- include/frontend.h.orig 2014-03-21 19:26:36 UTC
2
+++ include/frontend.h
3
@@ -28,8 +28,14 @@
4
#ifndef _DVBFRONTEND_H_
5
#define _DVBFRONTEND_H_
6
7
-#include <asm/types.h>
8
-
9
+#ifdef __FreeBSD__
10
+#define __u8 uint8_t
11
+#define __u16 uint16_t
12
+#define __u32 uint32_t
13
+#define __u64 uint64_t
14
+#define __s16 int16_t
15
+#define __s32 int32_t
16
+#endif
17
18
typedef enum fe_type {
19
FE_QPSK,
20
21