The gpio-mockup support library should be usable from C++ code too.
Add extern "C" to the header.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
#ifndef __GPIO_MOCKUP_H__
#define __GPIO_MOCKUP_H__
+#ifdef __cplusplus
+extern "C" {
+#endif
+
struct gpio_mockup;
#define GPIO_MOCKUP_FLAG_NAMED_LINES (1 << 0)
int gpio_mockup_set_pull(struct gpio_mockup *ctx, unsigned int chip_idx,
unsigned int line_offset, int pull);
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
#endif /* __GPIO_MOCKUP_H__ */