forked from github/server
24 lines
533 B
C
24 lines
533 B
C
|
/* vi: set ts=2:
|
||
|
+-------------------+ Enno Rehling <enno@eressea.de>
|
||
|
| Eressea PBEM host | Christian Schlittchen <corwin@amber.kn-bremen.de>
|
||
|
| (c) 1998 - 2008 | Katja Zedel <katze@felidae.kn-bremen.de>
|
||
|
+-------------------+
|
||
|
This program may not be used, modified or distributed
|
||
|
without prior permission by the authors of Eressea.
|
||
|
*/
|
||
|
|
||
|
#ifndef H_KERNEL_BINSTORE
|
||
|
#define H_KERNEL_BINSTORE
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include <util/storage.h>
|
||
|
|
||
|
extern const storage binary_store;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif
|