summaryrefslogtreecommitdiff
path: root/config_f.h
diff options
context:
space:
mode:
authorMark Peek <mp@FreeBSD.org>2009-07-10 21:47:20 +0000
committerMark Peek <mp@FreeBSD.org>2009-07-10 21:47:20 +0000
commit0019e4ce59d3c558ec308aeb83e80048b72332f6 (patch)
tree17eebca78bf08f0e79096867499da4a83e098c34 /config_f.h
parentbc49518e16776ae85e579feca2ecc4c0001c64a6 (diff)
downloadsrc-test2-0019e4ce59d3c558ec308aeb83e80048b72332f6.tar.gz
src-test2-0019e4ce59d3c558ec308aeb83e80048b72332f6.zip
Notes
Diffstat (limited to 'config_f.h')
-rw-r--r--config_f.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config_f.h b/config_f.h
index aee736336325..1fd39210d35f 100644
--- a/config_f.h
+++ b/config_f.h
@@ -1,4 +1,4 @@
-/* $Header: /p/tcsh/cvsroot/tcsh/config_f.h,v 3.40 2006/08/28 14:53:04 mitr Exp $ */
+/* $Header: /p/tcsh/cvsroot/tcsh/config_f.h,v 3.42 2009/06/25 12:10:56 christos Exp $ */
/*
* config_f.h -- configure various defines for tcsh
*
@@ -143,7 +143,7 @@
* This can be much slower and no memory statistics will be
* provided.
*/
-#if defined(__MACHTEN__) || defined(PURIFY) || defined(MALLOC_TRACE) || defined(_OSD_POSIX) || defined(__MVS__) || defined (__linux__)
+#if defined(__MACHTEN__) || defined(PURIFY) || defined(MALLOC_TRACE) || defined(_OSD_POSIX) || defined(__MVS__)
# define SYSMALLOC
#else
# undef SYSMALLOC
@@ -189,7 +189,7 @@
# ifndef __GNUC__
# define RCSID(id) static char *rcsid = (id);
# else
-# define RCSID(id) static char *rcsid(const char *a) { return rcsid(a = id); }
+# define RCSID(id) static const char rcsid[] __attribute__((__used__)) = (id);
# endif /* !__GNUC__ */
#else
# define RCSID(id) /* Nothing */