Merge from emacs-24; up to 2012-12-17T11:17:34Z!rgm@gnu.org
[bpt/emacs.git] / oldXMenu / XCrAssoc.c
index 36b77ce..9443481 100644 (file)
@@ -1,7 +1,4 @@
 /* Copyright    Massachusetts Institute of Technology    1985  */
-/* Copyright (C) 2001, 2002, 2003, 2004, 2005,
-                 2006, 2007 Free Software Foundation, Inc.  */
-
 #include "copyright.h"
 
 
@@ -14,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
@@ -23,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 */
@@ -59,5 +54,3 @@ XAssocTable *XCreateAssocTable(size)
        return(table);
 }
 
-/* arch-tag: 5df3237d-ada0-4345-a3ab-282cafb397aa
-   (do not change this comment) */