blob: 024ba4459441a356a5fe284a739496a2b462a653 [file] [log] [blame]
The Android Open Source Project52d4c302009-03-03 19:29:09 -08001/*
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 */
13void wsLog(const char* format, ...)
14 #if defined(__GNUC__)
15 __attribute__ ((format(printf, 1, 2)))
16 #endif
17 ;
18
19#endif /*_WRAPSIM_LOG_H*/