Skip to content

Commit 9606e20

Browse files
committed
Use the "extern" keyword in function declarations
1 parent 86202c3 commit 9606e20

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pgspeck.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
#include "postgres.h"
55

6-
uint32 speck_encrypt32(const uint32 xy, const int64 K);
7-
uint32 speck_decrypt32(const uint32 xy, const int64 K);
8-
int64 speck_encrypt48(const int64 xy, const int64 *K);
9-
int64 speck_decrypt48(const int64 xy, const int64 *K);
6+
extern uint32 speck_encrypt32(const uint32 xy, const int64 K);
7+
extern uint32 speck_decrypt32(const uint32 xy, const int64 K);
8+
extern int64 speck_encrypt48(const int64 xy, const int64 *K);
9+
extern int64 speck_decrypt48(const int64 xy, const int64 *K);
1010

1111
#endif

0 commit comments

Comments
 (0)