svn commit: r260618 - head/lib/libc/stdlib

Xin LI delphij at FreeBSD.org
Tue Jan 14 01:52:35 UTC 2014


Author: delphij
Date: Tue Jan 14 01:52:34 2014
New Revision: 260618
URL: http://svnweb.freebsd.org/changeset/base/260618

Log:
  ANSI-fy prototype.
  
  MFC after:	2 weeks

Modified:
  head/lib/libc/stdlib/getsubopt.c

Modified: head/lib/libc/stdlib/getsubopt.c
==============================================================================
--- head/lib/libc/stdlib/getsubopt.c	Tue Jan 14 01:28:08 2014	(r260617)
+++ head/lib/libc/stdlib/getsubopt.c	Tue Jan 14 01:52:34 2014	(r260618)
@@ -45,9 +45,7 @@ __FBSDID("$FreeBSD$");
 char *suboptarg;
 
 int
-getsubopt(optionp, tokens, valuep)
-	char **optionp, **valuep;
-	char * const *tokens;
+getsubopt(char **optionp, char * const *tokens, char **valuep)
 {
 	int cnt;
 	char *p;


More information about the svn-src-head mailing list