added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / arch / .unmaintained / amiga / boot / ils.h
blob36e1d13632f172d215f92ee6d9d7c8ad4026b82a
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Amiga bootloader -- InternalLoadSeg support routines
6 Lang: C
7 */
9 #include <aros/asmcall.h>
11 AROS_UFP4(LONG, ils_read,
12 AROS_UFHA(BPTR, handle, D1),
13 AROS_UFHA(void *, buffer, D2),
14 AROS_UFHA(LONG, length, D3),
15 AROS_UFHA(struct DosLibrary *, DOSBase, A6));
17 AROS_UFP3(void *, ils_alloc,
18 AROS_UFHA(ULONG, size, D0),
19 AROS_UFHA(ULONG, attrib, D1),
20 AROS_UFHA(struct ExecBase *, SysBase, A6));
22 AROS_UFP3(void, ils_free,
23 AROS_UFHA(void *, block, A1),
24 AROS_UFHA(ULONG, size, D0),
25 AROS_UFHA(struct ExecBase *, SysBase, A6));