diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog
index 538a55c465f1e13309a9af6b6f7cc4445b2e984d..26e0fae9fffdf7114a573fd4026763f229635f74 100644
--- a/boehm-gc/ChangeLog
+++ b/boehm-gc/ChangeLog
@@ -1,3 +1,7 @@
+2000-03-26  Anthony Green  <green@redhat.com>
+
+	* misc.c (GC_enable): Always define GC_enable and GC_disable.
+
 2000-02-14  Tom Tromey  <tromey@cygnus.com>
 
 	* gc.h (dlopen): Define as GC_dlopen on Linux.
diff --git a/boehm-gc/misc.c b/boehm-gc/misc.c
index 8c0d0147bf6fc845275e2833ab2c79795c87db0d..60505af16af7c4e8373acb61e0c97aa0a1b789f7 100644
--- a/boehm-gc/misc.c
+++ b/boehm-gc/misc.c
@@ -819,7 +819,6 @@ struct callinfo info[NFRAMES];
 
 #endif /* SAVE_CALL_CHAIN */
 
-# ifdef SRC_M3
 void GC_enable()
 {
     GC_dont_gc--;
@@ -829,7 +828,6 @@ void GC_disable()
 {
     GC_dont_gc++;
 }
-# endif
 
 #if !defined(NO_DEBUGGING)