Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0665023

Browse files
committed
Remove unnecessary prototypes
Prototypes for functions implementing V1-callable functions are nolonger necessary.Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>Reviewed-by: Thomas Munro <thomas.munro@enterprisedb.com>
1 parenta5da813 commit0665023

File tree

6 files changed

+0
-76
lines changed

6 files changed

+0
-76
lines changed

‎contrib/bloom/bloom.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ typedef BloomScanOpaqueData *BloomScanOpaque;
174174

175175
/* blutils.c */
176176
externvoid_PG_init(void);
177-
externDatumblhandler(PG_FUNCTION_ARGS);
178177
externvoidinitBloomState(BloomState*state,Relationindex);
179178
externvoidBloomFillMetapage(Relationindex,PagemetaPage);
180179
externvoidBloomInitMetapage(Relationindex);

‎contrib/btree_gist/btree_gist.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,4 @@ enum gbtree_type
3434
gbt_t_inet
3535
};
3636

37-
38-
39-
/*
40-
* Generic btree functions
41-
*/
42-
43-
Datumgbtreekey_in(PG_FUNCTION_ARGS);
44-
45-
Datumgbtreekey_out(PG_FUNCTION_ARGS);
46-
4737
#endif

‎contrib/dblink/dblink.h

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -36,28 +36,4 @@
3636

3737
#include"fmgr.h"
3838

39-
/*
40-
* External declarations
41-
*/
42-
externDatumdblink_connect(PG_FUNCTION_ARGS);
43-
externDatumdblink_disconnect(PG_FUNCTION_ARGS);
44-
externDatumdblink_open(PG_FUNCTION_ARGS);
45-
externDatumdblink_close(PG_FUNCTION_ARGS);
46-
externDatumdblink_fetch(PG_FUNCTION_ARGS);
47-
externDatumdblink_record(PG_FUNCTION_ARGS);
48-
externDatumdblink_send_query(PG_FUNCTION_ARGS);
49-
externDatumdblink_get_result(PG_FUNCTION_ARGS);
50-
externDatumdblink_get_connections(PG_FUNCTION_ARGS);
51-
externDatumdblink_is_busy(PG_FUNCTION_ARGS);
52-
externDatumdblink_cancel_query(PG_FUNCTION_ARGS);
53-
externDatumdblink_error_message(PG_FUNCTION_ARGS);
54-
externDatumdblink_exec(PG_FUNCTION_ARGS);
55-
externDatumdblink_get_pkey(PG_FUNCTION_ARGS);
56-
externDatumdblink_build_sql_insert(PG_FUNCTION_ARGS);
57-
externDatumdblink_build_sql_delete(PG_FUNCTION_ARGS);
58-
externDatumdblink_build_sql_update(PG_FUNCTION_ARGS);
59-
externDatumdblink_current_query(PG_FUNCTION_ARGS);
60-
externDatumdblink_get_notify(PG_FUNCTION_ARGS);
61-
externDatumdblink_fdw_validator(PG_FUNCTION_ARGS);
62-
6339
#endif/* DBLINK_H */

‎contrib/isn/isn.h

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,6 @@ typedef uint64 ean13;
3030
#definePG_GETARG_EAN13(n) PG_GETARG_INT64(n)
3131
#definePG_RETURN_EAN13(x) PG_RETURN_INT64(x)
3232

33-
externDatumisn_out(PG_FUNCTION_ARGS);
34-
externDatumean13_out(PG_FUNCTION_ARGS);
35-
externDatumean13_in(PG_FUNCTION_ARGS);
36-
externDatumisbn_in(PG_FUNCTION_ARGS);
37-
externDatumismn_in(PG_FUNCTION_ARGS);
38-
externDatumissn_in(PG_FUNCTION_ARGS);
39-
externDatumupc_in(PG_FUNCTION_ARGS);
40-
41-
externDatumisbn_cast_from_ean13(PG_FUNCTION_ARGS);
42-
externDatumismn_cast_from_ean13(PG_FUNCTION_ARGS);
43-
externDatumissn_cast_from_ean13(PG_FUNCTION_ARGS);
44-
externDatumupc_cast_from_ean13(PG_FUNCTION_ARGS);
45-
46-
externDatumis_valid(PG_FUNCTION_ARGS);
47-
externDatummake_valid(PG_FUNCTION_ARGS);
48-
49-
externDatumaccept_weak_input(PG_FUNCTION_ARGS);
50-
externDatumweak_input_status(PG_FUNCTION_ARGS);
51-
5233
externvoidinitialize(void);
5334

5435
#endif/* ISN_H */

‎contrib/pgcrypto/pgcrypto.h

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,4 @@
3434

3535
#include"fmgr.h"
3636

37-
/* exported functions */
38-
Datumpg_digest(PG_FUNCTION_ARGS);
39-
Datumpg_hmac(PG_FUNCTION_ARGS);
40-
Datumpg_gen_salt(PG_FUNCTION_ARGS);
41-
Datumpg_gen_salt_rounds(PG_FUNCTION_ARGS);
42-
Datumpg_crypt(PG_FUNCTION_ARGS);
43-
Datumpg_encrypt(PG_FUNCTION_ARGS);
44-
Datumpg_decrypt(PG_FUNCTION_ARGS);
45-
Datumpg_encrypt_iv(PG_FUNCTION_ARGS);
46-
Datumpg_decrypt_iv(PG_FUNCTION_ARGS);
47-
Datumpg_random_bytes(PG_FUNCTION_ARGS);
48-
Datumpg_random_uuid(PG_FUNCTION_ARGS);
49-
5037
#endif

‎contrib/tablefunc/tablefunc.h

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,4 @@
3636

3737
#include"fmgr.h"
3838

39-
/*
40-
* External declarations
41-
*/
42-
externDatumnormal_rand(PG_FUNCTION_ARGS);
43-
externDatumcrosstab(PG_FUNCTION_ARGS);
44-
externDatumcrosstab_hash(PG_FUNCTION_ARGS);
45-
externDatumconnectby_text(PG_FUNCTION_ARGS);
46-
externDatumconnectby_text_serial(PG_FUNCTION_ARGS);
47-
4839
#endif/* TABLEFUNC_H */

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp