From 5822daa63de641419dcecd19e81f1c4190bd1cce Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 15 Jan 2013 18:58:02 +0100 Subject: output_internal, ...: add extern "C" --- src/page.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/page.h') diff --git a/src/page.h b/src/page.h index 8a3aaf396..8629298cd 100644 --- a/src/page.h +++ b/src/page.h @@ -53,6 +53,10 @@ struct page { unsigned char data[sizeof(long)]; }; +#ifdef __cplusplus +extern "C" { +#endif + /** * Creates a new #page object, and copies data from the specified * buffer. It is initialized with a reference count of 1. @@ -91,4 +95,8 @@ page_ref(struct page *page); bool page_unref(struct page *page); +#ifdef __cplusplus +} +#endif + #endif -- cgit v1.2.3