Remove odd characters
authorGraham Bloice <graham.bloice@trihedral.com>
Sat, 16 May 2015 14:10:53 +0000 (15:10 +0100)
committerGraham Bloice <graham.bloice@trihedral.com>
Sat, 16 May 2015 14:16:54 +0000 (14:16 +0000)
Change-Id: Ie861badb555e235199549ee27ca374feb6356be6
Reviewed-on: https://code.wireshark.org/review/8482
Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
wsutil/wsgetopt.c

index 1967cc17a643f144e99123e3aa229527d995e935..eac72d5af4420d1eb6e47cbb36eb0a587f83a9bb 100644 (file)
@@ -23,7 +23,7 @@
    License along with the GNU C Library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
    */
-\f
+
 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
    Ditto for AIX 3.2 and <stdlib.h>.  */
 #ifndef _NO_PROTO
@@ -143,7 +143,6 @@ int optopt = '?';
 
 static struct _getopt_data getopt_data;
 
-\f
 #ifndef __GNU_LIBRARY__
 
 /* Avoid depending on library functions or files
@@ -154,7 +153,7 @@ extern char *getenv ();
 #endif
 
 #endif /* not __GNU_LIBRARY__ */
-\f
+
 #ifdef _LIBC
 /* Stored original parameters.
    XXX This is no good solution.  We should rather copy the args so
@@ -338,7 +337,7 @@ _getopt_initialize (int argc, char *const *argv, const char *optstring,
 
   return optstring;
 }
-\f
+
 /* Scan elements of ARGV (whose length is ARGC) for option characters
    given in OPTSTRING.
 
@@ -1223,7 +1222,7 @@ __posix_getopt (int argc, char *const *argv, const char *optstring)
 #endif
 
 #endif  /* Not ELIDE_CODE.  */
-\f
+
 #ifdef TEST
 
 /* Compile with -DTEST to make an executable for use in testing