Files
android_development/simulator/wrapsim/Log.h
The Android Open Source Project 52d4c30ca5 auto import from //depot/cupcake/@135843
2009-03-03 19:29:09 -08:00

20 lines
299 B
C

/*
* Copyright 2007 The Android Open Source Project
*
* Logging.
*/
#ifndef _WRAPSIM_LOG_H
#define _WRAPSIM_LOG_H
/*
* Log debug info.
*/
void wsLog(const char* format, ...)
#if defined(__GNUC__)
__attribute__ ((format(printf, 1, 2)))
#endif
;
#endif /*_WRAPSIM_LOG_H*/