[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] r10722: Make it build with -O0 as well (tor/trunk/src/common)



Author: weasel
Date: 2007-07-02 13:50:57 -0400 (Mon, 02 Jul 2007)
New Revision: 10722

Modified:
   tor/trunk/src/common/container.h
Log:
Make it build with -O0 as well

Modified: tor/trunk/src/common/container.h
===================================================================
--- tor/trunk/src/common/container.h	2007-07-02 17:48:56 UTC (rev 10721)
+++ tor/trunk/src/common/container.h	2007-07-02 17:50:57 UTC (rev 10722)
@@ -55,21 +55,21 @@
 #ifdef DEBUG_SMARTLIST
 /** Return the number of items in sl.
  */
-extern INLINE int smartlist_len(const smartlist_t *sl) ATTR_PURE;
-extern INLINE int smartlist_len(const smartlist_t *sl) {
+static INLINE int smartlist_len(const smartlist_t *sl) ATTR_PURE;
+static INLINE int smartlist_len(const smartlist_t *sl) {
   tor_assert(sl);
   return (sl)->num_used;
 }
 /** Return the <b>idx</b>th element of sl.
  */
-extern INLINE void *smartlist_get(const smartlist_t *sl, int idx) ATTR_PURE;
-extern INLINE void *smartlist_get(const smartlist_t *sl, int idx) {
+static INLINE void *smartlist_get(const smartlist_t *sl, int idx) ATTR_PURE;
+static INLINE void *smartlist_get(const smartlist_t *sl, int idx) {
   tor_assert(sl);
   tor_assert(idx>=0);
   tor_assert(sl->num_used > idx);
   return sl->list[idx];
 }
-extern INLINE void smartlist_set(smartlist_t *sl, int idx, void *val) {
+static INLINE void smartlist_set(smartlist_t *sl, int idx, void *val) {
   tor_assert(sl);
   tor_assert(idx>=0);
   tor_assert(sl->num_used > idx);