summaryrefslogtreecommitdiff
path: root/acconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'acconfig.h')
-rw-r--r--acconfig.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h
index 811c00d47..324f45dbe 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -73,6 +73,9 @@
73/* Define if you have /dev/ptc */ 73/* Define if you have /dev/ptc */
74#undef HAVE_DEV_PTS_AND_PTC 74#undef HAVE_DEV_PTS_AND_PTC
75 75
76/* Path to xauth binary */
77#undef XAUTH_PATH
78
76@BOTTOM@ 79@BOTTOM@
77 80
78/* ******************* Shouldn't need to edit below this line ************** */ 81/* ******************* Shouldn't need to edit below this line ************** */
@@ -258,3 +261,14 @@ enum
258# define __P(x) x 261# define __P(x) x
259#endif 262#endif
260 263
264#ifdef __GNUC__
265# if __GNUC__ < 2
266# define INLINE inline
267# define __attribute__(x)
268# else
269# define INLINE __inline__
270# endif /* __GNUC__ < 2 */
271#else
272# define __attribute__(x)
273# define INLINE
274#endif /* __GNUC__ */