repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
3.1.7 branch.
[minix.git]
/
drivers
/
memory
/
imgrd.c
blob
947b7ffc300a6026b34f89ff90d0c20e40a51eac
1
/*
2
Ramdisk that is part of the image
3
*/
4
5
#include <stddef.h>
6
7
#include
"local.h"
8
9
unsigned char
imgrd
[]=
10
{
11
#include
"image.c"
12
};
13
14
size_t
imgrd_size
=
sizeof
(
imgrd
);