]> git.wh0rd.org Git - nano.git/commitdiff
add missing #ifdef
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 8 Feb 2005 20:39:28 +0000 (20:39 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 8 Feb 2005 20:39:28 +0000 (20:39 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2310 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/chars.c
src/proto.h

index dc7303ce040898e14748eee9fb8b66e87f4e99eb..df9494572b8e549c955d48786e19ab5e7c416542 100644 (file)
@@ -762,6 +762,7 @@ size_t mbstrnlen(const char *s, size_t maxlen)
 #endif
 }
 
+#ifndef DISABLE_TABCOMP
 /* Find the one-based position of the last occurrence of character c in
  * the first n characters of s.  Return 0 if c is not found. */
 size_t strrchrn(const char *s, int c, size_t n)
@@ -775,3 +776,4 @@ size_t strrchrn(const char *s, int c, size_t n)
 
     return 0;
 }
+#endif
index 26940c1b17d52375b626c8752f0a9ce18db0539c..1abb8a95a779050bc49a150c16ce7933ae39854f 100644 (file)
@@ -205,7 +205,9 @@ size_t mbstrlen(const char *s);
 size_t nstrnlen(const char *s, size_t maxlen);
 #endif
 size_t mbstrnlen(const char *s, size_t maxlen);
+#ifndef DISABLE_TABCOMP
 size_t strrchrn(const char *s, int c, size_t n);
+#endif
 
 /* Public functions in color.c. */
 #ifdef ENABLE_COLOR