Don't use __P().

The rest of the file doesn't use it either and according to style(9), it
should not be used.
This commit is contained in:
Ed Schouten 2011-12-13 14:53:26 +00:00
parent 84516ac070
commit 59340eb8e2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=228473

View File

@ -158,8 +158,8 @@ void el_resize(EditLine *);
/*
* Set user private data.
*/
void el_data_set __P((EditLine *, void *));
void * el_data_get __P((EditLine *));
void el_data_set(EditLine *, void *);
void * el_data_get(EditLine *);
/*
* User-defined function interface.