diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-10-25 05:50:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-10-25 05:50:21 +0000 |
commit | b81844b1738c584d92330a5ccd0fbd8b603d2886 (patch) | |
tree | 4fae0d4cd26048177fc5cd1a2dd91abc99ba0f99 /src/utils/getopt.c | |
parent | 59da2105d8e6d95345b3b942a2e2aba8cead4838 (diff) | |
download | postgresql-b81844b1738c584d92330a5ccd0fbd8b603d2886.tar.gz postgresql-b81844b1738c584d92330a5ccd0fbd8b603d2886.zip |
pgindent run on all C files. Java run to follow. initdb/regression
tests pass.
Diffstat (limited to 'src/utils/getopt.c')
-rw-r--r-- | src/utils/getopt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/utils/getopt.c b/src/utils/getopt.c index 8aa46c72f74..108f2d85f50 100644 --- a/src/utils/getopt.c +++ b/src/utils/getopt.c @@ -33,7 +33,6 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)getopt.c 8.3 (Berkeley) 4/27/95"; - #endif /* LIBC_SCCS and not lint */ #include <stdio.h> @@ -82,7 +81,6 @@ const char *ostr; if ((optopt = (int) *place++) == (int) ':' || !(oli = strchr(ostr, optopt))) { - /* * if the user didn't specify '-' as an option, assume it means * -1. |