Ver Fonte

* Didn't mean to commit the test utc-time.c

svn: 360
Bryan Drewery há 22 anos atrás
pai
commit
a2279bd7f9
1 ficheiros alterados com 2 adições e 4 exclusões
  1. 2 4
      src/utc-time.c

+ 2 - 4
src/utc-time.c

@@ -6,9 +6,7 @@
 
 
 int main() {
 int main() {
   time_t now = time(NULL);
   time_t now = time(NULL);
-  now = mktime(gmtime(&now));
-  printf("%lu\n", mktime(localtime(&now)));
-  printf("%lu\n", gmtime(&now));
-  printf("%lu\n", now);
+  printf("%lu\n", mktime(gmtime(&now)));
   return 0;
   return 0;
 }
 }
+