mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
12 lines
202 B
C++
12 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;
|
||
|
}
|