Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
9ac2f2e8
Commit
9ac2f2e8
authored
18 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Add missing ecpg function prototype needed when in threaded mode ---
supresses compiler warning.
parent
49954b45
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interfaces/ecpg/ecpglib/extern.h
+4
-1
4 additions, 1 deletion
src/interfaces/ecpg/ecpglib/extern.h
with
4 additions
and
1 deletion
src/interfaces/ecpg/ecpglib/extern.h
+
4
−
1
View file @
9ac2f2e8
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/extern.h,v 1.1
7
2006/0
6/21 10:24:41 meskes
Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/extern.h,v 1.1
8
2006/0
8/04 03:23:37 momjian
Exp $ */
#ifndef _ECPG_LIB_EXTERN_H
#ifndef _ECPG_LIB_EXTERN_H
#define _ECPG_LIB_EXTERN_H
#define _ECPG_LIB_EXTERN_H
...
@@ -27,6 +27,9 @@ void ECPGadd_mem(void *ptr, int lineno);
...
@@ -27,6 +27,9 @@ void ECPGadd_mem(void *ptr, int lineno);
bool
ECPGget_data
(
const
PGresult
*
,
int
,
int
,
int
,
enum
ECPGttype
type
,
bool
ECPGget_data
(
const
PGresult
*
,
int
,
int
,
int
,
enum
ECPGttype
type
,
enum
ECPGttype
,
char
*
,
char
*
,
long
,
long
,
long
,
enum
ECPGttype
,
char
*
,
char
*
,
long
,
long
,
long
,
enum
ARRAY_TYPE
,
enum
COMPAT_MODE
,
bool
);
enum
ARRAY_TYPE
,
enum
COMPAT_MODE
,
bool
);
#ifdef ENABLE_THREAD_SAFETY
void
ecpg_pthreads_init
(
void
);
#endif
struct
connection
*
ECPGget_connection
(
const
char
*
);
struct
connection
*
ECPGget_connection
(
const
char
*
);
char
*
ECPGalloc
(
long
,
int
);
char
*
ECPGalloc
(
long
,
int
);
char
*
ECPGrealloc
(
void
*
,
long
,
int
);
char
*
ECPGrealloc
(
void
*
,
long
,
int
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment