diff options
author | Pierre Muller <muller@sourceware.org> | 2011-03-14 16:55:04 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2011-03-14 16:55:04 +0000 |
commit | 2021ad3a8c483c6dbd58652c9d72777712472fe7 (patch) | |
tree | f0272cc316f96800c87d1e7f185a2a1bc1d07aeb /gdb/python | |
parent | 7371cf6d8db5a0c04550fc95b1acc87857ac348c (diff) | |
download | binutils-2021ad3a8c483c6dbd58652c9d72777712472fe7.zip binutils-2021ad3a8c483c6dbd58652c9d72777712472fe7.tar.gz binutils-2021ad3a8c483c6dbd58652c9d72777712472fe7.tar.bz2 |
Fix ARI warning about function names in first column.
Put prototype declaration on same line as return type.
* objc-exp.y: Ditto.
* p-exp.y: Ditto.
* python/py-stopevent.h: Ditto.
For long function names, split parameters to allow function name
on same line as return type.
* solib-pa64.c: Ditto.
* varobj.c: Ditto.
* varobj.h: Ditto.
For long function declaration, use single line.
* hppa-tdep.h: Ditto.
* inferior.h: Ditto.
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-stopevent.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gdb/python/py-stopevent.h b/gdb/python/py-stopevent.h index 690cbbd..52f3511 100644 --- a/gdb/python/py-stopevent.h +++ b/gdb/python/py-stopevent.h @@ -28,10 +28,8 @@ extern void stop_evpy_dealloc (PyObject *self); extern int emit_stop_event (struct bpstats *bs, enum target_signal stop_signal); -extern PyObject * -create_breakpoint_event_object (PyObject *breakpoint); +extern PyObject *create_breakpoint_event_object (PyObject *breakpoint); -extern PyObject * -create_signal_event_object (enum target_signal stop_signal); +extern PyObject *create_signal_event_object (enum target_signal stop_signal); #endif /* GDB_PY_STOPEVENT_H */ |