# HG changeset patch # User Markus Bröker # Date 1239878951 -7200 # Node ID be3f5582b839558a4a458bfd5584a350565861be # Parent 46d7ec9d63bd4678f8f017116b4efd138e5a1cca db_bridge: * libstdc++ for g++-4.3: * cstdlib for getenv and friends... committer: Markus Bröker diff --git a/db_bridge/include/postgresql_db.h b/db_bridge/include/postgresql_db.h --- a/db_bridge/include/postgresql_db.h +++ b/db_bridge/include/postgresql_db.h @@ -6,7 +6,6 @@ #ifndef POSTGRESQL_DB_H #define POSTGRESQL_DB_H -#include #include #include diff --git a/db_bridge/mysql_db.cpp b/db_bridge/mysql_db.cpp --- a/db_bridge/mysql_db.cpp +++ b/db_bridge/mysql_db.cpp @@ -3,6 +3,7 @@ * Copyright 2008 (C) Markus Broeker */ +#include #include #include diff --git a/db_bridge/postgresql_db.cpp b/db_bridge/postgresql_db.cpp --- a/db_bridge/postgresql_db.cpp +++ b/db_bridge/postgresql_db.cpp @@ -3,6 +3,7 @@ * Copyright 2008 (C) Markus Broeker */ +#include #include #include #include diff --git a/parser/c_compiler/test/error.c b/parser/c_compiler/test/error.c --- a/parser/c_compiler/test/error.c +++ b/parser/c_compiler/test/error.c @@ -5,8 +5,10 @@ { FILE *fp; - /* ERROR SEMICOLON IS MISSING */ + /* + * ERROR SEMICOLON IS MISSING + */ printf ("Hello, world\n") - return EXIT_SUCCESS; + return EXIT_SUCCESS; } diff --git a/parser/c_compiler/test/test.c b/parser/c_compiler/test/test.c --- a/parser/c_compiler/test/test.c +++ b/parser/c_compiler/test/test.c @@ -6,6 +6,7 @@ FILE *fp; printf ("Hello, world\n"); + printf ("....\v....\f....\n"); return EXIT_SUCCESS; }