Fix handling partial SPTPS messages in sptps_test.
[tinc] / src / dropin.h
index 938f30d..5033f90 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef TINC_DROPIN_H
+#define TINC_DROPIN_H
+
 /*
     dropin.h -- header file for dropin.c
     Copyright (C) 2000-2005 Ivo Timmermans,
@@ -18,9 +21,6 @@
     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef __DROPIN_H__
-#define __DROPIN_H__
-
 #ifndef HAVE_DAEMON
 extern int daemon(int, int);
 #endif
@@ -40,20 +40,20 @@ extern int nanosleep(const struct timespec *req, struct timespec *rem);
 
 #ifndef timeradd
 #define timeradd(a, b, r) do {\
-       (r)->tv_sec = (a)->tv_sec + (b)->tv_sec;\
-       (r)->tv_usec = (a)->tv_usec + (b)->tv_usec;\
-       if((r)->tv_usec >= 1000000)\
-               (r)->tv_sec++, (r)->tv_usec -= 1000000;\
-} while (0)
+               (r)->tv_sec = (a)->tv_sec + (b)->tv_sec;\
+               (r)->tv_usec = (a)->tv_usec + (b)->tv_usec;\
+               if((r)->tv_usec >= 1000000)\
+                       (r)->tv_sec++, (r)->tv_usec -= 1000000;\
+       } while (0)
 #endif
 
 #ifndef timersub
 #define timersub(a, b, r) do {\
-       (r)->tv_sec = (a)->tv_sec - (b)->tv_sec;\
-       (r)->tv_usec = (a)->tv_usec - (b)->tv_usec;\
-       if((r)->tv_usec < 0)\
-               (r)->tv_sec--, (r)->tv_usec += 1000000;\
-} while (0)
+               (r)->tv_sec = (a)->tv_sec - (b)->tv_sec;\
+               (r)->tv_usec = (a)->tv_usec - (b)->tv_usec;\
+               if((r)->tv_usec < 0)\
+                       (r)->tv_sec--, (r)->tv_usec += 1000000;\
+       } while (0)
 #endif
 
 #ifdef HAVE_MINGW
@@ -67,4 +67,4 @@ extern int nanosleep(const struct timespec *req, struct timespec *rem);
 #define EAI_SYSTEM 0
 #endif
 
-#endif /* __DROPIN_H__ */
+#endif