aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2011-12-13 14:53:26 +0000
committerEd Schouten <ed@FreeBSD.org>2011-12-13 14:53:26 +0000
commit59340eb8e21aedfba9d715c137acdc668db134fd (patch)
tree361c8a1aadd1c74113ea160ebcef760b0c28d82f
parent84516ac070fced1590214ce9ee2d02be836cb6cc (diff)
downloadsrc-59340eb8e21aedfba9d715c137acdc668db134fd.tar.gz
src-59340eb8e21aedfba9d715c137acdc668db134fd.zip
Don't use __P().
The rest of the file doesn't use it either and according to style(9), it should not be used.
Notes
Notes: svn path=/head/; revision=228473
-rw-r--r--lib/libedit/histedit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libedit/histedit.h b/lib/libedit/histedit.h
index f245748fc7c6..8417bb3936e8 100644
--- a/lib/libedit/histedit.h
+++ b/lib/libedit/histedit.h
@@ -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.