handleit(), being static, should be declared before usage.
Change-Id: I5cf9767ed2fc552f7a22c7570d0a4d256a4111b1
Reviewed-on: http://gerrit.openafs.org/11134
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Reviewed-by: Perry Ruiter <pruiter@sinenomine.net>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: D Brashear <shadow@your-file-system.com>
int force = 0, verbose = 0, unconv = 0;
static int
-ConvCmd(struct cmd_syndesc *as, void *arock)
-{
- unconv = 0;
- handleit(as);
-}
-
-static int
-UnConvCmd(struct cmd_syndesc *as, void *arock)
-{
- unconv = 1;
- handleit(as);
-}
-
-static int
handleit(struct cmd_syndesc *as)
{
struct cmd_item *ti;
}
}
+static int
+ConvCmd(struct cmd_syndesc *as, void *arock)
+{
+ unconv = 0;
+ handleit(as);
+}
+
+static int
+UnConvCmd(struct cmd_syndesc *as, void *arock)
+{
+ unconv = 1;
+ handleit(as);
+}
+
#include "AFS_component_version_number.c"