diff options
-rw-r--r-- | misc.c | 1 | ||||
-rw-r--r-- | statement.h | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -15,6 +15,7 @@ #include "psqlodbc.h" #include <stdio.h> +#include <stdlib.h> #include <stdarg.h> #include <string.h> diff --git a/statement.h b/statement.h index 9b52f25..6cb0f6c 100644 --- a/statement.h +++ b/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 |