1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <inttypes.h> 4 5 #include "xg_private.h" 6 #include "xc_dom_decompress_unsafe.h" 7 8 #include "../../xen/common/unlzma.c" 9 xc_try_lzma_decode(struct xc_dom_image * dom,void ** blob,size_t * size)10int xc_try_lzma_decode( 11 struct xc_dom_image *dom, void **blob, size_t *size) 12 { 13 return xc_dom_decompress_unsafe(unlzma, dom, blob, size); 14 } 15