Moved fat-handler sources to rom/filesys.
[AROS.git] / workbench / fs / ntfs / startup.c
blobcc5b668f0fb79259ffe1e1007eea323457096884
1 /*
2 * ntfs.handler - New Technology FileSystem handler
4 * Copyright © 2012 The AROS Development Team
6 * This program is free software; you can redistribute it and/or modify it
7 * under the same terms as AROS itself.
9 * $Id $
12 #include <exec/execbase.h>
14 #include "debug.h"
16 #ifdef __MORPHOS__
17 ULONG __abox__ = 1;
18 #endif
20 #ifndef __AROS__
21 struct ExecBase *SysBase;
22 #endif
24 extern void handler(void);
26 void startup (void) {
27 #ifndef __AROS__
28 SysBase = *(struct ExecBase **)4L;
29 #endif
30 D(bug("[NTFS]: %s()\n", __PRETTY_FUNCTION__));
32 D(bug("[NTFS] %s: handler starting..\n", __PRETTY_FUNCTION__));
33 handler();