blob: 4911ef0b7d5eda4ca5dc9130d18fa1c84908367a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* This file is part of MXE.
* See index.html for further information.
*/
#include <sox.h>
int main(int argc, char *argv[])
{
(void)argc;
(void)argv;
sox_format_init();
return(0);
}
|