nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * Pack structures
3 *
4 * Copyright (c) 2007, 2008, Andrea Bittau <a.bittau@cs.ucl.ac.uk>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * is provided AS IS, WITHOUT ANY WARRANTY; without even the implied
13 * warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, and
14 * NON-INFRINGEMENT. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
19 * MA 02111-1307, USA.
20 *
21 * In addition, as a special exception, the copyright holders give
22 * permission to link the code of portions of this program with the
23 * OpenSSL library under certain conditions as described in each
24 * individual source file, and distribute linked combinations
25 * including the two.
26 * You must obey the GNU General Public License in all respects
27 * for all of the code used other than OpenSSL. If you modify
28 * file(s) with this exception, you may extend this exception to your
29 * version of the file(s), but you are not obligated to do so. If you
30 * do not wish to do so, delete this exception statement from your
31 * version. If you delete this exception statement from all source
32 * files in the program, then also delete it here.
33 */
34  
35 #ifndef __AIRCRACK_NG_OSDEP_PACKED_H__
36 #define __AIRCRACK_NG_OSDEP_PACKED_H__
37  
38 #ifndef __packed
39 #define __packed __attribute__ ((__packed__))
40 #endif /* __packed */
41  
42 #ifndef __aligned
43 #define __aligned(n)
44 #endif
45  
46 #endif /* __AIRCRACK_NG_OSEDEP_PACKED_H__ */