Fix apparent bug...
[satcheck.git] / output.h
1 /*      Copyright (c) 2015 Regents of the University of California
2  *
3  *      Author: Brian Demsky <bdemsky@uci.edu>
4  *
5  *      This program is free software; you can redistribute it and/or
6  *      modify it under the terms of the GNU General Public License
7  *      version 2 as published by the Free Software Foundation.
8  */
9
10 /** @file output.h
11  *  @brief Functions for redirecting program output
12  */
13
14 #ifndef __OUTPUT_H__
15 #define __OUTPUT_H__
16
17 #include "config.h"
18
19 #ifdef CONFIG_DEBUG
20 static inline void redirect_output() { }
21 static inline void clear_program_output() { }
22 static inline void print_program_output() { }
23 #else
24 void redirect_output();
25 void clear_program_output();
26 void print_program_output();
27 #endif/* ! CONFIG_DEBUG */
28
29 #endif/* __OUTPUT_H__ */