summaryrefslogtreecommitdiffstats
path: root/src/sox-test.c
blob: 679190079449667ba1dab220381151cc684245af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * This file is part of MXE. See LICENSE.md for licensing information.
 */

#include <sox.h>

int main(int argc, char *argv[])
{
    (void)argc;
    (void)argv;

    sox_format_init();
    return(0);
}