blob: 22d7fbab5bc91813908807ec34ea2a016203de47 [file] [log] [blame]
#include <ros/time.h>
#include <time.h>
#include <sys/time.h>
#include <stdio.h>
int main(int argc, char **argv)
{
printf("sizeof timespec: %d\n", sizeof(struct timespec));
printf("sizeof itimerspec: %d\n", sizeof(struct itimerspec));
printf("sizeof timeval: %d\n", sizeof(struct timeval));
printf("sizeof timezone: %d\n", sizeof(struct timezone));
return 0;
}