view src/file-test.c @ 3486:f5cc3c3a40e6

Update lapack to 3.5.0 * src/lapack.mk: update to 3.5.0.
author John Donoghue <john.donoghue@ieee.org>
date Sun, 02 Feb 2014 09:16:38 -0500
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;
}