mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-11 07:10:29 +00:00
148ce423ea
OSX `date` does not support milliseconds output, so @derekstavis created this `C` code to generate the time with milliseconds.
11 lines
236 B
C
11 lines
236 B
C
#include <stdio.h>
|
|
#include <sys/time.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
struct timeval time_struct;
|
|
gettimeofday(&time_struct, 0);
|
|
printf("%lld", (time_struct.tv_sec * 1000ll) + (time_struct.tv_usec / 1000ll));
|
|
|
|
return 0;
|
|
}
|