aboutsummaryrefslogtreecommitdiff
path: root/procps/sysctl.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-04-17 21:49:34 +0000
committerRob Landley <rob@landley.net>2006-04-17 21:49:34 +0000
commit8b1f11da52319fafd43b27545a78c4b683cb7d1a (patch)
tree51f0b7c6e1d54a3b6e79e7cc4ef803b30004e9ef /procps/sysctl.c
parent559f7d8e92b03f961b6da3d16299e3b1a1bceaaa (diff)
downloadbusybox-8b1f11da52319fafd43b27545a78c4b683cb7d1a.tar.gz
Remove a superfluous quote and more non-generic standalone code.
Diffstat (limited to 'procps/sysctl.c')
-rw-r--r--procps/sysctl.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/procps/sysctl.c b/procps/sysctl.c
index bcd229fdd..850cbae67 100644
--- a/procps/sysctl.c
+++ b/procps/sysctl.c
@@ -2,8 +2,7 @@
/*
* Sysctl 1.01 - A utility to read and manipulate the sysctl parameters
*
- *
- * "Copyright 1999 George Staikos
+ * Copyright 1999 George Staikos
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*
@@ -335,11 +334,3 @@ int sysctl_display_all(const char *path, int output, int show_table)
return retval;
} /* end sysctl_display_all() */
-
-#ifdef STANDALONE_SYSCTL
-int main(int argc, char **argv)
-{
- return sysctl_main(argc, argv);
-}
-const char *bb_applet_name = "sysctl";
-#endif