From b7bdad5b2594b847a7d9c70970505c45dabca462 Mon Sep 17 00:00:00 2001 From: jiangzhengwenjz Date: Tue, 16 Jul 2019 06:55:14 +0800 Subject: mark cable_car_util functions as static --- src/cable_car_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/cable_car_util.c b/src/cable_car_util.c index 7bad79079..c57038e1c 100644 --- a/src/cable_car_util.c +++ b/src/cable_car_util.c @@ -1,6 +1,6 @@ #include "global.h" -void CableCarUtil_FillWrapped(void *dest, u16 value, u8 left, u8 top, u8 width, u8 height) +static void CableCarUtil_FillWrapped(void *dest, u16 value, u8 left, u8 top, u8 width, u8 height) { u8 i; u8 j; @@ -18,7 +18,7 @@ void CableCarUtil_FillWrapped(void *dest, u16 value, u8 left, u8 top, u8 width, } } -void CableCarUtil_CopyWrapped(void *dest, const u16 *src, u8 left, u8 top, u8 width, u8 height) +static void CableCarUtil_CopyWrapped(void *dest, const u16 *src, u8 left, u8 top, u8 width, u8 height) { u8 i; u8 j; -- cgit v1.2.3