view src/file-test.c @ 4144:ced655daa7ad

ffmpeg: update to v2.8.7, gdb: update to 7.11 * src/ffmpeg.mk: update version, checksum * src/gdb.mk: update version, checksum * src/gdb-1-fix-termcap.patch: removed * dist-files.mk: removed src/gdb-1-fix-termcap.patch
author John Donoghue
date Mon, 23 May 2016 12:50:16 -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;
}