mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
14 lines
268 B
C++
14 lines
268 B
C++
#include <mad.h>
|
|
|
|
int main()
|
|
{
|
|
AEDI_EXPECT(mad_version[0] != '\0');
|
|
AEDI_EXPECT(mad_build[0] != '\0');
|
|
|
|
mad_stream stream = {};
|
|
mad_stream_init(&stream);
|
|
AEDI_EXPECT(stream.error == MAD_ERROR_NONE);
|
|
mad_stream_finish(&stream);
|
|
|
|
return 0;
|
|
}
|