forked from KolibriOS/kolibrios
66fbaa74b0
git-svn-id: svn://kolibrios.org@7143 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
258 B
C
14 lines
258 B
C
#ifndef __ASM_X86_BITSPERLONG_H
|
|
#define __ASM_X86_BITSPERLONG_H
|
|
|
|
#if defined(__x86_64__) && !defined(__ILP32__)
|
|
# define __BITS_PER_LONG 64
|
|
#else
|
|
# define __BITS_PER_LONG 32
|
|
#endif
|
|
|
|
#include <asm-generic/bitsperlong.h>
|
|
|
|
#endif /* __ASM_X86_BITSPERLONG_H */
|
|
|