summary refs log tree commit diff
path: root/bin/color.c
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-01-28 12:27:34 -0500
committerJune McEnroe <programble@gmail.com>2018-01-28 12:27:34 -0500
commitd3ded8148b27171ddb9de00edb0415ea3879a81f (patch)
tree43deaa6a09c07f4157c142858879df9b54b33eb1 /bin/color.c
parentAdd color.c (diff)
downloadsrc-d3ded8148b27171ddb9de00edb0415ea3879a81f.tar.gz
src-d3ded8148b27171ddb9de00edb0415ea3879a81f.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;