blob: 832d538f0cc8ec7ffa90f744a2ad80d3381b2388 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
--- bsdtar.h.orig Sun Jul 18 11:08:41 2004
+++ bsdtar.h Sun Jul 18 11:09:20 2004
@@ -107,3 +107,7 @@
void usage(struct bsdtar *);
int yes(const char *fmt, ...);
+#ifndef id_t
+typedef __int64_t __id_t; /* can hold a gid_t, pid_t, or uid_t */
+typedef __id_t id_t; /* can hold a uid_t or pid_t */
+#endif
|