From 8d8a747b161508ebfd48a6dac52f1438e2714a2b Mon Sep 17 00:00:00 2001 From: Bharata B Rao Date: Mon, 13 Apr 2009 15:49:06 +0530 Subject: Fix a few compilation warnings in api.c gcc -DHAVE_CONFIG_H -I. -I.. -I../include -g -O2 -Wall -MT api.lo -MD -MP -MF .deps/api.Tpo -c api.c -fPIC -DPIC -o .libs/api.o api.c:52:1: warning: "VERSION" redefined In file included from ./libcgroup-internal.h:21, from api.c:31: ../config.h:129:1: warning: this is the location of the previous definition api.c: In function 'cgroup_parse_rules': api.c:353: warning: implicit declaration of function 'isblank' api.c: In function 'cgroup_modify_cgroup': api.c:1073: warning: implicit declaration of function 'asprintf' This patch fixes the warning arising due to isblank, asprintf and getline. Signed-off-by: Bharata B Rao Signed-off-by: Dhaval Giani --- src/api.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/api.c b/src/api.c index 99e71fe..4d5b524 100644 --- a/src/api.c +++ b/src/api.c @@ -25,6 +25,10 @@ * for mistakes in APIs for reading statistics. */ +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif + #include #include #include -- cgit