Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d43b364

Browse files
committed
Small AIX fixes from Rick Flower.
1 parent da83ecb commit d43b364

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/interfaces/odbc/misc.c

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "psqlodbc.h"
1616

1717
#include <stdio.h>
18+
#include <stdlib.h>
1819
#include <stdarg.h>
1920
#include <string.h>
2021

src/interfaces/odbc/statement.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,15 @@ enum
102102
STMT_PARSE_NONE = 0,
103103
STMT_PARSE_COMPLETE,
104104
STMT_PARSE_INCOMPLETE,
105-
STMT_PARSE_FATAL,
105+
STMT_PARSE_FATAL
106106
};
107107

108108
/* Result style */
109109
enum
110110
{
111111
STMT_FETCH_NONE = 0,
112112
STMT_FETCH_NORMAL,
113-
STMT_FETCH_EXTENDED,
113+
STMT_FETCH_EXTENDED
114114
};
115115

116116
typedef struct

0 commit comments

Comments
 (0)