OSDN Git Service

exynos: add C++ support to exynos_drmif header
authorTobias Jakobi <tjakobi@math.uni-bielefeld.de>
Wed, 5 Apr 2017 14:22:24 +0000 (16:22 +0200)
committerEmil Velikov <emil.l.velikov@gmail.com>
Sat, 8 Apr 2017 20:33:30 +0000 (21:33 +0100)
Add the usual extern "C" when compiling in C++ mode.

Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
exynos/exynos_drmif.h

index 626e399..154439b 100644 (file)
 #include <stdint.h>
 #include "exynos_drm.h"
 
+#if defined(__cplusplus)
+extern "C" {
+#endif
+
 struct exynos_device {
        int fd;
 };
@@ -109,4 +113,8 @@ int exynos_handle_event(struct exynos_device *dev,
                                struct exynos_event_context *ctx);
 
 
+#if defined(__cplusplus)
+}
+#endif
+
 #endif /* EXYNOS_DRMIF_H_ */