mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
11 lines
202 B
C++
11 lines
202 B
C++
#include <xmp.h>
|
|
|
|
int main()
|
|
{
|
|
xmp_context context = xmp_create_context();
|
|
AEDI_EXPECT(context != nullptr);
|
|
AEDI_EXPECT(xmp_syserrno() == 0);
|
|
xmp_free_context(context);
|
|
|
|
return 0;
|
|
}
|