diff --git a/src/global.h b/src/global.h
index f91b793972180c084420c6634f481091efa36731..2b831fca7a2ae6bfe0675719cd55074b077a1709 100644
--- a/src/global.h
+++ b/src/global.h
@@ -5,7 +5,7 @@
 \*/
 
 /*
- * $Id: global.h,v 1.46 2000/08/03 16:18:49 grubba Exp $
+ * $Id: global.h,v 1.47 2000/08/07 15:54:20 grubba Exp $
  */
 #ifndef GLOBAL_H
 #define GLOBAL_H
@@ -325,6 +325,8 @@ typedef struct p_wchar_p
 #define DO_IF_SECURITY(X)
 #endif
 
+/* Used by the AutoBuild system to mark known warnings. */
+#define DO_NOT_WARN(X)	(X)
 
 #include "port.h"
 #include "dmalloc.h"
diff --git a/src/modules/Image/image.h b/src/modules/Image/image.h
index f8e61b4b8d61c0929625393e9fe031a6eeb7e244..a43a756a35d8ea5f929ae7ed2f285c6360aa646b 100644
--- a/src/modules/Image/image.h
+++ b/src/modules/Image/image.h
@@ -1,7 +1,7 @@
 /*
 **! module Image
 **! note
-**!	$Id: image.h,v 1.41 2000/08/07 13:40:47 grubba Exp $
+**!	$Id: image.h,v 1.42 2000/08/07 15:54:20 grubba Exp $
 */
 
 #ifdef PIKE_IMAGE_IMAGE_H
@@ -38,7 +38,6 @@ extern int image_cpuid;
 #define RGBL_TO_RGB(RGB,RGBL) (((RGB).r=COLORL_TO_COLOR((RGBL).r)),((RGB).g=COLORL_TO_COLOR((RGBL).g)),((RGB).b=COLORL_TO_COLOR((RGBL).b)))
 
 /* Some marcos to avoid loss of precision warnings. */
-#define DO_NOT_WARN(X)	(X)
 #ifdef __ECL
 static inline int DOUBLE_TO_INT(double d)
 {