make fat.handler build again with debug enabled
[tangerine.git] / compiler / arossupport / include / arossupportbase.h
blobfb6ad31cd281ac7f538a66b2b0ccff2c5c76a98c
1 #ifndef AROS_AROSSUPPORTBASE_H
2 #define AROS_AROSSUPPORTBASE_H
4 #ifndef EXEC_LISTS_H
5 #include <exec/lists.h>
6 #endif
8 /*
9 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
10 $Id$
13 #include <stdarg.h>
15 struct AROSSupportBase
17 void * StdOut;
18 int (*kprintf)(const char *, ...);
19 int (*rkprintf)(const char *, const char *, int, const char *, ...);
20 int (*vkprintf)(const char *, va_list);
21 void * DebugConfig;
22 struct MinList AllocMemList;
25 #endif /* AROS_AROSSUPPORTBASE_H */