simple-socket library 1.2.0
TempFailure.h
Go to the documentation of this file.
1#ifndef NET_TempFailure_h__
2#define NET_TempFailure_h__
3
4#include <unistd.h>
5#include <errno.h>
6
7#ifndef TEMP_FAILURE_RETRY
8#define TEMP_FAILURE_RETRY(expression) (expression)
9#endif
10
11#endif // NET_TempFailure_h__