| 104 | |
| 105 | #ifndef HAVE_SNPRINTF |
| 106 | int snprintf(char *str, size_t size, const char *format, ...) |
| 107 | { |
| 108 | int res; |
| 109 | va_list ap; |
| 110 | va_start(ap,format); |
| 111 | res=vsnprintf(str, size, format, ap); |
| 112 | va_end(ap); |
| 113 | return res; |
| 114 | } |
| 115 | #endif |
| 116 | |
| 117 | #ifndef HAVE_VSNPRINTF |
no test coverage detected