mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 01:06:58 +00:00
We really have a mess of extern/non-extern declaration of functions in our headers. Always use extern for unification purpose. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
9 lines
197 B
C
9 lines
197 B
C
#ifndef __CR_UTS_NS_H__
|
|
#define __CR_UTS_NS_H__
|
|
|
|
extern int dump_uts_ns(int ns_pid, int ns_id);
|
|
extern int prepare_utsns(int pid);
|
|
|
|
extern struct ns_desc uts_ns_desc;
|
|
|
|
#endif /* __CR_UTS_NS_H__ */
|