am 4d0e827d: Attempt to fix simular build break. Missing header file stdlib.h for free, malloc, etc

Merge commit '4d0e827d0be6085893428b420ec5800f1973a43b' into eclair-mr2-plus-aosp

* commit '4d0e827d0be6085893428b420ec5800f1973a43b':
  Attempt to fix simular build break.
This commit is contained in:
James Dong
2009-12-19 09:00:17 -08:00
committed by Android Git Automerger
2 changed files with 2 additions and 1 deletions

View File

@@ -16,7 +16,7 @@
//#define LOG_NDEBUG 0
#define LOG_TAG "M4vH263Decoder"
#include <utils/Log.h>
#include <stdlib.h> // for free
#include "ESDS.h"
#include "M4vH263Decoder.h"

View File

@@ -21,6 +21,7 @@
#include <stdint.h>
#include <string.h>
#include <stdlib.h> // for free, malloc, etc
// Redefine the int types
typedef uint8_t uint8;