view src/sox-test.c @ 4608:dac40a0ff814

nsis: update for 64bit compile * src/nsis.mk: use sed to change default target stype in makensis, set target options to amd64 in 64bit mode, dont skip system plugin * tools/makeinst-script.sh.in: include MUI2.nsh
author John Donoghue
date Wed, 28 Feb 2018 11:01:19 -0500
parents 110883446649
children
line wrap: on
line source

/*
 * 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);
}