Xen Test Framework
limits.h
Go to the documentation of this file.
1
6#ifndef LIMITS_H
7#define LIMITS_H
8
9#define CHAR_BIT __CHAR_BIT__
10
11#define BYTES_PER_LONG __SIZEOF_LONG__
12#define BITS_PER_LONG (BYTES_PER_LONG * CHAR_BIT)
13
14#endif /* LIMITS_H */
15
16/*
17 * Local variables:
18 * mode: C
19 * c-file-style: "BSD"
20 * c-basic-offset: 4
21 * tab-width: 4
22 * indent-tabs-mode: nil
23 * End:
24 */