Revision: 41410
http://brlcad.svn.sourceforge.net/brlcad/?rev=41410&view=rev
Author: brlcad
Date: 2010-11-21 14:44:30 +0000 (Sun, 21 Nov 2010)
Log Message:
-----------
these should always be static since they have inline hinting in order to make
the clang compiler's c99 behavior mode happy. see
http://clang.llvm.org/compatibility.html#inline
Modified Paths:
--------------
brlcad/trunk/src/libbu/fnmatch.c
Modified: brlcad/trunk/src/libbu/fnmatch.c
===================================================================
--- brlcad/trunk/src/libbu/fnmatch.c 2010-11-19 20:32:44 UTC (rev 41409)
+++ brlcad/trunk/src/libbu/fnmatch.c 2010-11-21 14:44:30 UTC (rev 41410)
@@ -83,7 +83,7 @@
/* isblank appears to be obsolete in newer ctype.h files so use
* fnblank instead when looking for the "blank" character class.
*/
-HIDDEN inline int
+static inline int
fnblank(int c)
{
#ifdef isblank
@@ -94,77 +94,77 @@
}
-HIDDEN inline int
+static inline int
fnalnum(int c)
{
return isalnum(c);
}
-HIDDEN inline int
+static inline int
fnalpha(int c)
{
return isalpha(c);
}
-HIDDEN inline int
+static inline int
fncntrl(int c)
{
return iscntrl(c);
}
-HIDDEN inline int
+static inline int
fndigit(int c)
{
return isdigit(c);
}
-HIDDEN inline int
+static inline int
fngraph(int c)
{
return isgraph(c);
}
-HIDDEN inline int
+static inline int
fnlower(int c)
{
return islower(c);
}
-HIDDEN inline int
+static inline int
fnprint(int c)
{
return isprint(c);
}
-HIDDEN inline int
+static inline int
fnpunct(int c)
{
return ispunct(c);
}
-HIDDEN inline int
+static inline int
fnspace(int c)
{
return isspace(c);
}
-HIDDEN inline int
+static inline int
fnupper(int c)
{
return isupper(c);
}
-HIDDEN inline int
+static inline int
fnxdigit(int c)
{
return isxdigit(c);
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3.
Spend less time writing and rewriting code and more time creating great
experiences on the web. Be a part of the beta today
http://p.sf.net/sfu/msIE9-sfdev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits