From ed47c6972b17941bade9cb56a5287ac22e528f50 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Thu, 28 Mar 2002 16:57:41 +0000 Subject: [PATCH] Change C++ comments in flstring.h to C comments... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2047 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/flstring.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/flstring.h b/src/flstring.h index b03a472ae..042c60464 100644 --- a/src/flstring.h +++ b/src/flstring.h @@ -1,5 +1,5 @@ /* - * "$Id: flstring.h,v 1.1.2.3 2002/03/25 21:55:05 easysw Exp $" + * "$Id: flstring.h,v 1.1.2.4 2002/03/28 16:57:41 easysw Exp $" * * Common string header file for the Fast Light Tool Kit (FLTK). * @@ -33,9 +33,12 @@ # include # endif /* HAVE_STRINGS_H */ -// Apparently Unixware defines "index" to strchr (!) rather than -// providing a proper entry point or not providing the (obsolete) -// BSD function. Make sure index is not defined... +/* + * Apparently Unixware defines "index" to strchr (!) rather than + * providing a proper entry point or not providing the (obsolete) + * BSD function. Make sure index is not defined... + */ + # ifdef index # undef index # endif // index @@ -68,5 +71,5 @@ extern int fl_vsnprintf(char *, size_t, const char *, va_list ap); #endif /* !flstring_h */ /* - * End of "$Id: flstring.h,v 1.1.2.3 2002/03/25 21:55:05 easysw Exp $". + * End of "$Id: flstring.h,v 1.1.2.4 2002/03/28 16:57:41 easysw Exp $". */