From 59340eb8e21aedfba9d715c137acdc668db134fd Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Tue, 13 Dec 2011 14:53:26 +0000 Subject: [PATCH] Don't use __P(). The rest of the file doesn't use it either and according to style(9), it should not be used. --- lib/libedit/histedit.h | 4 ++-- 1 file 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.