kernel/arch/xtensa/boot/lib/zmem.c
.. .. @@ -4,13 +4,14 @@ 4 4 /* bits taken from ppc */ 5 5 6 6 extern void *avail_ram, *end_avail; 7 +void gunzip(void *dst, int dstlen, unsigned char *src, int *lenp);7 8 8 -void exit (void)9 +static void exit(void)9 10 { 10 11 for (;;); 11 12 } 12 13 13 -void *zalloc(unsigned size)14 +static void *zalloc(unsigned int size)14 15 { 15 16 void *p = avail_ram; 16 17