parser/c_compiler/test/test.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 13 Nov 2010 04:05:14 +0100
changeset 153 b223089872b6
parent 77 49e0babccb23
permissions -rw-r--r--
ipv6 support added committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * parser/c_compiler/test/test.c
 * Copyright (C) 2008 Markus Broeker
 */

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

int main (int argc, char **argv)
{
    FILE *fp;

    printf ("Hello, world\n");
    printf ("....\v....\f....\n");

    return EXIT_SUCCESS;
}