(coded-charset-entity-reference-alist): Add setting for
[chise/xemacs-chise.git.1] / src / xmu.h
index 715d2ee..d6cebe4 100644 (file)
--- a/src/xmu.h
+++ b/src/xmu.h
@@ -2,6 +2,9 @@
 
 /* Synched up with: Not in FSF. */
 
+#ifndef INCLUDED_xmu_h_
+#define INCLUDED_xmu_h_
+
 #ifdef HAVE_XMU
 
 # include <X11/Xmu/CharSet.h>
 
 #else
 
-int XmuCursorNameToIndex (CONST char *name);
-int XmuReadBitmapDataFromFile (CONST char *filename, unsigned int *width,
+int XmuCursorNameToIndex (const char *name);
+int XmuReadBitmapDataFromFile (const char *filename, unsigned int *width,
                                unsigned int *height, unsigned char **datap,
                                int *x_hot, int *y_hot);
 int XmuPrintDefaultErrorMessage (Display *dpy, XErrorEvent *event, FILE *fp);
-void XmuCopyISOLatin1Lowered (char *, CONST char *);
+void XmuCopyISOLatin1Lowered (char *, const char *);
 
 #define Max(x, y)       (((x) > (y)) ? (x) : (y))
 #define Min(x, y)       (((x) < (y)) ? (x) : (y))
@@ -34,5 +37,6 @@ void XmuCopyISOLatin1Lowered (char *, CONST char *);
 #define AssignMin(x, y) {if ((y) < (x)) x = (y);}
 typedef enum {XtorientHorizontal, XtorientVertical} XtOrientation;
 
-#endif
+#endif /* HAVE_XMU */
 
+#endif /* INCLUDED_xmu_h_ */