/* * Copyright 2007, Ingo Weinhold, bonefish@cs.tu-berlin.de. * Copyright 2020, Shubham Bhagat, shubhambhagat111@yahoo.com * All rights reserved. Distributed under the terms of the MIT License. */ #ifndef _SYSTEM_DEPENDENCIES_H_ #define _SYSTEM_DEPENDENCIES_H_ #ifdef FS_SHELL // This needs to be included before the fs_shell wrapper #include "fssh_api_wrapper.h" #include "fssh_auto_deleter.h" #include "fssh_kernel_priv.h" #include "Debug.h" #ifdef __cplusplus extern "C" { #endif typedef unsigned char uuid_t[16]; void uuid_generate(uuid_t out); #ifdef __cplusplus } #endif #else // !FS_SHELL #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "Debug.h" #include #include #include #include #include #include #include #endif // !FS_SHELL #endif // _SYSTEM_DEPENDENCIES