I am using timeval structure in order to get current system time. Normally if I declare it like that:
timeval curtime;
it is working. However I saw some code where people declare it as:
struct timeval curtime;
Is there any difference between these two?