diff options
author | Simon Josefsson <simon@josefsson.org> | 2006-02-23 14:27:11 +0000 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2006-02-23 14:27:11 +0000 |
commit | 4745c4fd33f06fd99e83518a6ce4a305e59b8362 (patch) | |
tree | f970116d06357283b825696c58f1d9ac6176157f /lib | |
parent | 071a88723e0cbf502ed4966a8012a45f2e26ed70 (diff) | |
download | libtasn1-4745c4fd33f06fd99e83518a6ce4a305e59b8362.tar.gz libtasn1-4745c4fd33f06fd99e83518a6ce4a305e59b8362.tar.bz2 libtasn1-4745c4fd33f06fd99e83518a6ce4a305e59b8362.zip |
Assume C89.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/defines.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/defines.h b/lib/defines.h index 47d6a35..b4896fd 100644 --- a/lib/defines.h +++ b/lib/defines.h @@ -27,12 +27,10 @@ # include <config.h> #endif -#ifdef STDC_HEADERS -# include <string.h> -# include <stdlib.h> -# include <stdio.h> -# include <ctype.h> -#endif +#include <string.h> +#include <stdlib.h> +#include <stdio.h> +#include <ctype.h> #ifdef HAVE_STRINGS_H # include <strings.h> |