view src/file-test.c @ 3967:55f3a9ff20b8

of-interval: add to mxe-octave * src/of-interval.mk: new file * dist-files.mk: add of-interval.mk. * index.html: add of-interval * Makefile.in: add of-interval * build_packages.m: add interval package
author John Donoghue <john.donoghue@ieee.org>
date Mon, 15 Jun 2015 20:59:37 -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;
}