dirs for OSS
[minix.git] / boot / image.h
blob4afc8dcc57b8a2841781ffe418f23e5af6e75e18
1 /* image.h - Info between installboot and boot. Author: Kees J. Bot
2 */
4 #define IM_NAME_MAX 63
6 struct image_header {
7 char name[IM_NAME_MAX + 1]; /* Null terminated. */
8 struct exec process;
9 };
12 * $PchId: image.h,v 1.4 1995/11/27 22:23:12 philip Exp $