blob: 1ebf79dcf589b129518b3fa8592f8f211d2dce25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* header.h
* Dirty little file to include header files w/out autotools.
*
* Copyright 1999-2004 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
* $Header$
*/
/* Common includes */
#define HAVE_TIOCNOTTY
#define HAVE_SETSID
/* OS-specific includes */
#if defined(__linux__)
# define HAVE_SYS_SYSMACROS_H
# define HAVE_ERROR_H
#endif
/* Now we actually include crap ;) */
#ifdef HAVE_ERROR_H
# include <error.h>
#endif
#ifdef HAVE_SYS_SYSMACROS_H
# include <sys/sysmacros.h>
#endif
|