updated libvorbis to 1.3.4 and libogg to 1.3.1

This commit is contained in:
fysx
2014-01-27 21:37:45 +01:00
parent f3be0275e6
commit 0908325b5b
618 changed files with 6230 additions and 157911 deletions
+21
View File
@@ -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__