summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2000-08-18 22:33:38 +0000
committercvs2svn <admin@example.com>2000-08-18 22:33:38 +0000
commita40818748f6a60e49f1723a6611b8f148e113844 (patch)
tree1f188ca1894b74aa2e2b89c829ba84a357f749f9
parentbbe6d8db7380c8f9418f2af11adf899db63b0da3 (diff)
parent35e9b48d791e82b18d6ddb2ee244ddee841fc370 (diff)
downloadguile-a40818748f6a60e49f1723a6611b8f148e113844.tar.gz
This commit was manufactured by cvs2svn to create tagcmm-post-cards
'cmm-post-cards'.
-rw-r--r--libguile/gc.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/libguile/gc.h b/libguile/gc.h
index 446e15e00..12b17805f 100644
--- a/libguile/gc.h
+++ b/libguile/gc.h
@@ -81,45 +81,6 @@ typedef scm_cell * SCM_CELLPTR;
# define PTR2SCM(x) (SCM_PACK ((scm_bits_t) (x)))
#endif /* def _UNICOS */
-/* This mess was copied from the GNU getpagesize.h. */
-
-#ifndef HAVE_GETPAGESIZE
-
-/* Assume that all systems that can run configure have sys/param.h. */
-# ifndef HAVE_SYS_PARAM_H
-# define HAVE_SYS_PARAM_H 1
-# endif
-
-# ifdef _SC_PAGESIZE
-# define getpagesize() sysconf(_SC_PAGESIZE)
-# else /* no _SC_PAGESIZE */
-# ifdef HAVE_SYS_PARAM_H
-# include <sys/param.h>
-# ifdef EXEC_PAGESIZE
-# define getpagesize() EXEC_PAGESIZE
-# else /* no EXEC_PAGESIZE */
-# ifdef NBPG
-# define getpagesize() NBPG * CLSIZE
-# ifndef CLSIZE
-# define CLSIZE 1
-# endif /* no CLSIZE */
-# else /* no NBPG */
-# ifdef NBPC
-# define getpagesize() NBPC
-# else /* no NBPC */
-# ifdef PAGESIZE
-# define getpagesize() PAGESIZE
-# endif /* PAGESIZE */
-# endif /* no NBPC */
-# endif /* no NBPG */
-# endif /* no EXEC_PAGESIZE */
-# else /* no HAVE_SYS_PARAM_H */
-# define getpagesize() 8192 /* punt totally */
-# endif /* no HAVE_SYS_PARAM_H */
-# endif /* no _SC_PAGESIZE */
-
-#endif /* no HAVE_GETPAGESIZE */
-
#define SCM_GC_CARD_N_HEADER_CELLS 1
#define SCM_GC_CARD_N_CELLS (8 * sizeof (scm_cell) * 4)