diff options
author | Bruce Momjian | 2002-01-14 15:34:41 +0000 |
---|---|---|
committer | Bruce Momjian | 2002-01-14 15:34:41 +0000 |
commit | d43b364eb980318ce7f1e8e7461aaf09fb10824d (patch) | |
tree | d43e77653dfc6764e19a9b826d6590c0be69a79e | |
parent | da83ecb64eab68322740c8cfb4481e3b708d20a2 (diff) |
Small AIX fixes from Rick Flower.
-rw-r--r-- | src/interfaces/odbc/misc.c | 1 | ||||
-rw-r--r-- | src/interfaces/odbc/statement.h | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces/odbc/misc.c b/src/interfaces/odbc/misc.c index 443d1f47b3..dc505115fe 100644 --- a/src/interfaces/odbc/misc.c +++ b/src/interfaces/odbc/misc.c @@ -15,6 +15,7 @@ #include "psqlodbc.h" #include <stdio.h> +#include <stdlib.h> #include <stdarg.h> #include <string.h> diff --git a/src/interfaces/odbc/statement.h b/src/interfaces/odbc/statement.h index 9b52f25694..6cb0f6ccd3 100644 --- a/src/interfaces/odbc/statement.h +++ b/src/interfaces/odbc/statement.h @@ -102,7 +102,7 @@ enum STMT_PARSE_NONE = 0, STMT_PARSE_COMPLETE, STMT_PARSE_INCOMPLETE, - STMT_PARSE_FATAL, + STMT_PARSE_FATAL }; /* Result style */ @@ -110,7 +110,7 @@ enum { STMT_FETCH_NONE = 0, STMT_FETCH_NORMAL, - STMT_FETCH_EXTENDED, + STMT_FETCH_EXTENDED }; typedef struct |