I'm simply trying to get and print time in millseconds... The code below works on a normal CentOS machine, but on a Raspberry Pi ArchLinux I'm getting a negative number. printf can't handle long?! Any ideas or help? #include <sys/time.h> #include <stdio.h> int main(int argc, char **argv) { struct ti...