comparison th_util.h @ 623:893b2deeb5be

Get rid of some useless includes.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 17 Jan 2020 04:16:48 +0200
parents 6d99150a8f89
children 4ca6a3b30fe8
comparison
equal deleted inserted replaced
622:6d99150a8f89 623:893b2deeb5be
17 #include "th_types.h" 17 #include "th_types.h"
18 #include <stdio.h> 18 #include <stdio.h>
19 #include <stdarg.h> 19 #include <stdarg.h>
20 #include <stdlib.h> 20 #include <stdlib.h>
21 #include <unistd.h> 21 #include <unistd.h>
22 #include <sys/types.h>
23 #ifndef HAVE_NO_ASSERT 22 #ifndef HAVE_NO_ASSERT
24 # include <assert.h> 23 # include <assert.h>
25 #endif 24 #endif
26 25
27 #ifdef HAVE_STRING_H 26 #if defined(HAVE_STRING_H)
28 # include <string.h> 27 # include <string.h>
29 #else 28 #elif defined(HAVE_STRINGS_H)
30 # ifdef HAVE_STRINGS_H 29 # include <strings.h>
31 # include <strings.h>
32 # endif
33 #endif 30 #endif
34 31
35 #ifdef HAVE_MEMORY_H 32 #ifdef HAVE_MEMORY_H
36 # include <memory.h> 33 # include <memory.h>
37 #endif 34 #endif