Add arch taglines
[bpt/emacs.git] / oldXMenu / XCrAssoc.c
index 864ed9d..71c2aa2 100644 (file)
@@ -37,14 +37,14 @@ XAssocTable *XCreateAssocTable(size)
        register XAssocTable *table;    /* XAssocTable to be initialized. */
        register XAssoc *buckets;       /* Pointer to the first bucket in */
                                        /* the bucket array. */
-       
+
        /* Malloc the XAssocTable. */
        if ((table = (XAssocTable *)malloc(sizeof(XAssocTable))) == NULL) {
                /* malloc call failed! */
                errno = ENOMEM;
                return(NULL);
        }
-       
+
        /* calloc the buckets (actually just their headers). */
        buckets = (XAssoc *)calloc((unsigned)size, (unsigned)sizeof(XAssoc));
        if (buckets == NULL) {
@@ -66,3 +66,6 @@ XAssocTable *XCreateAssocTable(size)
 
        return(table);
 }
+
+/* arch-tag: 5df3237d-ada0-4345-a3ab-282cafb397aa
+   (do not change this comment) */