diff options
| author | Junio C Hamano <gitster@pobox.com> | 2019-05-13 23:50:32 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2019-05-13 23:50:32 +0900 |
| commit | 4aeeef377347934d6f459e27f7d793de4ce384bb (patch) | |
| tree | a8031c9623eac896bf474ba2158e39afc6abb5b3 /ppc/sha1.c | |
| parent | 2bfb182bc544214b3a15058b52b3a00c9811e3c2 (diff) | |
| parent | ad6dad0996f9226b2c3a5a3c725bf2952e52d7e7 (diff) | |
| download | git-4aeeef377347934d6f459e27f7d793de4ce384bb.tar.xz | |
Merge branch 'dl/no-extern-in-func-decl'
Mechanically and systematically drop "extern" from function
declarlation.
* dl/no-extern-in-func-decl:
*.[ch]: manually align parameter lists
*.[ch]: remove extern from function declarations using sed
*.[ch]: remove extern from function declarations using spatch
Diffstat (limited to 'ppc/sha1.c')
| -rw-r--r-- | ppc/sha1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ppc/sha1.c b/ppc/sha1.c index ec6a1926d4..1b705cee1f 100644 --- a/ppc/sha1.c +++ b/ppc/sha1.c @@ -10,8 +10,8 @@ #include <string.h> #include "sha1.h" -extern void ppc_sha1_core(uint32_t *hash, const unsigned char *p, - unsigned int nblocks); +void ppc_sha1_core(uint32_t *hash, const unsigned char *p, + unsigned int nblocks); int ppc_SHA1_Init(ppc_SHA_CTX *c) { |
