diff src/xmu.c @ 203:850242ba4a81 r20-3b28

Import from CVS: tag r20-3b28
author cvs
date Mon, 13 Aug 2007 10:02:21 +0200
parents 3d6bfa290dbd
children c5d627a313b1
line wrap: on
line diff
--- a/src/xmu.c	Mon Aug 13 10:01:24 2007 +0200
+++ b/src/xmu.c	Mon Aug 13 10:02:21 2007 +0200
@@ -56,10 +56,10 @@
 #include <ctype.h>
 
 
-int XmuCursorNameToIndex (const char *name)
+int XmuCursorNameToIndex (CONST char *name)
 {
-    static const struct _CursorName {
-	const char	*name;
+    static CONST struct _CursorName {
+	CONST char	*name;
 	unsigned int	shape;
     } cursor_names[] = {
 			{"x_cursor",		XC_X_cursor},
@@ -140,7 +140,7 @@
 			{"watch",		XC_watch},
 			{"xterm",		XC_xterm},
     };
-    const struct _CursorName *table;
+    CONST struct _CursorName *table;
     int i;
     char tmp[40];
 
@@ -371,7 +371,7 @@
 }
 
 
-int XmuReadBitmapDataFromFile (const char *filename,
+int XmuReadBitmapDataFromFile (CONST char *filename,
 			       /* Remaining args are RETURNED */
 			       unsigned int *width,
 			       unsigned int *height,