source: trunk/minix/drivers/memory/imgrd.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 172 bytes
RevLine 
[9]1/*
2Ramdisk that is part of the image
3*/
4
5#include <stddef.h>
6
7#include "local.h"
8
9unsigned char imgrd[]=
10{
11#include "ramdisk/image.c"
12};
13
14size_t imgrd_size= sizeof(imgrd);
Note: See TracBrowser for help on using the repository browser.