source: trunk/minix/boot/image.h@ 9

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

Minix 3.1.2a

File size: 263 bytes
Line 
1/* image.h - Info between installboot and boot. Author: Kees J. Bot
2 */
3
4#define IM_NAME_MAX 63
5
6struct image_header {
7 char name[IM_NAME_MAX + 1]; /* Null terminated. */
8 struct exec process;
9};
10
11/*
12 * $PchId: image.h,v 1.4 1995/11/27 22:23:12 philip Exp $
13 */
Note: See TracBrowser for help on using the repository browser.