Implement new v3_memalloc romvec interface for allocating aligned memory.
[openbios/afaerber.git] / include / libopenbios / aout_load.h
blobb462e1c86dbf7a553b69ba7ba2df87319ff89bde
1 /*
2 * Creation Date: <2010/03/22 18:00:00 mcayland>
3 * Time-stamp: <2010/03/22 18:00:00 mcayland>
5 * <aout_load.h>
7 * a.out loader
9 * Copyright (C) 2010 Mark Cave-Ayland (mark.cave-ayland@siriusit.co.uk)
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation
17 #ifndef _H_AOUTLOAD
18 #define _H_AOUTLOAD
20 #include "arch/common/a.out.h"
21 #include "libopenbios/sys_info.h"
23 extern int is_aout(struct exec *ehdr);
24 extern int aout_load(struct sys_info *info, ihandle_t dev);
25 extern void aout_init_program(void);
27 #endif /* _H_AOUTLOAD */