1188013Semax/*
2187938Semax * Copyright (c) 2004, 2005 Voltaire, Inc. All rights reserved.
3187938Semax * Copyright (c) 2002-2005 Mellanox Technologies LTD. All rights reserved.
4187938Semax * Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
5187938Semax *
6187938Semax * This software is available to you under a choice of one of two
7187938Semax * licenses.  You may choose to be licensed under the terms of the GNU
8187938Semax * General Public License (GPL) Version 2, available from the file
9187938Semax * COPYING in the main directory of this source tree, or the
10187938Semax * OpenIB.org BSD license below:
11187938Semax *
12187938Semax *     Redistribution and use in source and binary forms, with or
13187938Semax *     without modification, are permitted provided that the following
14187938Semax *     conditions are met:
15187938Semax *
16187938Semax *      - Redistributions of source code must retain the above
17187938Semax *        copyright notice, this list of conditions and the following
18187938Semax *        disclaimer.
19187938Semax *
20187938Semax *      - Redistributions in binary form must reproduce the above
21187938Semax *        copyright notice, this list of conditions and the following
22187938Semax *        disclaimer in the documentation and/or other materials
23187938Semax *        provided with the distribution.
24187938Semax *
25187938Semax * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26187938Semax * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27187938Semax * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28187938Semax * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29187938Semax * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30187938Semax * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31188013Semax * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32187938Semax * SOFTWARE.
33187938Semax *
34187938Semax */
35187938Semax
36188013Semax/*
37187938Semax * Abstract:
38187938Semax *  Turns off byte packing, which is necessary for passing information from
39187938Semax *	system to system over a network to ensure no padding by the compiler has
40187938Semax *	taken place.
41187938Semax */
42187938Semax
43187938Semax#ifdef PACK_SUFFIX
44187938Semax#undef PACK_SUFFIX
45187938Semax#endif
46188013Semax
47187938Semax#ifdef _MSC_VER
48187938Semax#pragma pack (pop)
49187938Semax#endif
50187938Semax