aboutsummaryrefslogtreecommitdiff
path: root/kernel/hsv.c
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2011-11-06 19:54:55 +0000
committerDimitri Sokolyuk <demon@dim13.org>2011-11-06 19:54:55 +0000
commit0137b9fed4b75376e108e6182a99f1cce6767747 (patch)
treebc028e1104da6526ec37024699b9b05c60803cd1 /kernel/hsv.c
parentdd4d5ba09d5639d105594c835d9731788c17bc98 (diff)
we do not use anything from inttypes.h, so replace it with stdint.h
Diffstat (limited to 'kernel/hsv.c')
-rw-r--r--kernel/hsv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/hsv.c b/kernel/hsv.c
index f41bf09..8ba8323 100644
--- a/kernel/hsv.c
+++ b/kernel/hsv.c
@@ -1,7 +1,7 @@
/* $Id$ */
/* public domain */
-#include <inttypes.h>
+#include <stdint.h>
void
hsv(uint8_t *r, uint8_t *g, uint8_t *b, uint16_t h, uint8_t s, uint8_t v)