db_bridge:
authorMarkus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:49:11 +0200
changeset 40 be3f5582b839
parent 39 46d7ec9d63bd
child 41 574503cf7bb0
db_bridge: * libstdc++ for g++-4.3: * cstdlib for getenv and friends... committer: Markus Bröker <mbroeker@largo.homelinux.org>
db_bridge/include/postgresql_db.h
db_bridge/mysql_db.cpp
db_bridge/postgresql_db.cpp
parser/c_compiler/test/error.c
parser/c_compiler/test/test.c
--- 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 <cstdlib>
 #include <iostream>
 #include <abstract_db.h>
 
--- a/db_bridge/mysql_db.cpp
+++ b/db_bridge/mysql_db.cpp
@@ -3,6 +3,7 @@
  * Copyright 2008 (C) Markus Broeker
  */
 
+#include <cstdlib>
 #include <mysql_db.h>
 #include <console.h>
 
--- a/db_bridge/postgresql_db.cpp
+++ b/db_bridge/postgresql_db.cpp
@@ -3,6 +3,7 @@
  * Copyright 2008 (C) Markus Broeker
  */
 
+#include <cstdlib>
 #include <postgresql_db.h>
 #include <exception>
 #include <console.h>
--- 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;
 }
--- 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;
 }