Install crosstools into its own directory. Tools dir much cleaner now.
[AROS.git] / compiler / clib / __filesystem_support.h
blob0216a675074de62f634edb96e5b304ea1ecb8d38
1 /*
2 Copyright © 2009, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: dos support functions for internal use
6 */
8 #ifndef CLIB_AROSSUPPORT_PROTOS_H
9 # include <proto/arossupport.h>
10 #endif
12 #ifdef AROS_DOS_PACKETS
14 #define InitIOFS(x,y,z) do { kprintf("InitIOFS! %s:%s:%d", __FILE__, __FUNCTION__, __LINE__); for(;;); } while(0)
15 #define DoIOFS(a,b,c,d) kprintf("DoIOFS! %s:%s:%d", __FILE__, __FUNCTION__, __LINE__)
17 #else
19 void InitIOFS(struct IOFileSys *iofs, ULONG type,
20 struct DosLibrary *DOSBase);
21 LONG DoIOFS(struct IOFileSys *iofs, struct DevProc *dvp, CONST_STRPTR name,
22 struct DosLibrary *DOSBase);
23 #endif
25 CONST_STRPTR StripVolume(CONST_STRPTR name);