From: Petr Baudis Date: Tue, 10 May 2005 22:58:16 +0000 (+0200) Subject: Mark the variable declarations in .h files as extern X-Git-Tag: v0.99~604 X-Git-Url: https://git.octo.it/?p=git.git;a=commitdiff_plain;h=883550481f885ab2865ab71819167230d21d4c14 Mark the variable declarations in .h files as extern This allows git to be built even with linkers which are not smart enough to join those symbols, and makes this correct C. Pointed out by several people. --- diff --git a/cache.h b/cache.h index 1dba4057..f8329aed 100644 --- a/cache.h +++ b/cache.h @@ -96,8 +96,8 @@ static inline unsigned int create_ce_mode(unsigned int mode) #define cache_entry_size(len) ((offsetof(struct cache_entry,name) + (len) + 8) & ~7) -struct cache_entry **active_cache; -unsigned int active_nr, active_alloc, active_cache_changed; +extern struct cache_entry **active_cache; +extern unsigned int active_nr, active_alloc, active_cache_changed; #define DB_ENVIRONMENT "SHA1_FILE_DIRECTORY" #define DEFAULT_DB_ENVIRONMENT ".git/objects" diff --git a/object.h b/object.h index d53a35a4..09700d37 100644 --- a/object.h +++ b/object.h @@ -15,8 +15,8 @@ struct object { struct object_list *refs; }; -int nr_objs; -struct object **objs; +extern int nr_objs; +extern struct object **objs; struct object *lookup_object(unsigned char *sha1);