diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-12-19 20:55:55 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-12-19 20:55:55 +0000 |
commit | 39a948f028c2e3cb3083d7d2f847acbd27facc23 (patch) | |
tree | a5688f12caadfa0177ab4c535e879f24c9df1215 /lisp/private.h | |
parent | 54593d8ebb341f7c2a0321fbf4207d7848b44a7f (diff) |
XFree86 4.3.99.902 (RC 2)xf86-4_3_99_902
Diffstat (limited to 'lisp/private.h')
-rw-r--r-- | lisp/private.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lisp/private.h b/lisp/private.h index 6b78d02..dd78caa 100644 --- a/lisp/private.h +++ b/lisp/private.h @@ -27,15 +27,22 @@ * Author: Paulo César Pereira de Andrade */ -/* $XFree86: xc/programs/xedit/lisp/private.h,v 1.41 2003/05/27 22:27:04 tsi Exp $ */ +/* $XFree86: xc/programs/xedit/lisp/private.h,v 1.42 2003/12/17 17:45:33 dawes Exp $ */ #ifndef Lisp_private_h #define Lisp_private_h +#include <X11/Xos.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#if defined(X_POSIX_C_SOURCE) +#define _POSIX_C_SOURCE X_POSIX_C_SOURCE #include <setjmp.h> +#undef _POSIX_C_SOURCE +#else +#include <setjmp.h> +#endif #include <unistd.h> #include <sys/time.h> #include "lisp/internal.h" |