File tree 2 files changed +7
-7
lines changed
src/backend/port/dynloader
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/port/dynloader/hpux.c,v 1.23 2003/11/29 19:51:54 pgsql Exp $
11
+ * $PostgreSQL: pgsql/src/backend/port/dynloader/hpux.c,v 1.24 2004/01/04 04:06:37 tgl Exp $
12
12
*
13
13
* NOTES
14
14
* all functions are defined here -- it's impossible to trace the
@@ -57,7 +57,7 @@ pg_dlclose(void *handle)
57
57
}
58
58
59
59
char *
60
- pg_dlerror ()
60
+ pg_dlerror (void )
61
61
{
62
62
static char errmsg [] = "shl_load failed" ;
63
63
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/port/dynloader/hpux.h,v 1.8 2003/11/29 19:51:54 pgsql Exp $
11
+ * $PostgreSQL: pgsql/src/backend/port/dynloader/hpux.h,v 1.9 2004/01/04 04:06:37 tgl Exp $
12
12
*
13
13
* NOTES
14
14
* all functions are defined here -- it's impossible to trace the
19
19
/* System includes */
20
20
#include "fmgr.h"
21
21
22
- void * pg_dlopen (char * filename );
23
- PGFunction pg_dlsym (void * handle , char * funcname );
24
- void pg_dlclose (void * handle );
25
- char * pg_dlerror ();
22
+ extern void * pg_dlopen (char * filename );
23
+ extern PGFunction pg_dlsym (void * handle , char * funcname );
24
+ extern void pg_dlclose (void * handle );
25
+ extern char * pg_dlerror (void );
You can’t perform that action at this time.
0 commit comments