1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-11-23 20:21:25 +00:00
Files
AROS-v0/compiler/crt/__stdlib_intbase.h
deadwood d9c9ccd947 Rename CrtUtil -> Stdlib
This name better describes library purpose
2021-12-13 10:13:45 +01:00

30 lines
632 B
C

/*
Copyright (C) 2021, The AROS Development Team. All rights reserved.
*/
#ifndef __STDLIB_INTBASE_H
#define __STDLIB_INTBASE_H
#include <exec/libraries.h>
#include <dos/dos.h>
#include <libraries/stdlib.h>
#include <devices/timer.h>
struct StdlibIntBase
{
struct StdlibBase lib;
/* optional libs */
struct LocaleBase *_LocaleBase;
struct IntuitionBase *_IntuitionBase;
struct Device *_TimerBase;
struct timerequest timereq;
struct MsgPort timeport;
};
struct StdlibBase * __aros_getbase_StdlibBase();
#endif //__STDLIB_INTBASE_H