minor indent
This commit is contained in:
parent
856da248f7
commit
a2c61d4d5d
1 changed files with 14 additions and 19 deletions
|
@ -22,7 +22,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: BaseDisplay.cc,v 1.21 2002/10/25 20:51:54 fluxgen Exp $
|
// $Id: BaseDisplay.cc,v 1.22 2002/11/12 14:40:26 fluxgen Exp $
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
#include "Timer.hh"
|
#include "Timer.hh"
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include "../config.h"
|
#include "config.h"
|
||||||
#endif // HAVE_CONFIG_H
|
#endif // HAVE_CONFIG_H
|
||||||
|
|
||||||
// use GNU extensions
|
// use GNU extensions
|
||||||
|
@ -49,14 +49,9 @@
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#endif // HAVE_FCNTL_H
|
#endif // HAVE_FCNTL_H
|
||||||
|
|
||||||
#ifdef HAVE_STDIO_H
|
#include <cstdio>
|
||||||
#include <stdio.h>
|
#include <cstdlib>
|
||||||
#endif // HAVE_STDIO_H
|
#include <cstring>
|
||||||
|
|
||||||
#ifdef STDC_HEADERS
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#endif // STDC_HEADERS
|
|
||||||
|
|
||||||
#ifdef HAVE_UNISTD_H
|
#ifdef HAVE_UNISTD_H
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
@ -72,21 +67,21 @@
|
||||||
#endif // HAVE_SIGNAL_H
|
#endif // HAVE_SIGNAL_H
|
||||||
|
|
||||||
#ifndef SA_NODEFER
|
#ifndef SA_NODEFER
|
||||||
# ifdef SA_INTERRUPT
|
#ifdef SA_INTERRUPT
|
||||||
# define SA_NODEFER SA_INTERRUPT
|
#define SA_NODEFER SA_INTERRUPT
|
||||||
# else // !SA_INTERRUPT
|
#else // !SA_INTERRUPT
|
||||||
# define SA_NODEFER (0)
|
#define SA_NODEFER (0)
|
||||||
# endif // SA_INTERRUPT
|
#endif // SA_INTERRUPT
|
||||||
#endif // SA_NODEFER
|
#endif // SA_NODEFER
|
||||||
|
|
||||||
#ifdef HAVE_SYS_WAIT_H
|
#ifdef HAVE_SYS_WAIT_H
|
||||||
# include <sys/types.h>
|
#include <sys/types.h>
|
||||||
# include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#endif // HAVE_SYS_WAIT_H
|
#endif // HAVE_SYS_WAIT_H
|
||||||
|
|
||||||
#if defined(HAVE_PROCESS_H) && defined(__EMX__)
|
#if defined(HAVE_PROCESS_H) && defined(__EMX__)
|
||||||
# include <process.h>
|
#include <process.h>
|
||||||
#endif // HAVE_PROCESS_H __EMX__
|
#endif // HAVE_PROCESS_H && __EMX__
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
Loading…
Reference in a new issue