diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-03-28 16:57:41 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-03-28 16:57:41 +0000 |
| commit | ed47c6972b17941bade9cb56a5287ac22e528f50 (patch) | |
| tree | 34b3a4bbd6bc4ed8d039e607bcbd0382ce978866 | |
| parent | 97f4474339dc84ffcdac302958ded586c67416bd (diff) | |
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
| -rw-r--r-- | src/flstring.h | 13 |
1 files 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 <strings.h> # 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 $". */ |
