xref: /netbsd-src/external/gpl2/grep/dist/lib/closeout.h (revision a8fa202a6440953be7b92a8960a811bff58203f4)
1 /*	$NetBSD: closeout.h,v 1.1.1.1 2016/01/10 21:36:18 christos Exp $	*/
2 
3 #ifndef CLOSEOUT_H
4 # define CLOSEOUT_H 1
5 
6 # ifndef PARAMS
7 #  if defined PROTOTYPES || (defined __STDC__ && __STDC__)
8 #   define PARAMS(Args) Args
9 #  else
10 #   define PARAMS(Args) ()
11 #  endif
12 # endif
13 
14 void close_stdout_set_status PARAMS ((int status));
15 void close_stdout_set_file_name PARAMS ((const char *file));
16 void close_stdout PARAMS ((void));
17 void close_stdout_status PARAMS ((int status));
18 
19 #endif
20