Home | History | Annotate | Line # | Download | only in indent
opt_bc.c revision 1.1
      1 /* $NetBSD: opt_bc.c,v 1.1 2021/10/16 03:20:13 rillig Exp $ */
      2 /* $FreeBSD$ */
      3 
      4 #indent input
      5 int a,b,c;
      6 void function_declaration(int a,int b,int c);
      7 #indent end
      8 
      9 #indent run -bc
     10 int		a,
     11 		b,
     12 		c;
     13 void		function_declaration(int a, int b, int c);
     14 #indent end
     15 
     16 #indent input
     17 int a,b,c;
     18 void function_declaration(int a,int b,int c);
     19 #indent end
     20 
     21 #indent run -nbc
     22 int		a, b, c;
     23 void		function_declaration(int a, int b, int c);
     24 #indent end
     25