The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 1 | /* |
2 | * Copyright 2007 The Android Open Source Project | ||||
3 | * | ||||
4 | * Logging. | ||||
5 | */ | ||||
6 | #ifndef _WRAPSIM_LOG_H | ||||
7 | #define _WRAPSIM_LOG_H | ||||
8 | |||||
9 | |||||
10 | /* | ||||
11 | * Log debug info. | ||||
12 | */ | ||||
13 | void wsLog(const char* format, ...) | ||||
14 | #if defined(__GNUC__) | ||||
15 | __attribute__ ((format(printf, 1, 2))) | ||||
16 | #endif | ||||
17 | ; | ||||
18 | |||||
19 | #endif /*_WRAPSIM_LOG_H*/ |