diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-03-03 15:37:09 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-03-03 15:37:09 +0000 |
commit | 0ab881de28309dac9ea073a6ffd893cb064673a3 (patch) | |
tree | 4b6852e843d1583334d9f32effc94d77d6cbe21b /gdb/event-loop.h | |
parent | fe247801536ddba3725a4a13279a2d621c450892 (diff) | |
download | gdb-0ab881de28309dac9ea073a6ffd893cb064673a3.tar.gz |
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.
Diffstat (limited to 'gdb/event-loop.h')
-rw-r--r-- | gdb/event-loop.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/event-loop.h b/gdb/event-loop.h index 02c3fe30899..54e699066ec 100644 --- a/gdb/event-loop.h +++ b/gdb/event-loop.h @@ -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); |