summary refs log tree commit diff
path: root/bin/color.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-01-28 12:27:34 -0500
committerJune McEnroe <june@causal.agency>2018-01-28 12:27:34 -0500
commit14a68195833bfb73033987b6333c64fbd7b9888a (patch)
tree50e115c2f7566ff3c702fa8cc1e8cef155c5a36a /bin/color.c
parentAdd color.c (diff)
downloadsrc-14a68195833bfb73033987b6333c64fbd7b9888a.tar.gz
src-14a68195833bfb73033987b6333c64fbd7b9888a.zip
Add init function to fb interface
Diffstat (limited to '')
-rw-r--r--bin/color.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/color.c b/bin/color.c
index 3e6c3b5a..75118226 100644
--- a/bin/color.c
+++ b/bin/color.c
@@ -2,6 +2,9 @@
 
 static uint32_t color;
 
+void init() {
+}
+
 void draw(uint32_t *buf, uint32_t xres, uint32_t yres) {
     for (uint32_t i = 0; i < xres * yres; ++i) {
         buf[i] = color;