Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Dec 2011 14:53:26 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r228473 - head/lib/libedit
Message-ID:  <201112131453.pBDErQjx055343@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201112131453.pBDErQjx055343>