diff options
author | Tim Rühsen <tim.ruehsen@gmx.de> | 2019-02-08 13:03:30 +0100 |
---|---|---|
committer | Tim Rühsen <tim.ruehsen@gmx.de> | 2019-02-12 10:54:11 +0100 |
commit | ab67cbe883318d51f4c602253349198ca0817bb4 (patch) | |
tree | e7f7c3dcd998e815d176e22659fe38de84075566 /lib | |
parent | dafe8285fd3911d25d5b4f0680d886c22b461ab2 (diff) | |
download | gnutls-ab67cbe883318d51f4c602253349198ca0817bb4.tar.gz |
Remove typedef'ing ssize_t in gnutls.htmp-ssize-t
Signed-off-by: Tim Rühsen <tim.ruehsen@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/includes/gnutls/gnutls.h.in | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/lib/includes/gnutls/gnutls.h.in b/lib/includes/gnutls/gnutls.h.in index 8359fe2ea5..2965889664 100644 --- a/lib/includes/gnutls/gnutls.h.in +++ b/lib/includes/gnutls/gnutls.h.in @@ -37,15 +37,12 @@ #ifndef GNUTLS_H #define GNUTLS_H +/* Get ssize_t. */ +#include <sys/types.h> + /* Get size_t. */ #include <stddef.h> -/* Get ssize_t. */ -#ifndef HAVE_SSIZE_T -#define HAVE_SSIZE_T -/* *INDENT-OFF* */ -@DEFINE_SSIZE_T@ -/* *INDENT-ON* */ -#endif + /* Get time_t. */ #include <time.h> |