]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/__ppc_get_timebase.3
rename.2: SEE ALSO: add rename(1)
[thirdparty/man-pages.git] / man3 / __ppc_get_timebase.3
index 4d927c3ae85662c7a0ef415a0cee080519be9429..6622f3138a459b0f1fe377a04b4b813ef70469d3 100644 (file)
@@ -22,7 +22,7 @@
 .\" the source, must acknowledge the copyright and authors of this work.
 .\" %%%LICENSE_END
 .\"
-.TH __PPC_GET_TIMEBASE 3 2017-09-15 "GNU C Library" "Linux Programmer's\
+.TH __PPC_GET_TIMEBASE 3 2019-03-06 "GNU C Library" "Linux Programmer's\
 Manual"
 .SH NAME
 __ppc_get_timebase, __ppc_get_timebase_freq \- get the current value
@@ -86,7 +86,7 @@ main(void)
     uint64_t tb1, tb2, diff;
 
     uint64_t freq = __ppc_get_timebase_freq();
-    printf("Time Base frequency = %"PRIu64" Hz\\n", freq);
+    printf("Time Base frequency = %"PRIu64" Hz\en", freq);
 
     tb1 = __ppc_get_timebase();
 
@@ -101,7 +101,7 @@ main(void)
         diff = (MAX_TB \- tb2) + tb1;
     }
 
-    printf("Elapsed time  = %1.2f usecs\\n",
+    printf("Elapsed time  = %1.2f usecs\en",
             (double) diff * 1000000 / freq );
 
     exit(EXIT_SUCCESS);