Revision 00aa0040 qemu-common.h

b/qemu-common.h
200 200
int qemu_pipe(int pipefd[2]);
201 201
#endif
202 202

  
203
#ifdef _WIN32
204
#define qemu_recv(sockfd, buf, len, flags) recv(sockfd, (void *)buf, len, flags)
205
#else
206
#define qemu_recv(sockfd, buf, len, flags) recv(sockfd, buf, len, flags)
207
#endif
208

  
203 209
/* Error handling.  */
204 210

  
205 211
void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);

Also available in: Unified diff