mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-26 20:07:28 +00:00
The statement like #include <compel/plugins/plugin-std.h> looks a bit tautological. I think the single "plugins" word is enough: #include <compel/plugins/std.h> Reviewed-by: Cyrill Gorcunov <gorcunov@openvz.org> Reviewed-by: Dmitry Safonov <dsafonov@virtuozzo.com> Acked-by: Pavel Emelyanov <xemul@virtuozzo.com> Signed-off-by: Kir Kolyshkin <kir@openvz.org> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
17 lines
270 B
C
17 lines
270 B
C
#include <errno.h>
|
|
|
|
#include <compel/plugins.h>
|
|
#include <compel/plugins/std.h>
|
|
|
|
#include "std-priv.h"
|
|
|
|
#define pr_err(fmt, ...)
|
|
|
|
#include "common/compiler.h"
|
|
#include "common/bug.h"
|
|
|
|
#define __sys(foo) sys_##foo
|
|
#define __sys_err(ret) ret
|
|
|
|
#include "common/scm-code.c"
|