summaryrefslogtreecommitdiff
path: root/tbdiff/tbdiff-common.h
diff options
context:
space:
mode:
authorBen Brewer <ben.brewer@codethink.co.uk>2014-05-30 15:20:37 +0100
committerBen Brewer <ben.brewer@codethink.co.uk>2014-06-02 15:53:42 +0100
commit5e7c9554d4685026e80c95e9efa8a4dae0f399de (patch)
treef1cce8664c77785ba9ca7008f1ebbd3809abba7e /tbdiff/tbdiff-common.h
parent20d5fb340c6ad1e7b16c6dc17e3f6c364a5a5515 (diff)
downloadtbdiff-5e7c9554d4685026e80c95e9efa8a4dae0f399de.tar.gz
Remove extern keyword since it's not needed
The extern keyword is not needed since it's the default property for a function, it also takes up extra space on the line which leads to more wrapping.
Diffstat (limited to 'tbdiff/tbdiff-common.h')
-rw-r--r--tbdiff/tbdiff-common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbdiff/tbdiff-common.h b/tbdiff/tbdiff-common.h
index cbb5c0d..c60139d 100644
--- a/tbdiff/tbdiff-common.h
+++ b/tbdiff/tbdiff-common.h
@@ -126,7 +126,7 @@ tbd_error(tbd_error_e e, char const *s, char const *func, int line,
}
#endif
-extern int tbd_apply (FILE *stream);
-extern int tbd_create(FILE *stream, tbd_stat_t *a, tbd_stat_t *b);
+int tbd_apply (FILE *stream);
+int tbd_create(FILE *stream, tbd_stat_t *a, tbd_stat_t *b);
#endif /* !__TBDIFF_COMMON_H__ */