/* * util.h * * Simulation of Transactions * * This file is a part of Distributed Systems term thesis * Department KIV, ZCU Plzen * Author: Martin Sloup, msloup@students.zcu.cz */ #ifndef UTIL_H_ #define UTIL_H_ #include #include #include extern long double timeval2double(struct timeval *time); extern void fatal(const char *message, ...); extern void warning(const char *message, ...); #endif /* UTIL_H_ */