Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: include/dev/display.h

Issue 1760223002: [display] Add __BEGIN_CDECLS (Closed) Base URL: https://github.com/littlekernel/lk.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698