prefer webp/types.h over stdint.h

stdint.h is part of C99 and is notably lacking under MSVC

Change-Id: Iff60dcb8bdcc7f948dc35fb0b5d47478520b570f
This commit is contained in:
James Zern 2012-06-04 18:34:24 -07:00
parent 437999fb77
commit 8fbb91884e
3 changed files with 1 additions and 3 deletions

View File

@ -14,7 +14,6 @@
#ifdef USE_LOSSLESS_ENCODER
#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
#include "../webp/types.h"
#include "../webp/format_constants.h"

View File

@ -12,7 +12,6 @@
#ifdef USE_LOSSLESS_ENCODER
#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "./huffman_encode.h"

View File

@ -14,7 +14,7 @@
#ifdef USE_LOSSLESS_ENCODER
#include <stdint.h>
#include "../webp/types.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {