Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Dec 2009 04:34:52 +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: r200469 - head/usr.bin/pr
Message-ID:  <200912130434.nBD4Yqn0073858@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Sun Dec 13 04:34:51 2009
New Revision: 200469
URL: http://svn.freebsd.org/changeset/base/200469

Log:
  egetopt.c does not use any stdlib.h definations, nor it referenced any
  symbol from other module, so remove reference of stdlib.h and extern.h.
  
  Verified with:	md5(1)

Modified:
  head/usr.bin/pr/egetopt.c

Modified: head/usr.bin/pr/egetopt.c
==============================================================================
--- head/usr.bin/pr/egetopt.c	Sun Dec 13 04:14:55 2009	(r200468)
+++ head/usr.bin/pr/egetopt.c	Sun Dec 13 04:34:51 2009	(r200469)
@@ -46,11 +46,8 @@ __FBSDID("$FreeBSD$");
 
 #include <ctype.h>
 #include <stdio.h>
-#include <stdlib.h>
 #include <string.h>
 
-#include "extern.h"
-
 /*
  * egetopt:	get option letter from argument vector (an extended
  *		version of getopt).



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