We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da83ecb commit d43b364Copy full SHA for d43b364
src/interfaces/odbc/misc.c
@@ -15,6 +15,7 @@
15
#include "psqlodbc.h"
16
17
#include <stdio.h>
18
+#include <stdlib.h>
19
#include <stdarg.h>
20
#include <string.h>
21
src/interfaces/odbc/statement.h
@@ -102,15 +102,15 @@ enum
102
STMT_PARSE_NONE = 0,
103
STMT_PARSE_COMPLETE,
104
STMT_PARSE_INCOMPLETE,
105
- STMT_PARSE_FATAL,
+ STMT_PARSE_FATAL
106
};
107
108
/* Result style */
109
enum
110
{
111
STMT_FETCH_NONE = 0,
112
STMT_FETCH_NORMAL,
113
- STMT_FETCH_EXTENDED,
+ STMT_FETCH_EXTENDED
114
115
116
typedef struct
0 commit comments