libavutil: Remove pointless file test program.

This commit is contained in:
Diego Biurrun
2012-01-25 20:13:17 +01:00
parent 324e818093
commit 299ab0fd17
2 changed files with 1 additions and 19 deletions

View File

@ -129,21 +129,3 @@ void av_file_unmap(uint8_t *bufptr, size_t size)
av_free(bufptr);
#endif
}
#ifdef TEST
#undef printf
int main(void)
{
uint8_t *buf;
size_t size;
if (av_file_map("file.c", &buf, &size, 0, NULL) < 0)
return 1;
buf[0] = 's';
printf("%s", buf);
av_file_unmap(buf, size);
return 0;
}
#endif