diff options
author | Marius Storm-Olsen <mstormo@gmail.com> | 2009-09-16 10:20:18 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-09-18 20:00:42 -0700 |
commit | 627735f9bf322c5c964b396f4a55d14e18d34aa2 (patch) | |
tree | 71d021832e01452c14b51eb2294b267ebfb27bec /compat | |
parent | 0d30ad71fa094dd89ae31b3381c2e63a41119c76 (diff) | |
download | git-627735f9bf322c5c964b396f4a55d14e18d34aa2.tar.gz |
Add include guards to compat/win32.h
Signed-off-by: Marius Storm-Olsen <mstormo@gmail.com>
Acked-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat')
-rw-r--r-- | compat/win32.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compat/win32.h b/compat/win32.h index c26384e595..e8c178d8cd 100644 --- a/compat/win32.h +++ b/compat/win32.h @@ -1,3 +1,6 @@ +#ifndef WIN32_H +#define WIN32_H + /* common Win32 functions for MinGW and Cygwin */ #include <windows.h> @@ -32,3 +35,5 @@ static inline int get_file_attr(const char *fname, WIN32_FILE_ATTRIBUTE_DATA *fd return ENOENT; } } + +#endif |