summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/clock_gettime.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-22 01:04:30 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:31 +0200
commit95b2df38cb69face8137a8b1daf0e7113c33c274 (patch)
treea90eb5a52a4073848090a58c2f9a005188f5e768 /libc/sysdeps/linux/common/clock_gettime.c
parent47adeb6a1c9f33bbde7598d6cb2f5c5c37afdc71 (diff)
clock_{g,s}ettime.c,{create,delete}_module.c: cleanup
Do not include unneeded headers. Move headers to the needed place. Fix a comment typo. Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/clock_gettime.c')
-rw-r--r--libc/sysdeps/linux/common/clock_gettime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/clock_gettime.c b/libc/sysdeps/linux/common/clock_gettime.c
index d3755a7a8..95d398239 100644
--- a/libc/sysdeps/linux/common/clock_gettime.c
+++ b/libc/sysdeps/linux/common/clock_gettime.c
@@ -10,11 +10,11 @@
#include <sys/syscall.h>
#include <time.h>
-#include <sys/time.h>
#ifdef __NR_clock_gettime
_syscall2(int, clock_gettime, clockid_t, clock_id, struct timespec*, tp)
#else
+# include <sys/time.h>
int clock_gettime(clockid_t clock_id, struct timespec* tp)
{