summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorbcook <>2015-10-01 10:27:34 +0000
committerbcook <>2015-10-01 10:27:34 +0000
commitd7c5788e4d824d6e38da5ce78edcddac5aab2484 (patch)
treef85d5fe2fbfa6cde79a14702ae842481d2e83d9e /src/lib
parentfec109a7799bcc545d41998cd5dc75eeefaddedf (diff)
downloadopenbsd-d7c5788e4d824d6e38da5ce78edcddac5aab2484.tar.gz
openbsd-d7c5788e4d824d6e38da5ce78edcddac5aab2484.tar.bz2
openbsd-d7c5788e4d824d6e38da5ce78edcddac5aab2484.zip
include <sys/types.h> for ssize_t
ok jsing@, deraadt@
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libtls/tls.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libtls/tls.h b/src/lib/libtls/tls.h
index 670ad0d711..f6e489d8e4 100644
--- a/src/lib/libtls/tls.h
+++ b/src/lib/libtls/tls.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls.h,v 1.24 2015/09/14 16:16:38 jsing Exp $ */ 1/* $OpenBSD: tls.h,v 1.25 2015/10/01 10:27:34 bcook Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -22,6 +22,8 @@
22extern "C" { 22extern "C" {
23#endif 23#endif
24 24
25#include <sys/types.h>
26
25#include <stddef.h> 27#include <stddef.h>
26#include <stdint.h> 28#include <stdint.h>
27 29