am 3164805b: am 2be1be47: Revert "Add a hack to <stdlib.h> until we can fix libvpx."

* commit '3164805b2e075a515d99fd7e88bfbc70e1fada4c':
  Revert "Add a hack to <stdlib.h> until we can fix libvpx."
This commit is contained in:
Elliott Hughes 2014-07-28 23:55:02 +00:00 committed by Android Git Automerger
commit e56a2dbdbc

View File

@ -111,12 +111,6 @@ void arc4random_buf(void*, size_t);
#define RAND_MAX 0x7fffffff
/* Work around x86/x86-64 libvpx build breakage caused by postproc_x86.c. */
#if (defined(__i386__) || defined(__x86_64__)) && defined(rand)
#undef rand
#define __rand lrand48
#endif
int rand(void);
int rand_r(unsigned int*);
void srand(unsigned int);