diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-12-19 17:52:27 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-12-19 17:52:27 +0000 |
commit | 109cdbb4f73f1dfacf89da5bdaff7365146516ca (patch) | |
tree | 28fbd62ecdff68e8242b98fcdd80f8b5f3f7fc20 /src | |
parent | f9698a938fd890cdcab61698f7df22715bc6bf96 (diff) | |
download | postgresql-109cdbb4f73f1dfacf89da5bdaff7365146516ca.tar.gz postgresql-109cdbb4f73f1dfacf89da5bdaff7365146516ca.zip |
Remove inclusions of <malloc.h>.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/odbc/bind.c | 1 | ||||
-rw-r--r-- | src/interfaces/odbc/columninfo.c | 1 | ||||
-rw-r--r-- | src/interfaces/odbc/environ.c | 1 | ||||
-rw-r--r-- | src/interfaces/odbc/tuplelist.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/src/interfaces/odbc/bind.c b/src/interfaces/odbc/bind.c index 0c3970977aa..6ec25f80d63 100644 --- a/src/interfaces/odbc/bind.c +++ b/src/interfaces/odbc/bind.c @@ -23,7 +23,6 @@ #include "qresult.h" #include "pgtypes.h" #include <stdlib.h> -#include <malloc.h> #include <string.h> #ifndef WIN32 diff --git a/src/interfaces/odbc/columninfo.c b/src/interfaces/odbc/columninfo.c index ba2e4acd78b..fa56824011d 100644 --- a/src/interfaces/odbc/columninfo.c +++ b/src/interfaces/odbc/columninfo.c @@ -16,7 +16,6 @@ #include "connection.h" #include "socket.h" #include <stdlib.h> -#include <malloc.h> #include <string.h> ColumnInfoClass * diff --git a/src/interfaces/odbc/environ.c b/src/interfaces/odbc/environ.c index 0b95291881d..080a8026d5e 100644 --- a/src/interfaces/odbc/environ.c +++ b/src/interfaces/odbc/environ.c @@ -17,7 +17,6 @@ #include "connection.h" #include "statement.h" #include <stdlib.h> -#include <malloc.h> #include <string.h> /* The one instance of the handles */ diff --git a/src/interfaces/odbc/tuplelist.c b/src/interfaces/odbc/tuplelist.c index 7b2747450e0..31acb9c9c90 100644 --- a/src/interfaces/odbc/tuplelist.c +++ b/src/interfaces/odbc/tuplelist.c @@ -13,7 +13,6 @@ */ #include <stdlib.h> -#include <malloc.h> #include "tuplelist.h" #include "tuple.h" |