svn commit: r228473 - head/lib/libedit

Ed Schouten ed at FreeBSD.org
Tue Dec 13 14:53:26 UTC 2011


Author: ed
Date: Tue Dec 13 14:53:26 2011
New Revision: 228473
URL: http://svn.freebsd.org/changeset/base/228473

Log:
  Don't use __P().
  
  The rest of the file doesn't use it either and according to style(9), it
  should not be used.

Modified:
  head/lib/libedit/histedit.h

Modified: head/lib/libedit/histedit.h
==============================================================================
--- head/lib/libedit/histedit.h	Tue Dec 13 14:36:04 2011	(r228472)
+++ head/lib/libedit/histedit.h	Tue Dec 13 14:53:26 2011	(r228473)
@@ -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.


More information about the svn-src-head mailing list