blob: b4d9c68d028e831440d43d6f67474cc39734db01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Handle Solaris 2.4. */
#include "sol2-3.h"
#define SOLARIS2_4
/* Solaris 2.4 has a broken vfork. And a header file has a declaration
that conflicts with the definition of vfork in sysdep.c.
This definition should avoid it. */
#define vfork emacs_vfork
/* Get rid of -traditional and let const really do its thing. */
#ifdef __GNUC__
#undef C_SWITCH_SYSTEM
#undef const
#endif /* __GNUC__ */
|