| 123456789101112 | 
							- #ifndef __SYSLOG_H__
 
- #define __SYSLOG_H__
 
- #if defined(HARDWARE_BT6711) && !defined(BT6702_SERVICE)
 
- void openlog(void);
 
- void syslog(char *fmt, ...);
 
- void syslog_str(char *msg);
 
- #else // defined(HARDWARE_BT6711) && !defined(BT6702_SERVICE)
 
- #define openlog()
 
- #define syslog(...)
 
- #define syslog_str(msg)
 
- #endif // defined(HARDWARE_BT6711) && !defined(BT6702_SERVICE)
 
- #endif // __SYSLOG_H__
 
 
  |