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 /vcs-svn/sliding_window.h | |
parent | Merge branch 'ew/repack-with-bitmaps-by-default' (diff) | |
parent | *.[ch]: manually align parameter lists (diff) | |
download | tgif-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 'vcs-svn/sliding_window.h')
-rw-r--r-- | vcs-svn/sliding_window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcs-svn/sliding_window.h b/vcs-svn/sliding_window.h index 189c32d84c..a7fc0999cb 100644 --- a/vcs-svn/sliding_window.h +++ b/vcs-svn/sliding_window.h @@ -13,6 +13,6 @@ struct sliding_view { #define SLIDING_VIEW_INIT(input, len) { (input), 0, 0, (len), STRBUF_INIT } -extern int move_window(struct sliding_view *view, off_t off, size_t width); +int move_window(struct sliding_view *view, off_t off, size_t width); #endif |