File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -182,13 +182,13 @@ struct obstack /* control current object in current chunk */
182182
183183/* Declare the external functions we use; they are in obstack.c. */
184184
185- extern void _obstack_newchunk (struct obstack *, int );
186- extern int _obstack_begin (struct obstack *, int , int ,
185+ void _obstack_newchunk (struct obstack *, int );
186+ int _obstack_begin (struct obstack *, int , int ,
187187 void *(*) (long ), void (*) (void *));
188- extern int _obstack_begin_1 (struct obstack *, int , int ,
188+ int _obstack_begin_1 (struct obstack *, int , int ,
189189 void *(*) (void *, long ),
190190 void (*) (void *, void *), void *);
191- extern int _obstack_memory_used (struct obstack *);
191+ int _obstack_memory_used (struct obstack *);
192192
193193void obstack_free (struct obstack *, void *);
194194
Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ struct promisor_remote {
1515 const char name [FLEX_ARRAY ];
1616};
1717
18- extern void promisor_remote_reinit (void );
19- extern struct promisor_remote * promisor_remote_find (const char * remote_name );
20- extern int has_promisor_remote (void );
21- extern int promisor_remote_get_direct (const struct object_id * oids , int oid_nr );
18+ void promisor_remote_reinit (void );
19+ struct promisor_remote * promisor_remote_find (const char * remote_name );
20+ int has_promisor_remote (void );
21+ int promisor_remote_get_direct (const struct object_id * oids , int oid_nr );
2222
2323/*
2424 * This should be used only once from setup.c to set the value we got
2525 * from the extensions.partialclone config option.
2626 */
27- extern void set_repository_format_partial_clone (char * partial_clone );
27+ void set_repository_format_partial_clone (char * partial_clone );
2828
2929#endif /* PROMISOR_REMOTE_H */
You can’t perform that action at this time.
0 commit comments