Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Jan 2014 01:52:34 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r260618 - head/lib/libc/stdlib
Message-ID:  <201401140152.s0E1qYlp003002@svn.freebsd.org>

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



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