aboutsummaryrefslogtreecommitdiffstats
path: root/man2/timerfd_create.2
diff options
context:
space:
mode:
authorAlejandro Colomar <alx.manpages@gmail.com>2022-05-02 23:20:37 +0200
committerAlejandro Colomar <alx.manpages@gmail.com>2022-05-02 23:20:37 +0200
commit47b94bbddef40645d787e5016ffff913662be19a (patch)
tree4cb1ae2b7632b880830b01687f410ab1d9564f27 /man2/timerfd_create.2
parentddffcbf1393415ed26e7889b808cf08bfa787d27 (diff)
downloadman-pages-47b94bbddef40645d787e5016ffff913662be19a.tar.gz
Various pages: EXAMPLES: Remove unused includes
Reported-by: iwyu(1) Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Diffstat (limited to 'man2/timerfd_create.2')
-rw-r--r--man2/timerfd_create.27
1 files changed, 3 insertions, 4 deletions
diff --git a/man2/timerfd_create.2 b/man2/timerfd_create.2
index a1b0ec4df6..ff12bec38d 100644
--- a/man2/timerfd_create.2
+++ b/man2/timerfd_create.2
@@ -606,13 +606,12 @@ a.out 3 1 100
.\"#define TFD_TIMER_ABSTIME (1 << 0)
.\"
.\"////////////////////////////////////////////////////////////
+#include <inttypes.h>
+#include <stdio.h>
+#include <stdlib.h>
#include <sys/timerfd.h>
#include <time.h>
#include <unistd.h>
-#include <inttypes.h> /* Definition of PRIu64 */
-#include <stdlib.h>
-#include <stdio.h>
-#include <stdint.h> /* Definition of uint64_t */
#define handle_error(msg) \e
do { perror(msg); exit(EXIT_FAILURE); } while (0)