X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/a73d7753f965734247be482efa125da5235996da..ec10ef9:/oldXMenu/XDelAssoc.c diff --git a/oldXMenu/XDelAssoc.c b/oldXMenu/XDelAssoc.c index 53192a54bf..ec1d09d46e 100644 --- a/oldXMenu/XDelAssoc.c +++ b/oldXMenu/XDelAssoc.c @@ -1,28 +1,16 @@ /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2001, 2002, 2003, 2004, 2005, - 2006, 2007 Free Software Foundation, Inc. */ #include "copyright.h" - -#include -#include "X10.h" -void emacs_remque(); -struct qelem { - struct qelem *q_forw; - struct qelem *q_back; - char q_data[1]; -}; +#include "XMenuInt.h" /* * XDeleteAssoc - Delete an association in an XAssocTable keyed on * an XId. An association may be removed only once. Redundant * deletes are meaningless (but cause no problems). */ -XDeleteAssoc(dpy, table, x_id) - register Display *dpy; - register XAssocTable *table; - register XID x_id; +void +XDeleteAssoc(register Display *dpy, register XAssocTable *table, register XID x_id) { int hash; register XAssoc *bucket; @@ -60,6 +48,3 @@ XDeleteAssoc(dpy, table, x_id) /* It is apparently not in the table. */ return; } - -/* arch-tag: 90981a7e-601c-487a-b364-cdf55d6c475b - (do not change this comment) */