1/*
2 * Copyright 2018, NICTA
3 *
4 * This software may be distributed and modified according to the terms of
5 * the GNU General Public License version 2. Note that NO WARRANTY is provided.
6 * See "LICENSE_GPLv2.txt" for details.
7 *
8 * @TAG(NICTA_GPL)
9 */
10
11/*
12 * abstract-defns.h
13 * This file contains the abstract data type definitions that all linux kernel
14 * network modules will need.
15 */
16
17#ifndef ABSTRACT_DEFNS_H_
18#define ABSTRACT_DEFNS_H_
19
20typedef int Int;
21typedef unsigned int UInt;
22typedef u8 * U8Ptr;
23
24typedef __le16 LE16;
25typedef __le32 LE32;
26typedef __le64 LE64;
27typedef __be16 BE16;
28typedef __be32 BE32;
29typedef __be64 BE64;
30
31#endif  /* ABSTRACT_DEFNS_H_ */
32