2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 09:58:09 +00:00

headers: Fix iquote for include/common

travis-ci: success for headers: Finalize include/common/
Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
This commit is contained in:
Pavel Emelyanov 2016-10-27 19:24:13 +03:00
parent c50ea54853
commit eedb53a1d2
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ ifeq ($(GMON),1)
export GMON GMONLDOPT
endif
CFLAGS += $(WARNINGS) $(DEFINES) -iquote include/common
CFLAGS += $(WARNINGS) $(DEFINES) -iquote include/
# Default target
all: criu lib

View File

@ -8,7 +8,7 @@
#ifndef __CR_GENERIC_BITOPS_H__
#define __CR_GENERIC_BITOPS_H__
#include "asm/bitsperlong.h"
#include "common/asm/bitsperlong.h"
#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
#define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_LONG)