clitar.h: delete file
authorAurélien Aptel <aurelien.aptel@gmail.com>
Wed, 17 Jul 2013 16:04:20 +0000 (18:04 +0200)
committerAndreas Schneider <asn@samba.org>
Wed, 19 Feb 2014 17:22:28 +0000 (18:22 +0100)
Signed-off-by: Aurélien Aptel <aurelien.aptel@gmail.com>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
source3/include/clitar.h [deleted file]

diff --git a/source3/include/clitar.h b/source3/include/clitar.h
deleted file mode 100644 (file)
index 69267fb..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Unix SMB/CIFS implementation. 
- * clitar file format
- * Copyright (C) Andrew Tridgell              2000
- * 
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation; either version 3 of the License, or (at your
- * option) any later version.
- * 
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
- * 
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, see <http://www.gnu.org/licenses/>.  
- */
-
-#ifndef _CLITAR_H
-#define _CLITAR_H
-
-#define TBLOCK 512
-#define NAMSIZ 100
-union hblock {
-  char dummy[TBLOCK];
-  struct header {
-    char name[NAMSIZ];
-    char mode[8];
-    char uid[8];
-    char gid[8];
-    char size[12];
-    char mtime[12];
-    char chksum[8];
-    char linkflag;
-    char linkname[NAMSIZ];
-  } dbuf;
-};
-
-#endif /* _CLITAR_H */