1 /*
2     SPDX-FileCopyrightText: 2012 Stefan Majewsky <majewsky@gmx.net>
3 
4     SPDX-License-Identifier: LGPL-2.0-only
5 */
6 
7 #include <sndfile.h>
8 
main()9 int main()
10 {
11 	//We need Ogg/Vorbis support. If sndfile.h is too old, these enum values
12 	//will be missing and compiler errors will be generated.
13 	(void) SF_FORMAT_OGG;
14 	(void) SF_FORMAT_VORBIS;
15 
16 	return 0;
17 }
18