diff options
author | Roy Marples <roy@marples.name> | 2007-07-31 16:05:56 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-07-31 16:05:56 +0000 |
commit | c674026f9e5cf9538101ebc5c19d4da973731ad1 (patch) | |
tree | 76c3dd7c0647054d6fff55d5104d1f0977c85c94 /src/rc-depend.c | |
parent | 02fcdeede4d2a14c10a8efcf8edc212b9a085708 (diff) |
All our binaries are now mulicalls into rc, which makes our on disk size
a lot smaller.
Diffstat (limited to 'src/rc-depend.c')
-rw-r--r-- | src/rc-depend.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rc-depend.c b/src/rc-depend.c index 4c030fee..9d45e9c1 100644 --- a/src/rc-depend.c +++ b/src/rc-depend.c @@ -13,12 +13,13 @@ #include <stdlib.h> #include <string.h> +#include "builtins.h" #include "einfo.h" #include "rc.h" #include "rc-misc.h" #include "strlist.h" -int main (int argc, char **argv) +int rc_depend (int argc, char **argv) { char **types = NULL; char **services = NULL; |