From 7943d1eb2be34569829dfc2812a1bf4f6a6eb4d0 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 24 Mar 2010 21:05:23 +0100 Subject: don't export functions that should not be exported Signed-off-by: Lennart Poettering Acked-by: Dhaval Giani Signed-off-by: Dhaval Giani --- src/config.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/config.c') diff --git a/src/config.c b/src/config.c index 9c62b01..98eace3 100644 --- a/src/config.c +++ b/src/config.c @@ -387,7 +387,7 @@ void cgroup_config_cleanup_namespace_table(void) /* * Start mounting the mount table. */ -int cgroup_config_mount_fs(void) +static int cgroup_config_mount_fs(void) { int ret; struct stat buff; @@ -425,7 +425,7 @@ int cgroup_config_mount_fs(void) /* * Actually create the groups once the parsing has been finished. */ -int cgroup_config_create_groups(void) +static int cgroup_config_create_groups(void) { int error = 0; int i; @@ -444,7 +444,7 @@ int cgroup_config_create_groups(void) /* * Destroy the cgroups */ -int cgroup_config_destroy_groups(void) +static int cgroup_config_destroy_groups(void) { int error = 0; int i; @@ -461,7 +461,7 @@ int cgroup_config_destroy_groups(void) /* * Unmount the controllers */ -int cgroup_config_unmount_controllers(void) +static int cgroup_config_unmount_controllers(void) { int i; int error; -- cgit