added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / devs / nil_handler / nil_handler_gcc.h
blob5283a63fb0c752f060951515e96f1e624b15b400
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang:
7 */
8 #ifndef NIL_HANDLER_GCC_H
9 #define NIL_HANDLER_GCC_H
10 #include <aros/libcall.h>
11 #include <exec/execbase.h>
12 #include <exec/devices.h>
13 #include <dos/dos.h>
15 struct nilbase
17 struct Device device;
18 struct DosLibrary *dosbase;
19 BPTR seglist;
22 #ifdef DOSBase
23 #undef DOSBase
24 #endif
25 #define DOSBase nilbase->dosbase
27 #endif