parser/c_compiler/test/test.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Tue, 12 May 2009 12:06:26 +0200
changeset 91 1181deef3bd6
parent 77 49e0babccb23
permissions -rw-r--r--
fixed a typo in mem2swap.c 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;
}