summaryrefslogtreecommitdiff
path: root/tar/bsdtar_windows.h
diff options
context:
space:
mode:
authorTim Kientzle <kientzle@gmail.com>2010-04-10 21:11:54 -0400
committerTim Kientzle <kientzle@gmail.com>2010-04-10 21:11:54 -0400
commitce450a48fcc9a0400b9a5004584fbbd12b0c0a4e (patch)
tree195c8ace74e1c40a3c5af235d7b6cfdd4fb01b12 /tar/bsdtar_windows.h
parent817fb64f5cf3bfd84af9860edf00b456d33bcc4b (diff)
downloadlibarchive-ce450a48fcc9a0400b9a5004584fbbd12b0c0a4e.tar.gz
Style: tab follows #define
SVN-Revision: 2226
Diffstat (limited to 'tar/bsdtar_windows.h')
-rw-r--r--tar/bsdtar_windows.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/tar/bsdtar_windows.h b/tar/bsdtar_windows.h
index 092ea695..f0611d79 100644
--- a/tar/bsdtar_windows.h
+++ b/tar/bsdtar_windows.h
@@ -26,35 +26,35 @@
*/
#ifndef BSDTAR_WINDOWS_H
-#define BSDTAR_WINDOWS_H 1
+#define BSDTAR_WINDOWS_H 1
#include <direct.h>
#include <windows.h>
#ifndef PRId64
-#define PRId64 "I64"
+#define PRId64 "I64"
#endif
-#define geteuid() 0
+#define geteuid() 0
#ifndef S_IFIFO
-#define S_IFIFO 0010000 /* pipe */
+#define S_IFIFO 0010000 /* pipe */
#endif
#include <string.h> /* Must include before redefining 'strdup' */
#if !defined(__BORLANDC__)
-#define strdup _strdup
+#define strdup _strdup
#endif
#if !defined(__BORLANDC__)
-#define getcwd _getcwd
+#define getcwd _getcwd
#endif
-#define chdir __tar_chdir
+#define chdir __tar_chdir
int __tar_chdir(const char *);
#ifndef S_ISREG
-#define S_ISREG(a) (a & _S_IFREG)
+#define S_ISREG(a) (a & _S_IFREG)
#endif
#ifndef S_ISBLK
-#define S_ISBLK(a) (0)
+#define S_ISBLK(a) (0)
#endif
#endif /* BSDTAR_WINDOWS_H */