hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/arch/xtensa/boot/lib/zmem.c
....@@ -4,13 +4,14 @@
44 /* bits taken from ppc */
55
66 extern void *avail_ram, *end_avail;
7
+void gunzip(void *dst, int dstlen, unsigned char *src, int *lenp);
78
8
-void exit (void)
9
+static void exit(void)
910 {
1011 for (;;);
1112 }
1213
13
-void *zalloc(unsigned size)
14
+static void *zalloc(unsigned int size)
1415 {
1516 void *p = avail_ram;
1617