md5rec.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:51:15 +0200
changeset 84 f59d8a8e786f
parent 77 49e0babccb23
child 124 8a983ee5fab7
permissions -rw-r--r--
struct hostent has no longer a member h_addr Current netdb.h lacks support for the old h_addr pointer without special USE_GNU defines... committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * md5rec.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>
#include <stdlib.h>
#include <lsf.h>

int main (int argc, char **argv)
{
    if (argc != 2) {
        printf ("Usage: %s <directory>\n", argv[0]);
        printf ("Report bugs to mbroeker@largo.homelinux.org\n");
        return EXIT_FAILURE;
    }

    md5recursive (argv[1], 1);

    return EXIT_SUCCESS;
}