[svn-r27540] Replace svn:externals with hard copy of files

This commit is contained in:
Allen Byrne
2015-08-20 12:03:29 -05:00
parent 1436a07905
commit 1b2b0bd5a3
20 changed files with 4382 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#if defined (TRY_SYS_TIME_H)
#include <sys/time.h>
/* #include <time.h> */
#endif
#if defined (TRY_TIME_H)
#include <time.h>
#endif
int main(int argc, char **argv) {
struct timeval t1;
gettimeofday(&t1, 0x00);
return 0;
}