xref: /haiku/src/add-ons/kernel/file_systems/bfs/system_dependencies.h (revision b9a5b9a6ee494261f2882bfc0ee9fde92282bef6)
1 /*
2  * Copyright 2007, Ingo Weinhold, bonefish@cs.tu-berlin.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #ifndef _SYSTEM_DEPENDENCIES_H
7 #define _SYSTEM_DEPENDENCIES_H
8 
9 
10 #ifdef BFS_SHELL
11 
12 #include "fssh_api_wrapper.h"
13 
14 #else	// !BFS_SHELL
15 
16 #include <ctype.h>
17 #include <errno.h>
18 #include <null.h>
19 #include <string.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <time.h>
23 #include <unistd.h>
24 
25 #include <ByteOrder.h>
26 
27 #ifndef _BOOT_MODE
28 #include <driver_settings.h>
29 #include <fs_attr.h>
30 #include <fs_cache.h>
31 #include <fs_index.h>
32 #include <fs_info.h>
33 #include <fs_interface.h>
34 #include <fs_query.h>
35 #include <fs_volume.h>
36 #include <Drivers.h>
37 #include <KernelExport.h>
38 #include <NodeMonitor.h>
39 #include <SupportDefs.h>
40 #include <TypeConstants.h>
41 #endif	// _BOOT_MODE
42 
43 #include <util/DoublyLinkedList.h>
44 #include <util/kernel_cpp.h>
45 #include <util/Stack.h>
46 
47 #endif	// !BFS_SHELL
48 
49 
50 #endif	// _SYSTEM_DEPENDENCIES_H
51