Prechádzať zdrojové kódy

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

svn: 360
Bryan Drewery 22 rokov pred
rodič
commit
a2279bd7f9
1 zmenil súbory, kde vykonal 2 pridanie a 4 odobranie
  1. 2 4
      src/utc-time.c

+ 2 - 4
src/utc-time.c

@@ -6,9 +6,7 @@
 
 int main() {
   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;
 }
+