samples: More code reorganization.

(cherry picked from commit ef0aa38958)
This commit is contained in:
Marcelo Roberto Jimenez
2010-11-18 12:02:38 -02:00
parent b3fdad3988
commit f088f94803
10 changed files with 1058 additions and 1360 deletions

View File

@@ -230,6 +230,16 @@ void SampleUtil_StateUpdate(
/*! [in] . */
eventType type);
/*!
* \brief Prints a string to standard out.
*/
void linux_print(const char *format, ...)
#if (__GNUC__ >= 3)
/* This enables printf like format checking by the compiler */
__attribute__((format (__printf__, 1, 2)))
#endif
;
#ifdef __cplusplus
};
#endif /* __cplusplus */