Home | History | Annotate | Line # | Download | only in indent
opt_psl.c revision 1.2
      1 /* $NetBSD: opt_psl.c,v 1.2 2021/10/16 05:40:17 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 run -npsl
     20 void		function_declaration(void);
     21 
     22 void function_definition(void)
     23 {
     24 }
     25 #indent end
     26