diff options
| author | thorpej <thorpej@NetBSD.org> | 2001-09-17 23:32:33 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2001-09-17 23:32:33 +0000 |
| commit | bb80a7f9fcf07d08bcaa7d87eb8f6e34cecf366b (patch) | |
| tree | ba501e5794b7d8bd797e01aebb22b10c6097cd87 /lib/libc | |
| parent | 5ddc1e1310609d99a7bd45814f78cd72e8f71eda (diff) | |
Pull in <string.h> for memcpy() prototype.
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/sys/clock_settime.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/libc/sys/clock_settime.c b/lib/libc/sys/clock_settime.c index c2df42da18b..b89e32a1076 100644 --- a/lib/libc/sys/clock_settime.c +++ b/lib/libc/sys/clock_settime.c @@ -1,4 +1,4 @@ -/* $NetBSD: clock_settime.c,v 1.1 2001/09/16 07:41:57 manu Exp $ */ +/* $NetBSD: clock_settime.c,v 1.2 2001/09/17 23:32:33 thorpej Exp $ */ /* * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -32,14 +32,17 @@ */ #include "namespace.h" -#include <fcntl.h> -#include <paths.h> -#include <unistd.h> -#include <time.h> + #include <sys/types.h> #include <sys/ioctl.h> #include <sys/syscall.h> +#include <fcntl.h> +#include <paths.h> +#include <string.h> +#include <time.h> +#include <unistd.h> + #include <sys/clockctl.h> #ifdef __weak_alias |
