diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-19 03:58:57 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-19 03:58:57 +0000 |
| commit | e9ef9e807a07a32027cede2ff9c63758a651032c (patch) | |
| tree | 12198a7c64eeb738685ba20f555dde0587dc5782 /ext/curses | |
| parent | 0a776553a1a55a3502bcd0b4f44d47a80c7227d9 (diff) | |
| download | ruby-e9ef9e807a07a32027cede2ff9c63758a651032c.tar.gz ruby-e9ef9e807a07a32027cede2ff9c63758a651032c.tar.xz ruby-e9ef9e807a07a32027cede2ff9c63758a651032c.zip | |
* regparse.c, etc.: K&R to ANSI code cleanup patch from Stefan
Huehner <stefan at huehner.org>. [ruby-core:10543]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/curses')
| -rw-r--r-- | ext/curses/curses.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/curses/curses.c b/ext/curses/curses.c index 9e448bf88..615bd65c5 100644 --- a/ext/curses/curses.c +++ b/ext/curses/curses.c @@ -72,9 +72,9 @@ struct windata { #define CHECK(c) c -static VALUE window_attroff(); -static VALUE window_attron(); -static VALUE window_attrset(); +static VALUE window_attroff(VALUE obj, VALUE attrs); +static VALUE window_attron(VALUE obj, VALUE attrs); +static VALUE window_attrset(VALUE obj, VALUE attrs); static void no_window(void) |
