blob: f57ed990713612f3517dedb2eeb20ba6bb82ac83 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Public domain. */
#ifndef _ASM_BITSPERLONG_H
#define _ASM_BITSPERLONG_H
#ifdef __LP64__
#define BITS_PER_LONG 64
#else
#define BITS_PER_LONG 32
#endif
#define BITS_PER_LONG_LONG 64
#endif
|