Update libogg and libvorbis to versions 1.3.2 and 1.3.5, respectively.

This commit is contained in:
Alex Szpakowski
2015-12-01 16:02:35 -04:00
parent c952bbcab7
commit 4206243c74
580 changed files with 19440 additions and 23422 deletions
@@ -0,0 +1,21 @@
#include <ogg/os_types.h>
#include <sys/types.h>
#include <string.h>
#include <stdlib.h>
char *strdup(const char *inStr)
{
char *outStr = NULL;
if (inStr == NULL) {
return NULL;
}
outStr = _ogg_malloc(strlen(inStr) + 1);
if (outStr != NULL) {
strcpy(outStr, inStr);
}
return outStr;
}
@@ -0,0 +1 @@
#ifndef __SYS_TYPES_H__