diff options
Diffstat (limited to 'third_party/git/tar.h')
-rw-r--r-- | third_party/git/tar.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/git/tar.h b/third_party/git/tar.h index 3467705e9b0e..6b258c4d4a3f 100644 --- a/third_party/git/tar.h +++ b/third_party/git/tar.h @@ -1,3 +1,6 @@ +#ifndef TAR_H +#define TAR_H + #define TYPEFLAG_AUTO '\0' #define TYPEFLAG_REG '0' #define TYPEFLAG_LNK '2' @@ -23,3 +26,5 @@ struct ustar_header { char devminor[8]; /* 337 */ char prefix[155]; /* 345 */ }; + +#endif /* TAR_H */ |