23 lines
350 B
C
23 lines
350 B
C
|
/*
|
||
|
* Copyright 2005, Axel Dörfler, axeld@pinc-software.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _KERNEL_BLOCK_CACHE_H
|
||
|
#define _KERNEL_BLOCK_CACHE_H
|
||
|
|
||
|
|
||
|
#include <SupportDefs.h>
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern status_t block_cache_init(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _KRENEL_BLOCK_CACHE_H */
|