syslog.h 366 B

1234567891011
  1. #ifndef __SYSLOG_H__
  2. #define __SYSLOG_H__
  3. #if defined(HARDWARE_BT6711) && !defined(BT6702_SERVICE)
  4. void openlog(void);
  5. void syslog(char *fmt, ...);
  6. void syslog_str(char *msg);
  7. #else // defined(HARDWARE_BT6711) && !defined(BT6702_SERVICE)
  8. #define openlog()
  9. #define syslog_str(msg)
  10. #endif // defined(HARDWARE_BT6711) && !defined(BT6702_SERVICE)
  11. #endif // __SYSLOG_H__