draw the root pixmap with the gl renderer, and honor windows restacking when they...
[dana/dcompmgr.git] / time.h
1 #ifndef dc__time_h
2 #define dc__time_h
3
4 #include <sys/time.h>
5
6 void time_add(struct timeval *tv, long microseconds);
7 long time_compare(const struct timeval *a, const struct timeval *b);
8 void time_difference(const struct timeval *a, const struct timeval *b,
9                      struct timeval *r);
10
11 #endif