summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-03-28 16:57:41 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-03-28 16:57:41 +0000
commited47c6972b17941bade9cb56a5287ac22e528f50 (patch)
tree34b3a4bbd6bc4ed8d039e607bcbd0382ce978866 /src
parent97f4474339dc84ffcdac302958ded586c67416bd (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
Diffstat (limited to 'src')
-rw-r--r--src/flstring.h13
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 $".
*/