File tree 2 files changed +3
-3
lines changed
test/modules/test_radixtree
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -300,8 +300,8 @@ pg_ceil_log2_64(uint64 num)
300
300
301
301
#ifdef TRY_POPCNT_FAST
302
302
/* Attempt to use the POPCNT instruction, but perform a runtime check first */
303
- extern int (* pg_popcount32 ) (uint32 word );
304
- extern int (* pg_popcount64 ) (uint64 word );
303
+ extern PGDLLIMPORT int (* pg_popcount32 ) (uint32 word );
304
+ extern PGDLLIMPORT int (* pg_popcount64 ) (uint64 word );
305
305
306
306
#else
307
307
/* Use a portable implementation -- no need for a function pointer. */
Original file line number Diff line number Diff line change 1
1
/*--------------------------------------------------------------------------
2
2
*
3
3
* test_radixtree.c
4
- * Test module for adapive radix tree.
4
+ * Test module for adaptive radix tree.
5
5
*
6
6
* Copyright (c) 2024, PostgreSQL Global Development Group
7
7
*
You can’t perform that action at this time.
0 commit comments