From efe87112fbe160d5ba76ebc410ee1d45e2c91355 Mon Sep 17 00:00:00 2001 From: Jason Parker Date: Tue, 30 Oct 2007 15:47:19 +0000 Subject: [PATCH] Merged revisions 87567 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 (closes issue #11113) ........ r87567 | qwell | 2007-10-30 10:45:35 -0500 (Tue, 30 Oct 2007) | 4 lines Fix build of editline on Solaris. Issue 11113, patch by snuffy. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@87568 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/editline/np/vis.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main/editline/np/vis.c b/main/editline/np/vis.c index 83265f46ea..7d9117faae 100644 --- a/main/editline/np/vis.c +++ b/main/editline/np/vis.c @@ -54,7 +54,7 @@ __weak_alias(svis,_svis) __weak_alias(vis,_vis) #endif -#if !HAVE_VIS_H +#ifndef HAVE_VIS_H #include #include #include @@ -69,7 +69,6 @@ __weak_alias(vis,_vis) #ifdef SOLARIS #include -typedef unsigned int u_int32_t; #endif #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')