minix/drivers/memory/imgrd.c

15 lines
164 B
C
Raw Normal View History

/*
Ramdisk that is part of the image
*/
#include <stddef.h>
#include "local.h"
unsigned char imgrd[]=
{
#include "image.c"
};
size_t imgrd_size= sizeof(imgrd);