Mercurial > hg > fxanalyse
view future.h @ 92:33f0b6206864
New build 7.3.0. Update project files
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Fri, 22 Mar 2013 16:58:09 +0100 |
parents | 4102fe614df2 |
children | b955e35c07ae |
line wrap: on
line source
#ifndef __FUTURE_H__ #define __FUTURE_H__ #include <ansi_c.h> double round(double x); typedef long int suseconds_t; struct timeval { time_t tv_sec; /* seconds since 1970-01-01 */ suseconds_t tv_usec; /* microseconds */ }; struct timezone { int tz_minuteswest; int tz_dsttime; }; int gettimeofday(struct timeval *tp, struct timezone *tzp); #endif