File indexing completed on 2024-05-12 04:06:02

0001 /*
0002     SPDX-FileCopyrightText: 2012 Stefan Majewsky <majewsky@gmx.net>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #include <sndfile.h>
0008 
0009 int main()
0010 {
0011     // We need Ogg/Vorbis support. If sndfile.h is too old, these enum values
0012     // will be missing and compiler errors will be generated.
0013     (void)SF_FORMAT_OGG;
0014     (void)SF_FORMAT_VORBIS;
0015 
0016     return 0;
0017 }