projects
/
platform
/
upstream
/
pixman.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d76aab4
)
Add extern "C" guards for c++
author
Alexander Larsson
<alexl@redhat.com>
Tue, 9 Feb 2010 12:22:38 +0000
(13:22 +0100)
committer
Alexander Larsson
<alexl@redhat.com>
Tue, 9 Feb 2010 12:22:38 +0000
(13:22 +0100)
pixman/pixman.h
patch
|
blob
|
history
diff --git
a/pixman/pixman.h
b/pixman/pixman.h
index
4fce706
..
5e35d92
100644
(file)
--- a/
pixman/pixman.h
+++ b/
pixman/pixman.h
@@
-71,6
+71,10
@@
SOFTWARE.
#include <pixman-version.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/*
* Standard integers
*/
@@
-909,4
+913,8
@@
void pixman_rasterize_trapezoid (pixman_image_t *image,
int x_off,
int y_off);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* PIXMAN_H__ */