view src/file-test.c @ 4777:f6f934903cd2

llvm.mk: update to version 6.0.1 and enable cross build Makefile.in: Also generate a native toolchain file for cmake.
author Markus Mützel <markus.muetzel@gmx.de>
date Mon, 30 Jul 2018 11:24:47 -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;
}