parser/c_compiler/test/test.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:49:11 +0200
changeset 40 be3f5582b839
parent 39 46d7ec9d63bd
child 77 49e0babccb23
permissions -rw-r--r--
db_bridge: * libstdc++ for g++-4.3: * cstdlib for getenv and friends... committer: Markus Bröker <mbroeker@largo.homelinux.org>

#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;
}