Skip to content
Snippets Groups Projects
Commit 3093d148 authored by Kurt Schwehr's avatar Kurt Schwehr
Browse files

Remove HAVE_STDINT_H (fixes #4).

C99 is now required.  Therefore HAVE_STDINT_H is no longer necessary.
parent cfa5bb95
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,6 @@ set(CMAKE_BUILD_TYPE Release)
enable_testing()
check_include_files(malloc.h HAVE_MALLOC_H)
check_include_files(stdint.h HAVE_STDINT_H)
test_big_endian(WORDS_BIGENDIAN)
check_clzll(HAVE_DECL___BUILTIN_CLZLL)
if(NOT HAVE_DECL___BUILTIN_CLZLL)
......
#cmakedefine HAVE_MALLOC_H 1
#cmakedefine HAVE_STDINT_H 1
#cmakedefine WORDS_BIGENDIAN 1
#cmakedefine HAVE_DECL___BUILTIN_CLZLL 1
#cmakedefine HAVE_BSR64 1
......
......@@ -53,9 +53,7 @@
#include <config.h>
#if HAVE_STDINT_H
# include <stdint.h>
#endif
#include <stdint.h>
#define M_CONTINUE 1
#define M_EXIT 0
......
......@@ -53,9 +53,7 @@
#include <config.h>
#if HAVE_STDINT_H
# include <stdint.h>
#endif
#include <stdint.h>
#define M_CONTINUE 1
#define M_EXIT 0
......
......@@ -49,10 +49,7 @@
#include <config.h>
#if HAVE_STDINT_H
# include <stdint.h>
#endif
#include <stdint.h>
#include <string.h>
#include "libaec.h"
#include "encode.h"
......
......@@ -52,9 +52,7 @@
#include "config.h"
#if HAVE_STDINT_H
# include <stdint.h>
#endif
#include <stdint.h>
uint32_t aec_get_8(struct aec_stream *strm);
uint32_t aec_get_lsb_16(struct aec_stream *strm);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment