diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-07-21 17:26:02 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-07-21 17:26:02 +0800 |
commit | e9a7b75babb76e1a3341161bcb6e80f3753b83c7 (patch) | |
tree | 04debdc816cd5405bba70904a1eea16ca6fca663 /mbbsd/args.c | |
parent | 1428a82d1644166fdaa5285c67f236ac02687818 (diff) | |
download | pttbbs-e9a7b75babb76e1a3341161bcb6e80f3753b83c7.tar pttbbs-e9a7b75babb76e1a3341161bcb6e80f3753b83c7.tar.gz pttbbs-e9a7b75babb76e1a3341161bcb6e80f3753b83c7.tar.bz2 pttbbs-e9a7b75babb76e1a3341161bcb6e80f3753b83c7.tar.lz pttbbs-e9a7b75babb76e1a3341161bcb6e80f3753b83c7.tar.xz pttbbs-e9a7b75babb76e1a3341161bcb6e80f3753b83c7.tar.zst pttbbs-e9a7b75babb76e1a3341161bcb6e80f3753b83c7.zip |
indent -i4
fix indent's word error
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@429 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/args.c')
-rw-r--r-- | mbbsd/args.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mbbsd/args.c b/mbbsd/args.c index 57e6798b..d1291176 100644 --- a/mbbsd/args.c +++ b/mbbsd/args.c @@ -1,8 +1,8 @@ -/* $Id: args.c,v 1.4 2002/07/21 08:18:41 in2 Exp $ */ +/* $Id: args.c,v 1.5 2002/07/21 09:26:02 in2 Exp $ */ #include "bbs.h" #ifdef HAVE_SETPROCTITLE -void +void initsetproctitle(int argc, char **argv, char **envp) { } @@ -14,7 +14,7 @@ char **Argv = NULL; /* pointer to argument vector */ char *LastArgv = NULL;/* end of argv */ extern char **environ; -void +void initsetproctitle(int argc, char **argv, char **envp) { register int i; @@ -37,7 +37,7 @@ initsetproctitle(int argc, char **argv, char **envp) LastArgv = argv[argc - 1] + strlen(argv[argc - 1]); } -static void +static void do_setproctitle(const char *cmdline) { char buf[256], *p; @@ -56,7 +56,7 @@ do_setproctitle(const char *cmdline) Argv[1] = NULL; } -void +void setproctitle(const char *format,...) { char buf[256]; |