mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-28 04:48:16 +00:00
travis-ci: success for Common headers Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
11 lines
180 B
C
11 lines
180 B
C
#ifndef __CR_BITSPERLONG_H__
|
|
#define __CR_BITSPERLONG_H__
|
|
|
|
#ifdef CONFIG_X86_64
|
|
# define BITS_PER_LONG 64
|
|
#else
|
|
# define BITS_PER_LONG 32
|
|
#endif
|
|
|
|
#endif /* __CR_BITSPERLONG_H__ */
|