2000-03-03 Elena Zannoni <ezannoni@kwikemart.cygnus.com>

* defs.h (struct continuation_arg): Change type of field 'data'
 	from PTR to void *.

	* event-loop.h: Eliminate uses of PTR, use 'void *' instead.

	* event-top.c: Ditto.
This commit is contained in:
Elena Zannoni
2000-03-03 15:37:09 +00:00
parent 0ef33cd05d
commit 97bb9d91de
4 changed files with 20 additions and 11 deletions

View File

@ -57,7 +57,7 @@
Corollary tasks are the creation and deletion of event sources. */
typedef PTR gdb_client_data;
typedef void *gdb_client_data;
struct async_signal_handler;
typedef void (handler_func) (int, gdb_client_data);
typedef void (sig_handler_func) (gdb_client_data);