tools/toollib: remove from main Makefile.in
[AROS.git] / compiler / posixc / include / libraries / posixc.h
blob59fc0f6efdfd20b6bae4be706758db875fbf6b0f
1 #ifndef _LIBRARIES_POSIXC_H
2 #define _LIBRARIES_POSIXC_H
4 /*
5 Copyright © 2010-2013, The AROS Development Team. All rights reserved.
6 $Id$
8 Public part of PosixC libbase.
9 Take care of backwards compatibility when changing something in this file.
12 #include <exec/libraries.h>
13 #include <libraries/stdc.h>
14 #include <libraries/stdcio.h>
16 #define _STDIO_H_NOMACRO
17 #include <stdio.h>
19 struct PosixCBase
21 struct Library lib;
22 struct StdCBase *StdCBase;
23 struct StdCIOBase *StdCIOBase;
25 FILE *_stdin, *_stdout, *_stderr;
28 struct PosixCBase *__aros_getbase_PosixCBase(void);
30 #endif /* _LIBRARIES_POSIXC_H */