1234567891011121314151617181920212223242526272829 |
- #ifndef LOGGING_MOSQ_H
- #define LOGGING_MOSQ_H
- #include "mosquitto.h"
- #ifndef __GNUC__
- #define __attribute__(attrib)
- #endif
- int log__printf(struct mosquitto *mosq, unsigned int level, const char *fmt, ...) __attribute__((format(printf, 3, 4)));
- #endif
|