Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@sources.redhat.com Delivered-To: mailing list cygwin@sources.redhat.com Mime-Version: 1.0 Date: Wed, 7 Feb 2001 13:44:57 -0500 Message-ID: <000B34CF.001419@vicr.com> From: jluciani@vicr.com Subject: Mistake in string.h To: cygwin@cygwin.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Description: cc:Mail note part I believe there is an error in the declration of strsep in the string.h file. I made the changes listed below and was able to use the function in my program. Old line: char* _strset (char*, int); New line: char* _strsep (char**, const char*); Old line: char* strset (char*, int); New line: char* strsep (char**, const char*); (* jcl *) -- Want to unsubscribe from this list? Check out: http://cygwin.com/ml/#unsubscribe-simple