haiku/headers/private/system/symbol_versioning.h
Ingo Weinhold 1f3f5ca265 Fixed header guard.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34325 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-11-27 21:10:08 +00:00

21 lines
561 B
C

/*
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
* Distributed under the terms of the MIT License.
*/
#ifndef _SYSTEM_SYMBOL_VERSIONING_H
#define _SYSTEM_SYMBOL_VERSIONING_H
#include <BeBuild.h>
#ifdef _KERNEL_MODE
# define DEFINE_LIBROOT_KERNEL_SYMBOL_VERSION(function, symbol, version) \
B_DEFINE_SYMBOL_VERSION(function, symbol "KERNEL_" version)
#else
# define DEFINE_LIBROOT_KERNEL_SYMBOL_VERSION(function, symbol, version) \
B_DEFINE_SYMBOL_VERSION(function, symbol "LIBROOT_" version)
#endif
#endif /* _SYSTEM_SYMBOL_VERSIONING_H */