mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 20:11:51 +00:00
10 lines
108 B
C++
10 lines
108 B
C++
|
#include <SDL_net.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
AEDI_EXPECT(SDLNet_Init() == 0);
|
||
|
SDLNet_Quit();
|
||
|
|
||
|
return 0;
|
||
|
}
|