Home | History | Annotate | Line # | Download | only in indent
opt_psl.c revision 1.1
      1 /* $NetBSD: opt_psl.c,v 1.1 2021/10/16 03:20:13 rillig Exp $ */
      2 /* $FreeBSD$ */
      3 
      4 #indent input
      5 void function_declaration(void);
      6 
      7 void function_definition(void) {}
      8 #indent end
      9 
     10 #indent run -psl
     11 void		function_declaration(void);
     12 
     13 void
     14 function_definition(void)
     15 {
     16 }
     17 #indent end
     18 
     19 #indent input
     20 void function_declaration(void);
     21 
     22 void function_definition(void) {}
     23 #indent end
     24 
     25 #indent run -npsl
     26 void		function_declaration(void);
     27 
     28 void function_definition(void)
     29 {
     30 }
     31 #indent end
     32