[PATCH] ipw2100: small cleanups
[linux-2.6/zen-sources.git] / arch / um / os-Linux / time.c
blobcf30a39bc4841a58ec27d0a1863732c4a4ee1ebd
1 #include <stdlib.h>
2 #include <sys/time.h>
4 unsigned long long os_usecs(void)
6 struct timeval tv;
8 gettimeofday(&tv, NULL);
9 return((unsigned long long) tv.tv_sec * 1000000 + tv.tv_usec);
13 * Overrides for Emacs so that we follow Linus's tabbing style.
14 * Emacs will notice this stuff at the end of the file and automatically
15 * adjust the settings for this buffer only. This must remain at the end
16 * of the file.
17 * ---------------------------------------------------------------------------
18 * Local variables:
19 * c-file-style: "linux"
20 * End: