Make UEFI boot-platform build again
[haiku.git] / headers / private / bluetooth / btDebug.h
blob55a26e22eedb396ab6a9c03d6bd74f6a4f8ad43f
1 /*
2 * Copyright 2015-2016 Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 */
6 #ifndef _BTDEBUG_H
7 #define _BTDEBUG_H
10 #ifdef DEBUG
11 # define TRACE(x...) dprintf("bt: " x)
12 #else
13 # define TRACE(x...) ;
14 #endif
16 #define ERROR(x...) dprintf("bt: " x)
17 #define CALLED(x...) TRACE("bt: CALLED %s\n", __PRETTY_FUNCTION__)
20 #endif /* _BTDEBUG_H */