aboutsummaryrefslogtreecommitdiffstats
path: root/man3
diff options
context:
space:
mode:
authorAlejandro Colomar <alx.manpages@gmail.com>2021-11-02 12:18:52 +0100
committerAlejandro Colomar <alx.manpages@gmail.com>2022-02-24 23:01:25 +0100
commitaffe5263da07dbdc1366482276c34c9ca7243961 (patch)
tree3a130d674c4142a91a9c723ac16616631dcb8a7e /man3
parent45cf51d2e1ac62cceaeb1fc58c45cf0e0642806e (diff)
downloadman-pages-affe5263da07dbdc1366482276c34c9ca7243961.tar.gz
clock_t.3, system_data_types.7: Move text to a separate page
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Diffstat (limited to 'man3')
-rw-r--r--man3/clock_t.327
1 files changed, 26 insertions, 1 deletions
diff --git a/man3/clock_t.3 b/man3/clock_t.3
index db50c0f091..e842b44113 100644
--- a/man3/clock_t.3
+++ b/man3/clock_t.3
@@ -1 +1,26 @@
-.so man7/system_data_types.7
+.TH CLOCK_T 3 2021-11-02 Linux "Linux Programmer's Manual"
+.SH NAME
+clock_t \- system time
+.SH SYNOPSIS
+.nf
+.B #include <time.h>
+.PP
+.BR typedef " /* ... */ " clock_t;
+.fi
+.SH DESCRIPTION
+Used for system time in clock ticks or
+.B CLOCKS_PER_SEC
+(defined in
+.IR <time.h> ).
+According to POSIX,
+it shall be an integer type or a real-floating type.
+.SH CONFORMING TO
+C99 and later; POSIX.1-2001 and later.
+.SH NOTES
+The following headers also provide this type:
+.I <sys/types.h>
+and
+.IR <sys/time.h> .
+.SH SEE ALSO
+.BR times (2),
+.BR clock (3)