summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorguenther <>2015-10-18 23:27:43 +0000
committerguenther <>2015-10-18 23:27:43 +0000
commit587c883683d8c98265b9a91fcf9a9e0da684a734 (patch)
tree075bcb1f3cdef013a8d45396da1702ed6bc7da4c
parent543f0f34095fd3775350a028db241378f1e4dd80 (diff)
downloadopenbsd-587c883683d8c98265b9a91fcf9a9e0da684a734.tar.gz
openbsd-587c883683d8c98265b9a91fcf9a9e0da684a734.tar.bz2
openbsd-587c883683d8c98265b9a91fcf9a9e0da684a734.zip
Need <string.h> for memset()
-rw-r--r--src/regress/lib/libc/sleep/sleep_test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/regress/lib/libc/sleep/sleep_test.c b/src/regress/lib/libc/sleep/sleep_test.c
index c9ab0d095f..4c7764375d 100644
--- a/src/regress/lib/libc/sleep/sleep_test.c
+++ b/src/regress/lib/libc/sleep/sleep_test.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sleep_test.c,v 1.1 2009/12/14 05:08:19 guenther Exp $ */ 1/* $OpenBSD: sleep_test.c,v 1.2 2015/10/18 23:27:43 guenther Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2009 Philip Guenther 4 * Copyright (c) 2009 Philip Guenther
@@ -41,6 +41,7 @@
41#include <stddef.h> 41#include <stddef.h>
42#include <stdio.h> 42#include <stdio.h>
43#include <stdlib.h> 43#include <stdlib.h>
44#include <string.h>
44#include <unistd.h> 45#include <unistd.h>
45 46
46static void 47static void