Chromium Code Reviews| Index: include/dev/display.h |
| diff --git a/include/dev/display.h b/include/dev/display.h |
| index 8e35fafaf0007103053c0a417029c079dd47d389..e1eeb0608f3144aeba8e9b810c92c8db01a86393 100644 |
| --- a/include/dev/display.h |
| +++ b/include/dev/display.h |
| @@ -26,6 +26,9 @@ |
| #include <stdbool.h> |
| #include <sys/types.h> |
| #include <inttypes.h> |
| +#include <compiler.h> |
| + |
| +__BEGIN_CDECLS; |
|
travisg1
2016/03/03 18:47:18
These macros don't need the trailing semicolon, th
cdotstout
2016/03/03 18:50:33
Done.
|
| int display_init(void *framebuffer); |
| int display_enable(bool enable); |
| @@ -54,5 +57,7 @@ struct display_info { |
| status_t display_get_info(struct display_info *info); |
| +__END_CDECLS; |
| + |
| #endif |