diff options
author | Richard Yao <ryao@gentoo.org> | 2012-11-18 15:00:51 -0500 |
---|---|---|
committer | Richard Yao <ryao@cs.stonybrook.edu> | 2012-11-18 15:20:03 -0500 |
commit | 2182f784f06dd0bf7e3b82d91c2f29bde71dfadf (patch) | |
tree | f4ac2822ac8a3b15a0b820d3843c330f8de21bc3 /src/udev/udevd.c | |
parent | 32419e7864c4c88dcf7c6d1e1a122d51edc5b592 (diff) |
Include dev-setup.h and cgroup-util.h to explicitly declare functions
Clang 3.1 indicated that we had implicitly declared several, which is
illegal in C99.
Signed-off-by: Richard Yao <ryao@gentoo.org>
Diffstat (limited to 'src/udev/udevd.c')
-rw-r--r-- | src/udev/udevd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/udev/udevd.c b/src/udev/udevd.c index bd650a1f6b..bc7b578f35 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -47,8 +47,8 @@ #include "udev.h" #include "def.h" #include "sd-daemon.h" -//#include "cgroup-util.h" -//#include "dev-setup.h" +#include "cgroup-util.h" +#include "dev-setup.h" static bool debug; |