]> code.delx.au - gnu-emacs/blobdiff - oldXMenu/XCrAssoc.c
Prevent bar cursor overwriting next glyph (bug#16856)
[gnu-emacs] / oldXMenu / XCrAssoc.c
index 874ed81d31f14e03d24d05f7d3a4b2bb8c89faad..94434814063afb807d727abd502c84ea0c6d2384 100644 (file)
@@ -11,8 +11,6 @@
 #define NULL 0
 #endif
 
-extern int errno;
-
 /*
  * XCreateAssocTable - Create an XAssocTable.  The size argument should be
  * a power of two for efficiency reasons.  Some size suggestions: use 32
@@ -20,8 +18,8 @@ extern int errno;
  * buckets is 8.  If there is an error creating the XAssocTable, a NULL
  * pointer is returned.
  */
-XAssocTable *XCreateAssocTable(size)
-       register int size;              /* Desired size of the table. */
+XAssocTable *XCreateAssocTable(register int size)
+                                       /* Desired size of the table. */
 {
        register XAssocTable *table;    /* XAssocTable to be initialized. */
        register XAssoc *buckets;       /* Pointer to the first bucket in */
@@ -56,5 +54,3 @@ XAssocTable *XCreateAssocTable(size)
        return(table);
 }
 
-/* arch-tag: 5df3237d-ada0-4345-a3ab-282cafb397aa
-   (do not change this comment) */