view src/file-test.c @ 3621:2b24e408ea4a

lame: update version from mxe_devel * src/lame.mk: update version * lame-1-fix-xmmintrin-errors.patch: new file from mxe_devel * lame-2-update-autotools.patch: new file from mxe_devel * dist-files.mk: added lame-1-fix-xmmintrin-errors.patch lame-2-update-autotools.patch
author John Donoghue <john.donoghue@ieee.org>
date Fri, 27 Jun 2014 21:13:38 -0400
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <stdio.h>
#include <magic.h>

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

    fprintf(stdout, "magic file from %s\n", magic_getpath(NULL, 0));
    return 0;
}