aboutsummaryrefslogtreecommitdiffstats
path: root/alignment.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-01-10 02:43:29 +0000
committerGuy Harris <guy@alum.mit.edu>2004-01-10 02:43:29 +0000
commit550a238a0fae6d055df4872aaeac3d0be65c86e6 (patch)
tree0682084cf109e893b99ed7987837c424bed71059 /alignment.h
parentb4f33e056a4c3eacce8f072f892bead8dd6a5401 (diff)
Eliminate "alignment.h" header - the stuff in it is no longer used.
svn path=/trunk/; revision=9625
Diffstat (limited to 'alignment.h')
-rw-r--r--alignment.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/alignment.h b/alignment.h
deleted file mode 100644
index 5918638885..0000000000
--- a/alignment.h
+++ /dev/null
@@ -1,29 +0,0 @@
- /*
- * alignment.h, Copyright, 1998, Richard Sharpe, All Rights Reserved
- *
- * $Id: alignment.h,v 1.4 2002/08/28 21:00:05 jmayer Exp $
- *
- * Please see the file COPYING in the top level for details of copying
- * this software. Use of this software is approved only under certain
- * conditions.
- *
- * This file implements the alignment macros for the Threaded SMB Server
- *
- * For the moment we assume Intel style architecture, but can support
- * others.
- *
- * Modification History
- *
- * 16-Oct-1998, RJS, Initial Coding
- *
- */
-
-#ifndef __ALIGNMENT_H
-#define __ALIGNMENT_H
-
-#define GBYTE(buf, pos) (unsigned char)((char)buf[pos])
-#define GSHORT(buf, pos) pletohs(&buf[pos])
-#define GSSHORT(buf, pos) (signed)pletohs(&buf[pos])
-#define GWORD(buf, pos) pletohl(&buf[pos])
-
-#endif